| Index: third_party/WebKit/LayoutTests/fast/dom/HTMLBodyElement/body-inserting-iframe-crash.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/dom/HTMLBodyElement/body-inserting-iframe-crash.html b/third_party/WebKit/LayoutTests/fast/dom/HTMLBodyElement/body-inserting-iframe-crash.html
|
| deleted file mode 100644
|
| index 35cece8d5318de3c9503a5832bdbcc0c8300ce9d..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/dom/HTMLBodyElement/body-inserting-iframe-crash.html
|
| +++ /dev/null
|
| @@ -1,25 +0,0 @@
|
| -<script>
|
| -if (window.testRunner)
|
| - testRunner.dumpAsText();
|
| -
|
| -var iframe = null;
|
| -
|
| -function start() {
|
| - iframe = document.createElement('iframe');
|
| - iframe.setAttribute('marginwidth', 1);
|
| - document.body.appendChild(iframe);
|
| -
|
| - var bodyInFrame = document.createElement('body');
|
| - bodyInFrame.addEventListener('DOMSubtreeModified', removeIframe);
|
| - iframe.contentDocument.documentElement.appendChild(bodyInFrame);
|
| - document.body.innerHTML = 'PASS if not crashed.';
|
| -}
|
| -
|
| -function removeIframe() {
|
| - iframe.parentNode.removeChild(iframe);
|
| - iframe = null;
|
| - gc();
|
| -}
|
| -</script>
|
| -<body onload="start()">
|
| -</body>
|
|
|