Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / editing / execCommand / indent-with-uneditable-crash.html
index a869c12..40e22d0 100644 (file)
@@ -1,7 +1,7 @@
 <div contenteditable=true><span contenteditable=false></span><b></b>ABC<span id="sample"></span></div>
 <script>
 var sample = document.getElementById('sample');
-window.getSelection().collapse(sample, 1);
+window.getSelection().collapse(sample, sample.childNodes.length);
 document.execCommand("Indent");
 document.body.textContent = 'PASS; NOT CRASHED';
 if (window.testRunner)