Index: third_party/WebKit/LayoutTests/animations/animation-immediate-start-event-after-ondemand-update.html |
diff --git a/third_party/WebKit/LayoutTests/animations/animation-immediate-start-event-after-ondemand-update.html b/third_party/WebKit/LayoutTests/animations/animation-immediate-start-event-after-ondemand-update.html |
deleted file mode 100644 |
index c66fd7b14ef7427eba94b2c0578ff6e06c113044..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/animations/animation-immediate-start-event-after-ondemand-update.html |
+++ /dev/null |
@@ -1,34 +0,0 @@ |
-<!doctype html> |
-<style> |
-.animated { |
- animation: test 10ms; |
- animation-delay: -10ms; |
-} |
-@keyframes test { |
- 0% {} |
-} |
-</style> |
-<div id="test">FAIL</div> |
-<script> |
-if (window.testRunner) { |
- testRunner.dumpAsText(); |
- testRunner.waitUntilDone(); |
-} |
-onload = function() { |
- // This test covers a specific regression where an on-demand timing update |
- // that was triggered after an animation received a start time could cause |
- // CSS Animation and Transition events to not be fired on the subseuquent |
- // animation-frame timing update. |
- test.classList.add('animated'); |
- test.addEventListener('animationstart', function() { |
- document.documentElement.textContent = 'PASS'; |
- if (window.testRunner) |
- testRunner.notifyDone(); |
- }); |
- requestAnimationFrame(function() { |
- setTimeout(function() { |
- getComputedStyle(test).left; |
- }); |
- }); |
-} |
-</script> |