Changeset 4842
- Timestamp:
- 12/29/09 18:59:35 (3 years ago)
- File:
-
- 1 edited
-
CKEditor/tests/tt/4445/1.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/tests/tt/4445/1.html
r4354 r4842 30 30 tc.resume( function() 31 31 { 32 assert.areEqual( editor, thisEditor, 'editor instance doesn\'t match.' ); 33 assert.isTrue( editor.checkDirty(), "editor should be dirty." ); 34 assert.isTrue( editor.focusManager.hasFocus, "editor should have focus." ); 35 // There's more than nothing in the editor now( test the fix body logic has triggered ). 36 assert.isTrue( editor.getSnapshot().search( /<p>/i ) != -1, "editor should has a paragraph established." ); 32 editor.focus(); 33 tc.wait( function(){ 34 assert.areEqual( editor, thisEditor, 'editor instance doesn\'t match.' ); 35 assert.isTrue( editor.checkDirty(), "editor should be dirty." ); 36 assert.isTrue( editor.focusManager.hasFocus, "editor should have focus." ); 37 // There's more than nothing in the editor now( test the fix body logic has triggered ). 38 assert.isTrue( editor.getSnapshot().search( /<p>/i ) != -1, "editor should has a paragraph established." ); 39 }, 1000 ); 37 40 } ); 38 41 } ); 39 editor.focus();40 42 tc.wait( function() 41 43 {
Note: See TracChangeset
for help on using the changeset viewer.
