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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/Document/script-tests/title-with-multiple-children.js

Issue 2667393002: Stop using script-tests in fast/dom/. (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/Document/script-tests/title-with-multiple-children.js
diff --git a/third_party/WebKit/LayoutTests/fast/dom/Document/script-tests/title-with-multiple-children.js b/third_party/WebKit/LayoutTests/fast/dom/Document/script-tests/title-with-multiple-children.js
deleted file mode 100644
index b1764a045f274750866e05806e0589597aa4ef66..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/dom/Document/script-tests/title-with-multiple-children.js
+++ /dev/null
@@ -1,28 +0,0 @@
-description("This test checks to see if setting document.title works even if the title element has multiple children.");
-
-// Setup - create title element.
-shouldBe("document.getElementsByTagName('title').length", "0");
-var titleElement = document.createElement("title");
-document.body.appendChild(titleElement);
-
-// For case with no children.
-shouldBe("document.title", "''");
-shouldBe("titleElement.text", "''");
-
-// For case with single children.
-var firstText = "First";
-titleElement.appendChild(document.createTextNode(firstText));
-shouldBe("document.title", "firstText");
-shouldBe("titleElement.text", "firstText");
-
-// For case with 2 children.
-var secondText = "Second";
-titleElement.appendChild(document.createTextNode(secondText));
-shouldBe("document.title", "firstText + secondText");
-shouldBe("titleElement.text", "firstText + secondText");
-
-// override title with setting document.title with multiple title children.
-var expected = "This title is set by property";
-document.title = expected;
-shouldBe("document.title", "expected");
-shouldBe("titleElement.text", "expected");

Powered by Google App Engine
This is Rietveld 408576698