Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / indent-table-cell-crash.html
blob573bf049d27f0bfa2dea1d331e89f663654f8bc1
1 <!DOCTYPE html>
2 <head>
3 <style>
4 hr { display: table-cell; }
5 </style>
6 <script>
7 if (window.testRunner)
8 testRunner.dumpAsText();
10 onload = function() {
11 document.designMode = 'on';
12 document.execCommand('SelectAll');
13 document.execCommand('Indent');
14 document.body.textContent = 'PASS if Blink doesn\'t crash.';
16 </script>
17 </head>
18 <body>
19 before<hr><hr>after
20 </body>
21 </html>