Ticket #38489: fix-spelling-qunit.2.diff
File fix-spelling-qunit.2.diff, 2.2 KB (added by , 8 years ago) |
---|
-
tests/qunit/editor/plugins/image.js
346 346 347 347 }); 348 348 349 test('Advanced image dialog overrid en border style options on empty editor', function(){349 test('Advanced image dialog overridden border style options on empty editor', function(){ 350 350 editor.settings.image_advtab = true; 351 351 editor.settings.image_dimensions = false; 352 352 … … 376 376 377 377 }); 378 378 379 test('Advanced image dialog overrid en margin style options on empty editor', function(){379 test('Advanced image dialog overridden margin style options on empty editor', function(){ 380 380 editor.settings.image_advtab = true; 381 381 editor.settings.image_dimensions = false; 382 382 -
tests/qunit/editor/tinymce/Formatter_apply.js
151 151 rng.setEnd(editor.dom.select('p')[0].lastChild, 2); 152 152 editor.selection.setRng(rng); 153 153 editor.formatter.toggle('format'); 154 equal(getContent(), '<p><b>1234</b></p>', 'Extend format ing if start of selection is already formatted');154 equal(getContent(), '<p><b>1234</b></p>', 'Extend formatting if start of selection is already formatted'); 155 155 }); 156 156 157 157 test('Inline element on partially selected text', function() { -
tests/qunit/editor/tinymce/dom/DOMUtils.js
612 612 ok(DOM.isEmpty(DOM.get('test')), 'Non empty complex HTML with space'); 613 613 614 614 DOM.setHTML('test', '<div><span><b></b></span><b></b><em><a name="x"></a></em></div>'); 615 ok(!DOM.isEmpty(DOM.get('test')), 'Non empty complex HTML with a chor name');615 ok(!DOM.isEmpty(DOM.get('test')), 'Non empty complex HTML with anchor name'); 616 616 617 617 DOM.setHTML('test', '<img src="tinymce/ui/img/raster.gif">'); 618 618 ok(!DOM.isEmpty(DOM.get('test')), 'Non empty html with img element');