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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/remove-body-during-title-creation.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-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>

Powered by Google App Engine
This is Rietveld 408576698