[WK2] Small Caps font variant issue for Italic fonts
[framework/web/webkit-efl.git] / LayoutTests / editing / style / 5046875-2.html
1 <p>This tests for a bug where left justifying a paragraph amongst several that are centered would left justify all of them.  Only the second paragraph should be left justified. </p>
2 <div id="div" contenteditable="true" style="text-align:center;">foo<br>bar<div>baz</div></div>
3
4 <script>
5 var div = document.getElementById("div");
6 var sel = window.getSelection();
7
8 sel.setPosition(div, 0);
9 sel.modify("move", "forward", "paragraph");
10 sel.modify("extend", "forward", "word");
11
12 document.execCommand("JustifyLeft");
13 </script>