upload tizen1.0 source
[framework/web/webkit-efl.git] / LayoutTests / fast / css / css-keyframe-parent.html
1 <html>
2 <head>
3     <script language="javascript">
4     function runTest()
5     {
6         if (window.layoutTestController)
7             layoutTestController.dumpAsText();
8
9         rule = document.styleSheets[0].cssRules[0];
10         if (rule[0].parentRule == rule)
11             document.body.innerHTML = "SUCCESS";
12     }
13     </script>
14     <style type="text/css">
15     @-webkit-keyframes anim {
16         from {
17             color: green;
18         }
19     }
20     </style>
21 </head>
22 <body onload="runTest()">FAILURE</body>
23 </html>