Rubber-stamped by Brady Eidson.
[webbrowser.git] / LayoutTests / animations / animation-end-event-destroy-renderer.html
blob5cb41a93a693a34c1e3ce5cbc043295fc852602d
1 <html>
2 <head>
3 <title>Destroy and Hide Element in Animation End Event</title>
4 <style type="text/css" media="screen">
5 .box {
6 height: 100px;
7 width: 100px;
8 margin: 10px;
9 background-color: blue;
10 -webkit-animation-duration: 0.2s;
13 @-webkit-keyframes move {
14 from { -webkit-transform: translate(0px, 0px); }
15 to { -webkit-transform: translate(100px, 0px); }
17 </style>
18 <script type="text/javascript" charset="utf-8">
19 if (window.layoutTestController) {
20 layoutTestController.dumpAsText();
21 layoutTestController.waitUntilDone();
24 var numDone = 0;
25 function animationEnded()
27 ++numDone;
28 if (numDone == 2) {
29 if (window.GCController)
30 GCController.collect();
32 document.getElementById('results').innerHTML = 'Did not crash, so PASSED';
34 if (window.layoutTestController)
35 layoutTestController.notifyDone();
39 function startTest()
41 var box1 = document.getElementById('box1');
42 box1.addEventListener('webkitAnimationEnd', function() {
43 box1.parentNode.removeChild(box1);
44 animationEnded();
45 }, false);
46 box1.style.webkitAnimationName = 'move';
48 var box2 = document.getElementById('box2');
49 box2.addEventListener('webkitAnimationEnd', function() {
50 box2.style.display = 'none';
51 animationEnded();
52 }, false);
53 box2.style.webkitAnimationName = 'move';
56 window.addEventListener('load', startTest, false);
57 </script>
58 </head>
59 <body>
61 <p>Tests element removal and hiding within the webkitAnimationEnd event handler. Should not crash.</p>
63 <div id="container">
64 <div id="box1" class="box"></div>
65 <div id="box2" class="box"></div>
66 </div>
67 <div id="results"></div>
68 </body>
69 </html>