Index: third_party/WebKit/LayoutTests/animations/restart-not-visible.html |
diff --git a/third_party/WebKit/LayoutTests/animations/restart-not-visible.html b/third_party/WebKit/LayoutTests/animations/restart-not-visible.html |
deleted file mode 100644 |
index f8c094b7f80d1bc2a18698eb3e2fd7394575be62..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/animations/restart-not-visible.html |
+++ /dev/null |
@@ -1,31 +0,0 @@ |
-<!DOCTYPE html> |
-<style> |
-.run { |
- animation: foo 1s infinite alternate; |
-} |
- |
-@keyframes foo { |
- 100% { |
- transform: translateX(100px) |
- } |
-} |
-</style> |
-<div id="target"></div> |
-<script src="../resources/testharness.js"></script> |
-<script src="../resources/testharnessreport.js"></script> |
-<script> |
-var test = async_test('Race between visibility and set compositor pending should not crash'); |
-requestAnimationFrame(t => { |
- requestAnimationFrame(t => { |
- target.classList.add('run'); |
- setTimeout(() => { |
- testRunner.setPageVisibility("hidden"); |
- target.style.transform = 'translateX(50px)'; |
- target.offsetTop; |
- setTimeout(() => { |
- test.done(); |
- }, 0); |
- }, 0); |
- }); |
-}); |
-</script> |