1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2 "http://www.w3.org/TR/html4/loose.dtd">
6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
17 background-color: red;
18 -webkit-animation-name: anim;
19 -webkit-animation-duration: 5s;
20 -webkit-animation-timing-function: linear;
23 @-webkit-keyframes anim {
31 <script type="text/javascript" charset="utf-8">
32 function startTest() {
33 if (window.layoutTestController) {
34 if (!layoutTestController.pauseAnimationAtTimeOnElementWithId("anim", 3, "box"))
35 throw("Animation is not running");
40 <body onload="startTest()">
41 <h1>Test for DRT pauseAnimationAtTimeOnElementWithId() API on animations with multiple keyframes</h1>