OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <head> |
| 4 <meta charset="utf-8"> |
| 5 <style> |
| 6 .box { |
| 7 position: relative; |
| 8 left: 0; |
| 9 height: 100px; |
| 10 width: 100px; |
| 11 margin: 10px; |
| 12 background-color: blue; |
| 13 -webkit-transition-property: width; |
| 14 -webkit-transition-duration: 0.5s; |
| 15 } |
| 16 </style> |
| 17 <script src="transition-end-event-helpers.js"></script> |
| 18 <script src="../fast/js/resources/js-test-pre.js"></script> |
| 19 <script type="text/javascript"> |
| 20 function runAnimation() { |
| 21 var box = document.getElementById('box1'); |
| 22 box.style.width = '200px'; |
| 23 } |
| 24 </script> |
| 25 </head> |
| 26 <body onLoad="runAnimation()"> |
| 27 <script type="text/javascript"> |
| 28 description("Test to make sure that if prefixed transition events are modifi
ed we correctly modify unprefixed events."); |
| 29 |
| 30 if (window.testRunner) |
| 31 testRunner.waitUntilDone(); |
| 32 |
| 33 var testContainer = document.createElement("div"); |
| 34 document.body.appendChild(testContainer); |
| 35 |
| 36 testContainer.innerHTML = '<div id="box1" class="box"></div>'; |
| 37 var box = document.getElementById('box1'); |
| 38 |
| 39 var transitionEventBox; |
| 40 |
| 41 function transitionEndEvent(e) |
| 42 { |
| 43 e.stopPropagation(); |
| 44 transitionEventBox = e; |
| 45 shouldBe("transitionEventBox.currentTarget", "transitionEventBox.target"
); |
| 46 if (window.testRunner) |
| 47 testRunner.notifyDone(); |
| 48 document.body.removeChild(testContainer); |
| 49 } |
| 50 |
| 51 testContainer.addEventListener('webkitTransitionEnd', transitionEndEvent, fa
lse); |
| 52 box.addEventListener('webkitTransitionEnd', transitionEndEvent, false); |
| 53 </script> |
| 54 <script src="../fast/js/resources/js-test-post.js"></script> |
| 55 </body> |
| 56 </html> |
OLD | NEW |