Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(601)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css/css-keyframe-parent.html

Issue 2521163002: CSS Animations: Reduce usage of webkit prefix in layout tests (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script language="javascript"> 3 <script language="javascript">
4 function runTest() 4 function runTest()
5 { 5 {
6 if (window.testRunner) 6 if (window.testRunner)
7 testRunner.dumpAsText(); 7 testRunner.dumpAsText();
8 8
9 rule = document.styleSheets[0].cssRules[0]; 9 rule = document.styleSheets[0].cssRules[0];
10 if (rule[0].parentRule == rule) 10 if (rule[0].parentRule == rule)
11 document.body.innerHTML = "SUCCESS"; 11 document.body.innerHTML = "SUCCESS";
12 } 12 }
13 </script> 13 </script>
14 <style type="text/css"> 14 <style type="text/css">
15 @-webkit-keyframes anim { 15 @keyframes anim {
16 from { 16 from {
17 color: green; 17 color: green;
18 } 18 }
19 } 19 }
20 </style> 20 </style>
21 </head> 21 </head>
22 <body onload="runTest()">FAILURE</body> 22 <body onload="runTest()">FAILURE</body>
23 </html> 23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698