Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / undo / 5738768.html
blobf972a4b9235de649a5b9339322a7feb01f53b988
1 <p>This tests for a crash on Undo. You should see an empty input field below.</p>
2 <input type="text" id="input">
4 <script>
5 if (window.testRunner)
6 window.testRunner.dumpAsText();
7 document.getElementById("input").focus();
8 document.execCommand("InsertText", false, "x");
9 document.execCommand("Undo");
10 </script>