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">
12 border:
1px solid black;
19 background-color: green;
25 background-color: red;
28 #container.moved .hardware {
29 -webkit-animation: move
300ms linear;
33 -webkit-transform-style: preserve-
3d;
34 transform: translate3d(
10px,
0,
0);
37 @-webkit-keyframes move {
38 from { transform: translate3d(
10px,
0,
0); }
39 to { transform: translate3d(
300px,
0,
0); }
42 <script type=
"text/javascript" charset=
"utf-8">
46 if (window.testRunner)
47 window.setTimeout(function() { testRunner.notifyDone(); },
0);
52 if (window.testRunner)
53 testRunner.waitUntilDone();
55 document.getElementById('tester').addEventListener('webkitAnimationEnd', testEnded, false);
56 document.getElementById('container').className = 'moved';
59 window.addEventListener('load', startTest, false);
64 <p>At the end of the test the green box should obscure the red box.
</p>
66 <div class=
"indicator box"></div>
67 <div id=
"tester" class=
"hardware box"></div>