a869c127f0421cf3ed81b904cb838d00c2cbb53b
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / editing / execCommand / indent-with-uneditable-crash.html
1 <div contenteditable=true><span contenteditable=false></span><b></b>ABC<span id="sample"></span></div>
2 <script>
3 var sample = document.getElementById('sample');
4 window.getSelection().collapse(sample, 1);
5 document.execCommand("Indent");
6 document.body.textContent = 'PASS; NOT CRASHED';
7 if (window.testRunner)
8     testRunner.dumpAsText();
9 </script>