Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / 35791.html
blobc831ef0ab573f72b6b2825548d88ebc332ba7931
1 <BODY></BODY>
2 <SCRIPT>
3 // Test for https://bugs.webkit.org/show_bug.cgi?id=35791; It's OK if it doesn't crash.
4 document.designMode = "on";
5 document.execCommand("selectall");
6 document.execCommand("InsertLineBreak")
7 document.execCommand("InsertLineBreak");
8 document.execCommand("InsertText", false, "hello");
9 document.execCommand("SelectAll");
10 document.execCommand("createlink", false, "http://webkit.org/");
11 document.execCommand("justifycenter", false);
12 document.designMode = "off";
14 if (window.testRunner)
15 window.testRunner.dumpAsText();
16 </SCRIPT>