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

Unified Diff: Source/core/dom/Document.cpp

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 | « LayoutTests/fast/dom/document-set-title-no-head-expected.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Document.cpp
diff --git a/Source/core/dom/Document.cpp b/Source/core/dom/Document.cpp
index f21b660e3910c6a142019bc285a0299d8a1999bc..7d7e94c4a5260e4aa94755f74f1f30f178403210 100644
--- a/Source/core/dom/Document.cpp
+++ b/Source/core/dom/Document.cpp
@@ -1294,21 +1294,18 @@ void Document::updateTitle(const String& title)
m_frame->loader().client()->dispatchDidReceiveTitle(m_title);
}
-// http://www.whatwg.org/specs/web-apps/current-work/multipage/dom.html#document.title
void Document::setTitle(const String& title)
{
+ // Title set by JavaScript -- overrides any title elements.
+ m_titleSetExplicitly = true;
if (!isHTMLDocument() && !isXHTMLDocument())
m_titleElement = 0;
else if (!m_titleElement) {
if (HTMLElement* headElement = head()) {
m_titleElement = createElement(titleTag, false);
headElement->appendChild(m_titleElement);
- } else {
- // "If the title element is null and the head element is null, then the attribute must do nothing."
- return;
}
}
- m_titleSetExplicitly = true;
if (m_titleElement)
m_titleElement->removeChildren();
« no previous file with comments | « LayoutTests/fast/dom/document-set-title-no-head-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698