2 <script src=
"../resources/testharness.js"></script>
3 <script src=
"../resources/testharnessreport.js"></script>
6 <div id='element'
></div>
11 var container
= document
.getElementById('container');
12 var element
= document
.getElementById('element');
16 {fontSize
: 'inherit'},
20 container
.style
.fontSize
= '10px';
21 var player
= element
.animate(keyframes
, 10);
23 player
.currentTime
= 5;
24 container
.style
.fontSize
= '30px';
25 assert_equals(getComputedStyle(element
).fontSize
, '25px');
26 }, 'Font size responsive to inherited changes at start');
34 container
.style
.fontSize
= '40px';
35 var player
= element
.animate(keyframes
, 10);
37 player
.currentTime
= 5;
38 container
.style
.fontSize
= '60px';
39 assert_equals(getComputedStyle(element
).fontSize
, '55px');
40 }, 'Font size responsive to inherited changes at end');
44 {fontSize
: 'inherit'},
48 container
.style
.fontSize
= '70px';
49 var player
= element
.animate(keyframes
, 10);
51 player
.currentTime
= 5;
52 container
.style
.fontSize
= '80px';
53 assert_equals(getComputedStyle(element
).fontSize
, '80px');
54 }, 'Font size responsive to inherited changes');