Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / editability / empty-document-justify-right.html
blobe19834f7a17492a867c57c5f25850705d0b0ab5e
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
5 if (window.testRunner)
6 testRunner.dumpAsText();
8 function runTest() {
9 document.designMode="on";
10 document.open();
11 window.getSelection().addRange(document.createRange());
12 document.execCommand("JustifyRight", false, null);
13 document.writeln('This test ensures WebKit does not crash when executing JustifyRight in an empty document.<br><br>PASS');
15 </script>
16 </head>
17 <body onload="runTest()"></body>
18 </html>