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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/body-clone-link-decl-parent-crash.html

Issue 2669403002: Move tests for sections elements to html/sections/. (Closed)
Patch Set: Created 3 years, 10 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/body-clone-link-decl-parent-crash.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/body-clone-link-decl-parent-crash.html b/third_party/WebKit/LayoutTests/fast/dom/body-clone-link-decl-parent-crash.html
deleted file mode 100644
index adb4163216b763838989a04adad368a1d5f8e7f3..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/dom/body-clone-link-decl-parent-crash.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="../../resources/js-test.js"></script>
-</head>
-<body>
-Test passes if it does not crash.
-<div id="console"></div>
-<script>
-if (window.testRunner)
- testRunner.dumpAsText();
-
-iframe1 = document.createElement('iframe');
-document.body.appendChild(iframe1);
-document1 = iframe1.contentDocument.implementation.createHTMLDocument("document");
-var body1 = document1.body;
-document1.alinkColor = "blue";
-var body2 = body1.cloneNode(true);
-document1.body = document1.createElement('body');
-delete document1;
-gc();
-body2.vLink = 1;
-
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698