chromium/third_party/blink/web_tests/fast/css/css-keyframe-unexpected-end.html

<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>