Index: third_party/WebKit/LayoutTests/animations/finish-event-after-gc.html |
diff --git a/third_party/WebKit/LayoutTests/animations/finish-event-after-gc.html b/third_party/WebKit/LayoutTests/animations/finish-event-after-gc.html |
deleted file mode 100644 |
index 7cba44fbb539ef19b86c2f9360217699a5c934be..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/animations/finish-event-after-gc.html |
+++ /dev/null |
@@ -1,22 +0,0 @@ |
-<!DOCTYPE html> |
-<script src="../resources/testharness.js"></script> |
-<script src="../resources/testharnessreport.js"></script> |
-<body> |
-<script> |
-var layoutTest = async_test('Finish event should be delivered even if a GC occurs. This test passes if it does not time out.'); |
-var events = 0; |
- |
-function finish() { |
- if (window.GCController) |
- GCController.collect(); |
- if (++events == 2) |
- layoutTest.done(); |
-} |
- |
-// Use a distinct, unreferenced instance of the handler function. |
-document.body.animate([]).onfinish = finish.bind(); |
-document.body.animate([]).onfinish = finish.bind(); |
- |
-if (window.GCController) |
- GCController.collect(); |
-</script> |