blob: 5a1c68099ff25b72b67ca6d6a352d350a59c6c33 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
@keyframes test1 {
from { left: 10px; }
to { left: 20px; }
}
</style>
</head>
<body>
<script src="../resources/js-test-pre.js"></script>
<script>
description("Tests that the parameters are mandatory in CSSKeyframesRule API.");
var keyframes = document.styleSheets.item(0).cssRules.item(0);
shouldBe("keyframes.__proto__", "CSSKeyframesRule.prototype");
shouldBeEqualToString("keyframes.name", "test1");
shouldNotThrow("keyframes.name = null");
shouldBeEqualToString("keyframes.name", "null");
</script>
<script src="../resources/js-test-post.js"></script>
</body>
</html>