| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script type="text/javascript" src="../../http/tests/inspector-protocol/inspecto
r-protocol-test.js"></script> | 3 <script type="text/javascript" src="../../http/tests/inspector-protocol/resource
s/inspector-protocol-test.js"></script> |
| 4 <style type="text/css"> | 4 <style type="text/css"> |
| 5 #node.anim { | 5 #node.anim { |
| 6 animation: anim 0 ease-in-out; | 6 animation: anim 0 ease-in-out; |
| 7 } | 7 } |
| 8 | 8 |
| 9 @keyframes anim { | 9 @keyframes anim { |
| 10 from { | 10 from { |
| 11 width: 100px; | 11 width: 100px; |
| 12 } | 12 } |
| 13 to { | 13 to { |
| (...skipping 26 matching lines...) Expand all Loading... |
| 40 InspectorTest.completeTest(); | 40 InspectorTest.completeTest(); |
| 41 } | 41 } |
| 42 } | 42 } |
| 43 | 43 |
| 44 </script> | 44 </script> |
| 45 </head> | 45 </head> |
| 46 <body onload="runTest()"> | 46 <body onload="runTest()"> |
| 47 <div id="node" style="background-color: red; width: 100px"></div> | 47 <div id="node" style="background-color: red; width: 100px"></div> |
| 48 </body> | 48 </body> |
| 49 </html> | 49 </html> |
| OLD | NEW |