Index: third_party/WebKit/LayoutTests/animations/animation-start-event-destroy-renderer.html |
diff --git a/third_party/WebKit/LayoutTests/animations/animation-start-event-destroy-renderer.html b/third_party/WebKit/LayoutTests/animations/animation-start-event-destroy-renderer.html |
deleted file mode 100644 |
index b914d32d0c4cbd3fb7efe6587b9ac0e3a6474d1b..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/animations/animation-start-event-destroy-renderer.html |
+++ /dev/null |
@@ -1,69 +0,0 @@ |
-<html> |
-<head> |
- <title>Destroy and Hide Element in Animation End Event</title> |
- <style type="text/css" media="screen"> |
- .box { |
- height: 100px; |
- width: 100px; |
- margin: 10px; |
- background-color: blue; |
- animation-duration: 0.2s; |
- } |
- |
- @keyframes move { |
- from { transform: translate(0px, 0px); } |
- to { transform: translate(100px, 0px); } |
- } |
- </style> |
- <script type="text/javascript" charset="utf-8"> |
- if (window.testRunner) { |
- testRunner.dumpAsText(); |
- testRunner.waitUntilDone(); |
- } |
- |
- var numDone = 0; |
- function animationStarted() |
- { |
- ++numDone; |
- if (numDone == 2) { |
- if (window.GCController) |
- GCController.collect(); |
- |
- document.getElementById('results').innerHTML = 'Did not crash, so PASSED'; |
- |
- if (window.testRunner) |
- testRunner.notifyDone(); |
- } |
- } |
- |
- function startTest() |
- { |
- var box1 = document.getElementById('box1'); |
- box1.addEventListener('animationstart', function() { |
- box1.parentNode.removeChild(box1); |
- animationStarted(); |
- }, false); |
- box1.style.animationName = 'move'; |
- |
- var box2 = document.getElementById('box2'); |
- box2.addEventListener('animationstart', function() { |
- box2.style.display = 'none'; |
- animationStarted(); |
- }, false); |
- box2.style.animationName = 'move'; |
- } |
- |
- window.addEventListener('load', startTest, false); |
- </script> |
-</head> |
-<body> |
- |
-<p>Tests element removal and hiding within the animationstart event handler. Should not crash.</p> |
- |
-<div id="container"> |
- <div id="box1" class="box"></div> |
- <div id="box2" class="box"></div> |
-</div> |
-<div id="results"></div> |
-</body> |
-</html> |