| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <style> | 3 <style> |
| 4 @-webkit-keyframes fadeout { | 4 @keyframes fadeout { |
| 5 from { background-color: black; } | 5 from { background-color: black; } |
| 6 to { background-color: white; } | 6 to { background-color: white; } |
| 7 } | 7 } |
| 8 | 8 |
| 9 * { | 9 * { |
| 10 background-color: papayawhip; | 10 background-color: papayawhip; |
| 11 } | 11 } |
| 12 </style> | 12 </style> |
| 13 <script src="../../../http/tests/inspector/inspector-test.js"></script> | 13 <script src="../../../http/tests/inspector/inspector-test.js"></script> |
| 14 <script src="../../../http/tests/inspector/elements-test.js"></script> | 14 <script src="../../../http/tests/inspector/elements-test.js"></script> |
| (...skipping 11 matching lines...) Expand all Loading... |
| 26 InspectorTest.dumpSelectedElementStyles(true); | 26 InspectorTest.dumpSelectedElementStyles(true); |
| 27 next(); | 27 next(); |
| 28 } | 28 } |
| 29 ]); | 29 ]); |
| 30 } | 30 } |
| 31 </script> | 31 </script> |
| 32 </head> | 32 </head> |
| 33 | 33 |
| 34 <body onload="runTest()"> | 34 <body onload="runTest()"> |
| 35 <p> | 35 <p> |
| 36 Tests that source data is extracted correctly from stylesheets with @-webkit-key
frames rules. | 36 Tests that source data is extracted correctly from stylesheets with @keyframes r
ules. |
| 37 </p> | 37 </p> |
| 38 | 38 |
| 39 <div id="inspected" style="background-color: white;">Content</div> | 39 <div id="inspected" style="background-color: white;">Content</div> |
| 40 </body> | 40 </body> |
| 41 </html> | 41 </html> |
| OLD | NEW |