Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html hidden> | |
| 3 <head> | |
| 4 <style> | |
| 5 html, head, style { | |
| 6 display: block; | |
| 7 } | |
| 8 </style> | |
| 9 </head> | |
| 10 <script> | |
| 11 document.designMode = "on"; | |
| 12 document.execCommand("selectAll"); | |
| 13 document.execCommand("italic"); | |
| 14 document.execCommand("justifyLeft"); | |
| 15 document.documentElement.removeAttribute("hidden"); | |
| 16 </script> | |
| 17 <body> | |
| 18 This test passes if it does not crash. | |
| 19 </body> | |
| 20 </html> | |
| OLD | NEW |