upload tizen1.0 source
[framework/web/webkit-efl.git] / LayoutTests / editing / execCommand / 5604313.html
1 <div id="description">This tests for a bug where FormatBlock in a p element would leave one letter with the wrong style.</div>
2 <div id="edit" contentEditable="true"><p>This should be in a p element.</p><p id="p">This should be in an H2.</p></div>
3
4 <script>
5 if (window.layoutTestController)
6     window.layoutTestController.dumpAsText();
7     
8 p = document.getElementById("p");
9 s = window.getSelection();
10 s.setPosition(p, 0);
11
12 document.execCommand("FormatBlock", false, "h2");
13 if (window.layoutTestController)
14     document.body.innerText = document.getElementById("description").innerText + "\n\n" + document.getElementById("edit").innerHTML;
15 </script>