Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / selectAll-including-marquee-crash.html
blob69b1c2698cf0a279e4fa38de0f33b23d0b3dcb02
1 <!DOCTYPE html>
2 <style>
3 marquee {
4 padding-bottom: 1px;
6 </style>
7 <body>
8 <marquee>
9 aa
10 <table></table>
11 </marquee>
12 <script>
13 if (window.testRunner)
14 testRunner.dumpAsText();
15 document.designMode = "on";
16 document.execCommand("SelectAll");
17 document.execCommand("InsertHTML", false);
18 document.documentElement.innerHTML = '<title>a</title>This test passes if it does not crash.';
19 </script>
20 </body>