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

Unified Diff: LayoutTests/fast/dom/document-set-title-no-head.html

Issue 109823011: Revert "Don't set document.title when there is no <head>" (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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
« no previous file with comments | « no previous file | LayoutTests/fast/dom/document-set-title-no-head-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/dom/document-set-title-no-head.html
diff --git a/LayoutTests/fast/dom/document-set-title-no-head.html b/LayoutTests/fast/dom/document-set-title-no-head.html
deleted file mode 100644
index 87e9c1ee32f98b51c0263fdb6cd4c565694b05fb..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/dom/document-set-title-no-head.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<!DOCTYPE html>
-<head></head>
-<body>
-<script src="../../resources/js-test.js"></script>
-<script type="text/javascript">
-description("Test that setting document.title when there is no &lt;head&gt; or &lt;title&gt; does nothing");
-onload = function()
-{
- var head = document.head;
- while (head.firstChild)
- document.documentElement.appendChild(head.firstChild);
- document.documentElement.removeChild(head);
- document.title = "New title";
- shouldBeEmptyString('document.title');
-}
-</script>
-</body>
« no previous file with comments | « no previous file | LayoutTests/fast/dom/document-set-title-no-head-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698