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