2 <script src=
"../resources/testharness.js"></script>
3 <script src=
"../resources/testharnessreport.js"></script>
4 <div id=
"target">Test target
</div>
6 var target
= document
.getElementById('target');
7 var test1
= async_test('Timing function should apply even when keyframes are not specified');
8 target
.addEventListener('webkitAnimationStart', function() {
9 test1
.step(function() {
10 assert_equals(getComputedStyle(target
).left
, '1000px');
18 -webkit-animation: anim
1s -
0.25s step-start paused;
21 @-webkit-keyframes anim {