| <style> | |
| head, script, div { | |
| display: table; | |
| } | |
| </style> | |
| <script> | |
| onload = () => { | |
| if (window.testRunner) | |
| testRunner.dumpAsText(); | |
| console.log("This test passes if it does not crash.") | |
| document.execCommand('SelectAll'); | |
| document.execCommand('Copy'); | |
| document.execCommand('SelectAll'); | |
| document.designMode = 'on'; | |
| document.execCommand('PasteAndMatchStyle'); | |
| }; | |
| </script> |