Changeset 27387 for trunk/tests/qunit/editor/tinymce/EditorCommands.html
- Timestamp:
- 03/04/2014 01:56:57 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/qunit/editor/tinymce/EditorCommands.html
r27155 r27387 716 716 var t = this; 717 717 718 expect( 3);718 expect(4); 719 719 720 720 editor.setContent('<p><em>test</em> <strong>123</strong> <a href="123">123</a> 123</p>'); … … 732 732 editor.execCommand('RemoveFormat'); 733 733 equal(editor.getContent(), '<p><em>test</em><span id="x">test 123</span><em><a href="123">123</a> 123</em></p>'); 734 735 editor.setContent('<p><dfn>dfn tag </dfn> <code>code tag </code> <samp>samp tag</samp> <kbd> kbd tag</kbd> <var> var tag</var> <cite> cite tag</cite> <mark> mark tag</mark> <q> q tag</q></p>'); 736 editor.execCommand('SelectAll'); 737 editor.execCommand('RemoveFormat'); 738 equal(editor.getContent(), '<p>dfn tag code tag samp tag kbd tag var tag cite tag mark tag q tag</p>'); 734 739 }); 735 740
Note: See TracChangeset
for help on using the changeset viewer.