/home/aqcert/public_html/admin/tinymce/tests/plugins
NameSizeModeActions
filemanager/-0755rm
image/-0755rm
link/-0755rm
media/-0755rm
autolink.js36250644editdlrm
autosave.js24100644editdlrm
charmap.js17040644editdlrm
fullpage.js45890644editdlrm
image.js144030644editdlrm
importcss.js93920644editdlrm
jquery_initialization.js7940644editdlrm
jquery_plugin.js24680644editdlrm
legacyoutput.js25930644editdlrm
link.js42060644editdlrm
lists.js517630644editdlrm
media.js71360644editdlrm
noneditable.js13690644editdlrm
paste.js1113380644editdlrm
paste_images.js48990644editdlrm
paste_smart.js33510644editdlrm
searchreplace.js41480644editdlrm
spellchecker.js27000644editdlrm
table.js518340644editdlrm
textpattern.js26590644editdlrm
wordcount.js18780644editdlrm
Edit: /home/aqcert/public_html/admin/tinymce/tests/plugins/legacyoutput.js (2593B)
module("tinymce.plugins.Legacyoutput", { setupModule: function() { QUnit.stop(); tinymce.init({ selector: "textarea", add_unload_trigger: false, skin: false, plugins: 'legacyoutput', init_instance_callback: function(ed) { window.editor = ed; QUnit.start(); } }); } }); test("Font color", function() { editor.setContent('

text

'); Utils.setSelection('p', 0, 'p', 4); editor.execCommand('forecolor', false, '#FF0000'); equal(editor.getContent().toLowerCase(), '

text

'); }); test("Font size", function() { editor.setContent('

text

'); Utils.setSelection('p', 0, 'p', 4); editor.execCommand('fontsize', false, 7); equal(editor.getContent(), '

text

'); }); test("Font face", function() { editor.setContent('

text

'); Utils.setSelection('p', 0, 'p', 4); editor.execCommand('fontname', false, "times"); equal(editor.getContent(), '

text

'); }); test("Bold", function() { editor.setContent('

text

'); Utils.setSelection('p', 0, 'p', 4); editor.execCommand('bold'); equal(editor.getContent(), '

text

'); }); test("Italic", function() { editor.setContent('

text

'); Utils.setSelection('p', 0, 'p', 4); editor.execCommand('italic'); equal(editor.getContent(), '

text

'); }); test("Underline", function() { editor.setContent('

text

'); Utils.setSelection('p', 0, 'p', 4); editor.execCommand('underline'); equal(editor.getContent(), '

text

'); }); test("Strikethrough", function() { editor.setContent('

text

'); Utils.setSelection('p', 0, 'p', 4); editor.execCommand('strikethrough'); equal(editor.getContent(), '

text

'); }); test("Justifyleft", function() { editor.setContent('

text

'); Utils.setSelection('p', 0, 'p', 4); editor.execCommand('justifyleft'); equal(editor.getContent(), '

text

'); }); test("Justifycenter", function() { editor.setContent('

text

'); Utils.setSelection('p', 0, 'p', 4); editor.execCommand('justifycenter'); equal(editor.getContent(), '

text

'); }); test("Justifyright", function() { editor.setContent('

text

'); Utils.setSelection('p', 0, 'p', 4); editor.execCommand('justifyright'); equal(editor.getContent(), '

text

'); }); test("Justifyfull", function() { editor.setContent('

text

'); Utils.setSelection('p', 0, 'p', 4); editor.execCommand('justifyfull'); equal(editor.getContent(), '

text

'); });