Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / css-keyframe-unexpected-end.html
blob8cbe7657fe7eb3e5429ba76fe4982f292bca90d3
1 <html>
2 <head>
3 <style>
4 @-webkit-keyframes anim {
5 from { color: green; }
6 to { color: red; }
7 /* Missing closing brace */
8 </style>
9 <script>
10 if (window.testRunner)
11 testRunner.dumpAsText();
13 function load()
15 rule = document.styleSheets[0].cssRules[0];
16 if (!rule || !rule.cssRules || rule.cssRules.length !== 2)
17 return;
18 document.body.textContent = "PASS";
21 </script>
22 </head>
23 <body onload="load()">FAIL</body>
24 </html>