0898014ebd
In 4.0.20 all tests were reworked. The 'testrunner' was removed and the PhantomJS Runner QUnit plugin was added making it possible to run the tests from cli. However it is still necessary to run the tests in all supported browsers to test the fixes for all browser quirks and normalization. Also all tests are loaded in one html file. See #27014 git-svn-id: https://develop.svn.wordpress.org/trunk@27679 602fd350-edb4-49c9-b593-d223f7449a82
23 lines
1.1 KiB
JavaScript
23 lines
1.1 KiB
JavaScript
module("tinymce.html.Serializer");
|
|
|
|
test('Basic serialization', function() {
|
|
var serializer = new tinymce.html.Serializer();
|
|
|
|
expect(6);
|
|
|
|
equal(serializer.serialize(new tinymce.html.DomParser().parse('text<text&')), 'text<text&');
|
|
equal(serializer.serialize(new tinymce.html.DomParser().parse('<B>text</B><IMG src="1.gif">')), '<strong>text</strong><img src="1.gif" alt="" />');
|
|
equal(serializer.serialize(new tinymce.html.DomParser().parse('<!-- comment -->')), '<!-- comment -->');
|
|
equal(serializer.serialize(new tinymce.html.DomParser().parse('<![CDATA[cdata]]>')), '<![CDATA[cdata]]>');
|
|
equal(serializer.serialize(new tinymce.html.DomParser().parse('<?xml attr="value" ?>')), '<?xml attr="value" ?>');
|
|
equal(serializer.serialize(new tinymce.html.DomParser().parse('<!DOCTYPE html>')), '<!DOCTYPE html>');
|
|
});
|
|
|
|
test('Sorting of attributes', function() {
|
|
var serializer = new tinymce.html.Serializer();
|
|
|
|
expect(1);
|
|
|
|
equal(serializer.serialize(new tinymce.html.DomParser().parse('<b class="class" id="id">x</b>')), '<strong id="id" class="class">x</strong>');
|
|
});
|