| OLD | NEW |
| 1 description( | 1 description( |
| 2 'This test checks that the CSSRule RuleTypes for keyframe-related rules are what
we expect.' | 2 'This test checks that the CSSRule RuleTypes for keyframe-related rules are what
we expect.' |
| 3 ); | 3 ); |
| 4 | 4 |
| 5 var ruleType = window.CSSRule.WEBKIT_KEYFRAMES_RULE; | 5 var ruleType = window.CSSRule.KEYFRAMES_RULE; |
| 6 shouldBe("ruleType", "7"); | |
| 7 ruleType = window.CSSRule.WEBKIT_KEYFRAME_RULE; | |
| 8 shouldBe("ruleType", "8"); | |
| 9 ruleType = window.CSSRule.KEYFRAMES_RULE; | |
| 10 shouldBe("ruleType", "7"); | 6 shouldBe("ruleType", "7"); |
| 11 ruleType = window.CSSRule.KEYFRAME_RULE; | 7 ruleType = window.CSSRule.KEYFRAME_RULE; |
| 12 shouldBe("ruleType", "8"); | 8 shouldBe("ruleType", "8"); |
| 13 | 9 |
| 14 debug('If we got to this point then we did not crash and the test has passed.'); | 10 debug('If we got to this point then we did not crash and the test has passed.'); |
| 15 var successfullyParsed = true; | 11 var successfullyParsed = true; |
| OLD | NEW |