OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <title>Crash on "createLink" execCommand with plaintext-only</title> | |
5 <script> | |
6 if (window.testRunner) | |
7 testRunner.dumpAsText(); | |
8 </script> | |
9 </head> | |
10 <body contentEditable> | |
11 <div contentEditable="plaintext-only">PASS if the browser did not crash.</di v> | |
12 <script> | |
13 document.execCommand("selectAll"); | |
14 document.execCommand("createLink", false, "."); | |
15 </script> | |
16 </body> | |
17 </html> | |
OLD | NEW |