[WK2] Small Caps font variant issue for Italic fonts
[framework/web/webkit-efl.git] / LayoutTests / editing / editability / empty-document-justify-right.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
5 if (window.testRunner)
6     testRunner.dumpAsText();
7
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');
14 }
15 </script>
16 </head>
17 <body onload="runTest()"></body>
18 </html>