| Index: sky/tests/mutation-observer/weak-callback-gc-crash.sky
|
| diff --git a/sky/tests/mutation-observer/weak-callback-gc-crash.sky b/sky/tests/mutation-observer/weak-callback-gc-crash.sky
|
| deleted file mode 100644
|
| index 4cb6819f14bb9594483aaa5efd7575a9f78e152a..0000000000000000000000000000000000000000
|
| --- a/sky/tests/mutation-observer/weak-callback-gc-crash.sky
|
| +++ /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>
|
|
|