2 <script src=
"../resources/testharness.js"></script>
3 <script src=
"../resources/testharnessreport.js"></script>
6 from { background-color: red; }
7 50% { left:
50px; background-color: green; }
9 to { background-color: red; }
13 animation: anim
2s -
1s paused;
19 <div id=
"target"></div>
22 assert_equals(getComputedStyle(target
).backgroundColor
, 'rgb(0, 128, 0)', 'background color');
23 assert_equals(getComputedStyle(target
).left
, '0px', 'left offset');
24 }, "Check that duplicate keyframe offsets are correctly merged");