Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / editing / deleting / 5369009.html
1 <style>
2 #d1 span { float:right; }
3 </style>
4 <p>This tests for a hang on delete where a style rule would cause style spans in content moved after the delete to be displayed as blocks. You should see Hello<b>World</b> below.</p>
5 <div contenteditable="true">
6 <div id="d1">Hello</div>
7 <div id="d2" style="font-weight:bold">World</div>
8 </div>
9
10 <script>
11 d2 = document.getElementById("d2");
12 s = window.getSelection();
13 s.collapse(d2, 0);
14 document.execCommand("Delete");
15 </script>