Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector / elements / styles-2 / keyframes-rules.html
blob3348dfd8db0e2a89694b9cb581f7b7e4a22854e0
1 <html>
2 <head>
3 <style>
4 @-webkit-keyframes fadeout {
5 from { background-color: black; }
6 to { background-color: white; }
9 * {
10 background-color: papayawhip;
12 </style>
13 <script src="../../../http/tests/inspector/inspector-test.js"></script>
14 <script src="../../../http/tests/inspector/elements-test.js"></script>
15 <script>
16 function test()
18 InspectorTest.runTestSuite([
19 function testInit(next)
21 InspectorTest.selectNodeAndWaitForStyles("inspected", next);
24 function testDumpStyles(next)
26 InspectorTest.dumpSelectedElementStyles(true);
27 next();
29 ]);
31 </script>
32 </head>
34 <body onload="runTest()">
35 <p>
36 Tests that source data is extracted correctly from stylesheets with @-webkit-keyframes rules.
37 </p>
39 <div id="inspected" style="background-color: white;">Content</div>
40 </body>
41 </html>