blob: 8cbe7657fe7eb3e5429ba76fe4982f292bca90d3 [file] [log] [blame]
<html>
<head>
<style>
@-webkit-keyframes anim {
from { color: green; }
to { color: red; }
/* Missing closing brace */
</style>
<script>
if (window.testRunner)
testRunner.dumpAsText();
function load()
{
rule = document.styleSheets[0].cssRules[0];
if (!rule || !rule.cssRules || rule.cssRules.length !== 2)
return;
document.body.textContent = "PASS";
}
</script>
</head>
<body onload="load()">FAIL</body>
</html>