blob: 11515c152e4d2f2e1662f49dc67af37ddcf8affb [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<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>