Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <style> | |
|
leviw_travelin_and_unemployed
2014/02/14 04:57:46
Let's clean this up a bit more with a doctype and
yoichio
2014/02/19 08:00:30
Done.
| |
| 2 marquee { | |
| 3 padding-bottom: 1px; | |
| 4 } | |
| 5 </style> | |
| 6 | |
|
leviw_travelin_and_unemployed
2014/02/14 04:57:46
And a body :)
yoichio
2014/02/19 08:00:30
Done.
| |
| 7 <marquee> | |
| 8 aa | |
|
leviw_travelin_and_unemployed
2014/02/14 04:57:46
I suspect you could simply put "Test passes if it
yoichio
2014/02/19 08:00:30
This test case executes "SelectAll" and "InsertHTM
| |
| 9 <table></table> | |
| 10 </marquee> | |
| 11 | |
| 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> | |
| OLD | NEW |