Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / insert-line-break-onload.html
blob1fe0469a9f8cb5bf81f2bf287df0d93c8d8cdbf7
1 <!DOCTYPE HTML>
2 <html>
3 <body onload="go()">
4 Test InsertLineBreak is called correctly without any exception.
5 <script>
6 function go() {
7 document.designMode="on";
8 document.write("</");
9 document.getSelection().addRange(document.createRange());
10 document.execCommand("InsertLineBreak");
12 var result = "PASS";
13 if (window.testRunner) {
14 document.write("<html>" + result + "<html>");
15 testRunner.dumpAsText();
16 } else
17 document.write("<html>" + result + "<html>");
19 </script>
20 </body>
21 </html>