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

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

Issue 6711030: Merge 80144 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/648/
Patch Set: Created 9 years, 9 months 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
« no previous file with comments | « no previous file | LayoutTests/fast/css/css-keyframe-parent-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.layoutTestController) 6 if (window.layoutTestController)
7 layoutTestController.dumpAsText(); 7 layoutTestController.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 @-webkit-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
« no previous file with comments | « no previous file | LayoutTests/fast/css/css-keyframe-parent-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698