| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 A | 3 A |
| 4 <style> | 4 <style> |
| 5 @-webkit-keyframes anim1 { | 5 @-webkit-keyframes anim1 { |
| 6 0% { | 6 0% { |
| 7 opacity: 0.5772; border-image: 26829%; | 7 opacity: 0.5772; border-image: 26829%; |
| 8 } | 8 } |
| 9 100% { | 9 100% { |
| 10 opacity: 0.3167; | 10 opacity: 0.3167; |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 document.execCommand("SelectAll", false, null) | 32 document.execCommand("SelectAll", false, null) |
| 33 document.execCommand("InsertText", false, "PASS. WebKit didn't crash.") | 33 document.execCommand("InsertText", false, "PASS. WebKit didn't crash.") |
| 34 for (i = 0; i != 49; i++) | 34 for (i = 0; i != 49; i++) |
| 35 window.getSelection().modify("move", "forward", "character"); | 35 window.getSelection().modify("move", "forward", "character"); |
| 36 | 36 |
| 37 document.execCommand("Italic", false, null); | 37 document.execCommand("Italic", false, null); |
| 38 } | 38 } |
| 39 document.addEventListener("DOMContentLoaded", crash, false); | 39 document.addEventListener("DOMContentLoaded", crash, false); |
| 40 </script> | 40 </script> |
| 41 </html> | 41 </html> |
| OLD | NEW |