| Index: third_party/WebKit/LayoutTests/fast/dom/remove-body-during-body-replacement.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/dom/remove-body-during-body-replacement.html b/third_party/WebKit/LayoutTests/fast/dom/remove-body-during-body-replacement.html
|
| deleted file mode 100644
|
| index 60e768bef335fc4e39f0d8b041c83e60e84a66ef..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/dom/remove-body-during-body-replacement.html
|
| +++ /dev/null
|
| @@ -1,28 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<html>
|
| -<body><div><script>
|
| -
|
| -if (!window.testRunner)
|
| - document.write("This test requires GCController.");
|
| -else {
|
| - testRunner.dumpAsText();
|
| - testRunner.waitUntilDone();
|
| -
|
| - function crash() {
|
| - document.open();
|
| - document.write("PASS. WebKit didn't crash.");
|
| - document.close();
|
| - GCController.collect();
|
| - setTimeout("testRunner.notifyDone()", 0);
|
| - }
|
| -
|
| - setTimeout(function () {
|
| - document.addEventListener('DOMNodeInsertedIntoDocument', function () { crash(); }, true);
|
| - document.addEventListener('DOMSubtreeModified', function () { /* noop */ }, false);
|
| - document.body = document.createElement('body');
|
| - }, 0);
|
| -}
|
| -
|
| -</script>
|
| -</body>
|
| -</html>
|
|
|