[WK2] Small Caps font variant issue for Italic fonts
[framework/web/webkit-efl.git] / LayoutTests / editing / style / fix-range-from-root-editable-crash.html
1 <html>
2 <head>
3 <script>
4
5 if (window.testRunner) {
6     testRunner.dumpAsText();
7     testRunner.waitUntilDone();
8 }
9
10 function go() {
11     document.designMode = "on";
12     document.execCommand("SelectAll",         false, null);
13     document.execCommand("strikethrough",     false, null);
14     document.body.innerHTML = 'This tests ApplyStyleCommand::fixRangeAndApplyInlineStyle does not crash when startNode is body.<br>PASS';
15     testRunner.notifyDone();
16 }
17 </script>
18 </head>
19 <body onload="go()"><div><img></div></body>
20 </html>