Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / justy-center-with-uneditable-crash.html
blob85d20eb2080b889655f1e3900febf39493daf545
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
5 if (window.testRunner)
6 testRunner.dumpAsText();
8 onload = function() {
9 document.execCommand('SelectAll');
10 document.execCommand('JustifyCenter');
11 document.body.textContent = 'PASS if Blink doesn\'t crash.';
13 </script>
14 </head>
15 <body contenteditable="true">
16 <kbd>foo</kbd>
17 <sup>bar<abbr contenteditable="false">baz</abbr></sup>
18 </body>
19 </html>