Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <html><head> | |
|
yosin_UTC9
2015/10/15 05:57:18
nit: Please remove a space before <html>.
nit: Ple
| |
| 2 <script src="../../resources/testharness.js"></script> | |
| 3 <script src="../../resources/testharnessreport.js"></script> | |
| 4 <script> | |
| 5 function fuzz() { | |
| 6 document.designMode = 'on'; | |
| 7 document.execCommand("selectAll"); | |
| 8 document.execCommand("InsertHTML", false, "<blockquote type='cite'>Line 2</b lockquote><img>"); | |
| 9 } | |
| 10 | |
| 11 test(function () { | |
| 12 document.addEventListener('DOMContentLoaded', fuzz); | |
|
yosin_UTC9
2015/10/15 05:57:18
Do we really need to use "DOMContentLoaded" event?
| |
| 13 }); | |
| 14 </script> | |
| 15 </head> | |
| 16 <body> | |
| 17 <blockquote type="cite"><div>Three</div></blockquote> | |
| 18 <br> | |
| 19 "bar" | |
| 20 <div id="log"></div> | |
| 21 </body> | |
| 22 </html> | |
| OLD | NEW |