Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / editing / execCommand / indent-right-after-table.html
1 <p>This tests crash on indenting at immediately right to a table.</p>
2 <div id="test" contenteditable="true"><table border=1><tbody><tr><td>hello</td></tr></tbody></table></div>
3
4 <script type="text/javascript">
5
6 if (window.testRunner)
7     testRunner.dumpAsText();
8
9 var e = document.getElementById("test");
10 var s = window.getSelection();
11 s.collapse(e, 1);
12 document.execCommand("Indent", false, null);
13
14 </script>