Index: sky/tests/mutation-observer/weak-callback-gc-crash.html |
diff --git a/sky/tests/mutation-observer/weak-callback-gc-crash.html b/sky/tests/mutation-observer/weak-callback-gc-crash.html |
deleted file mode 100644 |
index 4cb6819f14bb9594483aaa5efd7575a9f78e152a..0000000000000000000000000000000000000000 |
--- a/sky/tests/mutation-observer/weak-callback-gc-crash.html |
+++ /dev/null |
@@ -1,17 +0,0 @@ |
-<!DOCTYPE html> |
-<div>Test passes if it does not crash</div> |
-<script src="../../../resources/gc.js"></script> |
-<script> |
-if (window.testRunner) { |
- testRunner.waitUntilDone(); |
- testRunner.dumpAsText(); |
-} |
-var observer = new MutationObserver(function() {console.log('Should not appear')}); |
-var div = document.createElement('div'); |
-observer.observe(div, {attributes: true}); |
-div.id = 'foo'; |
-div = null; |
-observer = null; |
-gc(); |
-setTimeout(function() { testRunner.notifyDone(); }, 0); |
-</script> |