OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <script> | 3 <script> |
4 if (window.layoutTestController) | 4 if (window.layoutTestController) |
5 layoutTestController.dumpAsText(); | 5 layoutTestController.dumpAsText(); |
6 | 6 |
7 function handler() { | 7 function handler() { |
8 var element = event.srcElement; | 8 var element = event.srcElement; |
9 document.execCommand('Undo', false, false); | 9 document.execCommand('Undo', false, false); |
10 element.parentNode.removeChild(element); | 10 element.parentNode.removeChild(element); |
(...skipping 14 matching lines...) Expand all Loading... |
25 document.designMode = "on"; | 25 document.designMode = "on"; |
26 document.execCommand('JustifyRight', false, false); | 26 document.execCommand('JustifyRight', false, false); |
27 document.execCommand('InsertHorizontalRule', false, ''); | 27 document.execCommand('InsertHorizontalRule', false, ''); |
28 document.documentElement.innerHTML = "PASS. WebKit didn't crash."; | 28 document.documentElement.innerHTML = "PASS. WebKit didn't crash."; |
29 }; | 29 }; |
30 </script> | 30 </script> |
31 <ruby id="ruby"> | 31 <ruby id="ruby"> |
32 <a>A</a> | 32 <a>A</a> |
33 </ruby> | 33 </ruby> |
34 </html> | 34 </html> |
OLD | NEW |