Index: sky/tests/mutation-observer/observer-wrapper-dropoff.html |
diff --git a/sky/tests/mutation-observer/observer-wrapper-dropoff.html b/sky/tests/mutation-observer/observer-wrapper-dropoff.html |
deleted file mode 100644 |
index b7f76ba1fab12baea6c1137ad7f8cb598ad2905c..0000000000000000000000000000000000000000 |
--- a/sky/tests/mutation-observer/observer-wrapper-dropoff.html |
+++ /dev/null |
@@ -1,28 +0,0 @@ |
-<!DOCTYPE html> |
- |
-<script src="../../../resources/js-test.js"></script> |
- |
-<script> |
-description('MutationObserver wrappers should survive GC for passing into the callback even if JS has lost references.'); |
- |
-jsTestIsAsync = true; |
- |
-function addObserver(node, fn) { |
- var observer = new MutationObserver(fn); |
- observer.testProperty = true; |
- observer.observe(node, {attributes:true}); |
-} |
- |
-window.addEventListener("load", function() { |
- addObserver(document.body, function(records, observer) { |
- window.observer = observer; |
- shouldBe('observer.testProperty', 'true'); |
- finishJSTest(); |
- }); |
- |
- gc(); |
- |
- document.body.setAttribute('touch', 'the node'); |
-}); |
-</script> |
- |