Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / indent-no-visible-contents-crash.html
blob042dfe48ec4d40c3337ec2dacbcf0994e5507919
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <div contenteditable="true" id="target"><span></span></div>
5 </body>
6 <script>
7 if (window.testRunner)
8 testRunner.dumpAsText();
9 getSelection().collapse(document.getElementById('target'), 0);
10 document.execCommand('Indent');
11 document.body.textContent = 'PASS if Blink doesn\'t crash.';
12 </script>
13 </html>