OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <style> | |
3 marquee { | |
4 padding-bottom: 1px; | |
5 } | |
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 i f it does not crash.'; | |
19 </script> | |
20 </body> | |
OLD | NEW |