Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/HTMLBodyElement/body-inserting-iframe-crash.html

Issue 2669403002: Move tests for sections elements to html/sections/. (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698