| <html> | |
| <head> | |
| <script language="javascript"> | |
| function runTest() | |
| { | |
| if (window.testRunner) | |
| testRunner.dumpAsText(); | |
| rule = document.styleSheets[0].cssRules[0]; | |
| if (rule[0].parentRule == rule) | |
| document.body.innerHTML = "SUCCESS"; | |
| } | |
| </script> | |
| <style type="text/css"> | |
| @keyframes anim { | |
| from { | |
| color: green; | |
| } | |
| } | |
| </style> | |
| </head> | |
| <body onload="runTest()">FAILURE</body> | |
| </html> |