[WK2] Small Caps font variant issue for Italic fonts
[framework/web/webkit-efl.git] / LayoutTests / editing / style / 5228141.html
1 <p>This tests for a bug where style would not be applied to a selection that ended just after an image.</p>
2 <div id="div" contenteditable="true"><br><div>This text should be bold.<img src="../resources/abe.png"></div></div>
3
4 <script>
5 div = document.getElementById("div");
6 div.focus();
7 document.execCommand("SelectAll");
8 document.execCommand("Bold");
9 </script>