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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/remove-body-during-body-replacement2.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/remove-body-during-body-replacement2.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/remove-body-during-body-replacement2.html b/third_party/WebKit/LayoutTests/fast/dom/remove-body-during-body-replacement2.html
deleted file mode 100644
index 526510f5f1938e43cea9b530e0882de221104f30..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/dom/remove-body-during-body-replacement2.html
+++ /dev/null
@@ -1,30 +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('DOMFocusOut', function () { crash(); }, true);
- document.addEventListener('DOMSubtreeModified', function () { /* noop */ }, false);
- document.designMode = "on";
- document.execCommand("SelectAll");
- document.body.outerText = "ABC";
- }, 0);
-}
-
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698