Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html><head> | |
| 3 <script src="../../resources/testharness.js"></script> | |
| 4 <script src="../../resources/testharnessreport.js"></script> | |
| 5 </head> | |
| 6 <body> | |
| 7 <blockquote type="cite"><div>Three</div></blockquote> | |
| 8 <br> | |
| 9 "bar" | |
| 10 <div id="log"></div> | |
| 11 <script> | |
| 12 test(function () { | |
| 13 document.designMode = "on"; | |
| 14 document.execCommand("selectAll"); | |
| 15 document.execCommand("InsertHTML", false, "<blockquote type='cite'>Line 2</b lockquote><img>"); | |
| 16 }); | |
| 17 </script> | |
| 18 </body> | |
| 19 </html> | |
| OLD | NEW |