| OLD | NEW |
| 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 Loading... |
| 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> |
| OLD | NEW |