| 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 | 4 |
| 5 <div id='container'> | 5 <div id='container'> |
| 6 <div id='element'></div> | 6 <div id='element'></div> |
| 7 </div> | 7 </div> |
| 8 | 8 |
| 9 <script> | 9 <script> |
| 10 | 10 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 | 47 |
| 48 container.style.fontSize = '70px'; | 48 container.style.fontSize = '70px'; |
| 49 var player = element.animate(keyframes, 10); | 49 var player = element.animate(keyframes, 10); |
| 50 player.pause(); | 50 player.pause(); |
| 51 player.currentTime = 5; | 51 player.currentTime = 5; |
| 52 container.style.fontSize = '80px'; | 52 container.style.fontSize = '80px'; |
| 53 assert_equals(getComputedStyle(element).fontSize, '80px'); | 53 assert_equals(getComputedStyle(element).fontSize, '80px'); |
| 54 }, 'Font size responsive to inherited changes'); | 54 }, 'Font size responsive to inherited changes'); |
| 55 | 55 |
| 56 </script> | 56 </script> |
| OLD | NEW |