OLD | NEW |
---|---|
(Empty) | |
1 <html> | |
2 <body> | |
3 <table> | |
4 <td> | |
5 <a></a> | |
6 </td> | |
7 </table> | |
8 <script> | |
9 if (window.testRunner) | |
10 testRunner.dumpAsText(); | |
11 | |
12 document.designMode = "on"; | |
13 document.execCommand("SelectAll"); | |
14 document.execCommand("CreateLink", 0, 'foo'); | |
15 | |
16 document.body.innerHTML = "PASS. WebKit didn't crash."; | |
hayato
2014/03/10 04:59:08
Nit: Could you change 'WebKit' to 'Blink'? :)
| |
17 </script> | |
18 </body> | |
19 </html> | |
OLD | NEW |