Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / indent-nested-blockquotes-crash.html
blob54b8986c184e0d55ac46ff73572370f777675251
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 * { display: -webkit-inline-box; }
6 .CLASS11 { float: right; }
7 </style>
8 <script>
9 if (window.testRunner)
10 testRunner.dumpAsText();
12 window.onload = function () {
13 document.designMode = 'on';
14 document.execCommand('SelectAll', false)
15 document.execCommand('Indent', false, false);
16 document.execCommand('Indent', false, false);
17 document.documentElement.innerHTML = 'PASS. Blink didn\'t crash.';
19 </script>
20 </head>
21 <body>aaa<div class="CLASS11"></div><div>bbb</div></body>
22 </html>