Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / editing / inserting / 5549929-3.html
1 <p>This tests inserting a line break at the end of a tab span.  Below you should see 'foo' followed by an empty paragraph, with the caret in it.</p>
2 <div id="div" contenteditable="true">foo<span class="Apple-tab-span" style="white-space:pre">   </span></div>
3     
4 <script>
5 div = document.getElementById("div");
6 sel = window.getSelection();
7 sel.collapse(div, div.childNodes.length);
8 document.execCommand("InsertLineBreak");
9 </script>