Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / editing / inserting / 5803706-2.html
1 <div id="description">This tests to make sure that hitting return inside (but not at the end of) a header element clones it. Below there should be two identical h2 elements.</div>
2 <div id="edit" contentEditable="true"><h2 id="h2">foo</h2></div>
3
4 <script>
5 if (window.testRunner)
6     window.testRunner.dumpAsText();
7 h2 = document.getElementById("h2");
8 text = h2.firstChild;
9 window.getSelection().collapse(text, text.length - 1);
10 document.execCommand("InsertParagraph");
11 if (window.testRunner)
12     document.body.innerText = document.getElementById("description").innerText + "\n\n" + document.getElementById("edit").innerHTML;
13 </script>