blob: 1af407ba0018e772169b4555b9f0f2ef838c81c6 [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"><!-- webkit-test-runner [ experimental:WebAnimationsCSSIntegrationEnabled=false ] -->
<html>
<head>
<script src="../../resources/js-test-pre.js"></script>
</head>
<body>
<p id="description"></p>
<div id="console"></div>
<script>
description(
'This test checks that the CSSRule RuleTypes for keyframe-related rules are what we expect.'
);
var ruleType = window.CSSRule.WEBKIT_KEYFRAMES_RULE;
shouldBe("ruleType", "7");
ruleType = window.CSSRule.WEBKIT_KEYFRAME_RULE;
shouldBe("ruleType", "8");
debug('If we got to this point then we did not crash and the test has passed.');
var successfullyParsed = true;
</script>
<script src="../../resources/js-test-post.js"></script>
</body>
</html>