Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / css-keyframe-style-parentRule.html
blob5e7c286b6c9a79fdd2d9552fd9101909c281cf99
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <script src="../../resources/js-test.js"></script>
6 <style>
7 @-webkit-keyframes anim {
8 from {
9 color: green;
12 </style>
13 </head>
14 <body>
15 <script>
17 description("This test verifies that a keyframe rule's 'parentRule' points back to the keyframe rule.");
19 var rules = document.styleSheets[1].cssRules;
21 shouldBe("rules[0][0].parentRule", "rules[0]");
22 shouldBe("rules[0][0].style.parentRule", "rules[0][0]");
24 </script>
25 </body>
26 </html>