4 @-webkit-keyframes fadeout {
5 from { background-color: black; }
6 to { background-color: white; }
10 background-color: papayawhip;
13 <script src=
"../../../http/tests/inspector/inspector-test.js"></script>
14 <script src=
"../../../http/tests/inspector/elements-test.js"></script>
18 InspectorTest
.runTestSuite([
19 function testInit(next
)
21 InspectorTest
.selectNodeAndWaitForStyles("inspected", next
);
24 function testDumpStyles(next
)
26 InspectorTest
.dumpSelectedElementStyles(true);
34 <body onload=
"runTest()">
36 Tests that source data is extracted correctly from stylesheets with @-webkit-keyframes rules.
39 <div id=
"inspected" style=
"background-color: white;">Content
</div>