PHP Classes

File: vendors/gentelella/vendors/select2/tests/utils/escapeMarkup-tests.js

Recommend this page to a friend!
  Classes of Jorge Castro   Gentelella BladeOne   vendors/gentelella/vendors/select2/tests/utils/escapeMarkup-tests.js   Download  
File: vendors/gentelella/vendors/select2/tests/utils/escapeMarkup-tests.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Gentelella BladeOne
Render templates using Bootstrap for presentation
Author: By
Last change:
Date: 3 years ago
Size: 954 bytes
 

Contents

Class file image Download
module('Utils - escapeMarkup'); var Utils = require('select2/utils'); test('text passes through', function (assert) { var text = 'testing this'; var escaped = Utils.escapeMarkup(text); assert.equal(text, escaped); }); test('html tags are escaped', function (assert) { var text = '<script>alert("bad");</script>'; var escaped = Utils.escapeMarkup(text); assert.notEqual(text, escaped); assert.equal(escaped.indexOf('<script>'), -1); }); test('quotes are killed as well', function (assert) { var text = 'testin\' these "quotes"'; var escaped = Utils.escapeMarkup(text); assert.notEqual(text, escaped); assert.equal(escaped.indexOf('\''), -1); assert.equal(escaped.indexOf('"'), -1); }); test('DocumentFragment options pass through', function (assert) { var frag = document.createDocumentFragment(); frag.innerHTML = '<strong>test</strong>'; var escaped = Utils.escapeMarkup(frag); assert.equal(frag, escaped); });