Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / style / justify-left-crash.html
blob02ae756f5a4fc06d358474c25869431c93348c9d
1 <!DOCTYPE html>
2 <html hidden>
3 <head>
4 <style>
5 html, head, style {
6 display: block;
8 </style>
9 </head>
10 <script>
11 document.designMode = "on";
12 document.execCommand("selectAll");
13 document.execCommand("italic");
14 document.execCommand("justifyLeft");
15 document.documentElement.removeAttribute("hidden");
16 </script>
17 <body>
18 This test passes if it does not crash.
19 </body>
20 </html>