Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
|
yosin_UTC9
2015/10/19 08:56:57
File name should represent what test doing instead
| |
| 2 <html><head> | |
| 2 <script src="../../resources/testharness.js"></script> | 3 <script src="../../resources/testharness.js"></script> |
| 3 <script src="../../resources/testharnessreport.js"></script> | 4 <script src="../../resources/testharnessreport.js"></script> |
| 4 a | 5 </head> |
| 5 <style> | 6 <body> |
| 6 * { | 7 <blockquote type="cite"><div>Three</div></blockquote> |
| 7 font-weight:lighter; | 8 <br> |
| 8 } | 9 "bar" |
| 9 </style> | |
| 10 a | |
| 11 <style> | |
| 12 * { | |
| 13 font-weight:900; | |
| 14 } | |
| 15 </style> | |
| 16 <div id="log"></div> | 10 <div id="log"></div> |
| 17 <script> | 11 <script> |
| 18 test(function() { | 12 test(function () { |
| 19 document.designMode = 'on'; | 13 document.designMode = 'on'; |
| 20 document.execCommand("selectAll"); | 14 document.execCommand("selectAll"); |
| 21 document.execCommand("insertOrderedList"); | 15 document.execCommand("InsertHTML", false, "<blockquote type='cite'>Line 2</b lockquote><img>"); |
| 22 }); | 16 }); |
| 23 </script> | 17 </script> |
| 18 </body> | |
| 19 </html> | |
| OLD | NEW |