[WK2] Small Caps font variant issue for Italic fonts
[framework/web/webkit-efl.git] / LayoutTests / editing / style / designmode.html
1 <script>
2 if (window.testRunner)
3      testRunner.dumpEditingCallbacks();
4 </script>
5 <p>This tests to make sure that rich editing commands like Bold can be performed on text in a document in design mode.</p>
6 <div id="test">This text should be bold.</div>
7
8 <script>
9 document.designMode = "on";
10 var s = window.getSelection();
11 var e = document.getElementById("test");
12 s.setBaseAndExtent(e, 0, e, e.childNodes.length);
13 document.execCommand("Bold");
14 </script>