| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <title>Pause and resume animation should not crash</title> | 3 <title>Pause and resume animation should not crash</title> |
| 4 <style type="text/css" media="screen"> | 4 <style type="text/css" media="screen"> |
| 5 .box { | 5 .box { |
| 6 height: 100px; | 6 height: 100px; |
| 7 width: 100px; | 7 width: 100px; |
| 8 margin: 10px; | 8 margin: 10px; |
| 9 background-color: blue; | 9 background-color: blue; |
| 10 animation-duration: 2s; | 10 animation-duration: 2s; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 <body> | 50 <body> |
| 51 | 51 |
| 52 <p>Tests pause and resume animation. Should not crash. (https://bugs.webkit.org/
show_bug.cgi?id=67510)</p> | 52 <p>Tests pause and resume animation. Should not crash. (https://bugs.webkit.org/
show_bug.cgi?id=67510)</p> |
| 53 | 53 |
| 54 <div id="container"> | 54 <div id="container"> |
| 55 <div id="box1" class="box"></div> | 55 <div id="box1" class="box"></div> |
| 56 </div> | 56 </div> |
| 57 <div id="results"></div> | 57 <div id="results"></div> |
| 58 </body> | 58 </body> |
| 59 </html> | 59 </html> |
| OLD | NEW |