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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/animations-responsive-to-color-change.html

Issue 2093423002: Move web-animations-api tests not being upstreamed (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Undo move of reject-hyphen.html Created 4 years, 5 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <script src="../resources/testharness.js"></script> 2 <script src="../resources/testharness.js"></script>
3 <script src="../resources/testharnessreport.js"></script> 3 <script src="../resources/testharnessreport.js"></script>
4 <style> 4 <style>
5 a { visibility: hidden; } 5 a { visibility: hidden; }
6 </style> 6 </style>
7 7
8 <div id='container'> 8 <div id='container'>
9 <div id='child'></div> 9 <div id='child'></div>
10 </div> 10 </div>
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 var player1 = unvisitedChild.animate(keyframes, 10); 228 var player1 = unvisitedChild.animate(keyframes, 10);
229 var player2 = visitedChild.animate(keyframes, 10); 229 var player2 = visitedChild.animate(keyframes, 10);
230 player1.pause(); 230 player1.pause();
231 player2.pause(); 231 player2.pause();
232 player1.currentTime = 5; 232 player1.currentTime = 5;
233 player2.currentTime = 5; 233 player2.currentTime = 5;
234 assert_equals(getComputedStyle(unvisitedChild).color, getComputedStyle(visit edChild).color); 234 assert_equals(getComputedStyle(unvisitedChild).color, getComputedStyle(visit edChild).color);
235 }, 'Color animations do not expose parent visited status'); 235 }, 'Color animations do not expose parent visited status');
236 236
237 </script> 237 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698