Make WordPress Core


Ignore:
Timestamp:
03/04/2014 01:56:57 AM (12 years ago)
Author:
azaozz
Message:

TinyMCE: update to 4.0.18, see #24067

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/qunit/editor/tinymce/UndoManager.html

    r27155 r27387  
    160160    setSelection('p', 4, 'p', 9);
    161161    type('\b');
    162     window.focus();
    163     editor.dom.fire(editor.getBody(), 'focusout');
     162
     163    // Move focus to an input element
     164    var input = document.createElement('input');
     165    document.body.appendChild(input);
     166    input.focus();
     167    input.parentNode.removeChild(input);
     168
    164169    editor.execCommand('FormatBlock', false, 'h1');
    165170    editor.undoManager.undo();
Note: See TracChangeset for help on using the changeset viewer.