Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / editing-command-while-executing-typing-command-crash.html
blobb709acdbd9a1294278c41689c19b05c30d5aa00a
1 <script>
2 window.onload = function() {
3 if (window.testRunner)
4 testRunner.dumpAsText();
6 document.execCommand("selectall", false);
7 document.designMode="on";
8 document.execCommand("insertparagraph", false);
9 document.execCommand("InsertText", false);
11 document.firstChild.appendChild(document.createElement('body'));
12 document.body.innerText = "This tests executing an editing command while executing a typing command.\nPASS";
15 document.addEventListener("DOMNodeRemovedFromDocument",
16 function() { document.execCommand("JustifyNone", false); },true);
18 </script>