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

Side by Side Diff: Source/core/dom/Document.h

Issue 384413003: Document.title getter should return text of title element and setter should stop when head el… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add test case for this CL Created 6 years, 5 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r ights reserved.
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
9 * Copyright (C) 2011 Google Inc. All rights reserved. 9 * Copyright (C) 2011 Google Inc. All rights reserved.
10 * 10 *
(...skipping 1237 matching lines...) Expand 10 before | Expand all | Expand 10 after
1248 bool m_haveExplicitlyDisabledDNSPrefetch; 1248 bool m_haveExplicitlyDisabledDNSPrefetch;
1249 bool m_containsValidityStyleRules; 1249 bool m_containsValidityStyleRules;
1250 bool m_updateFocusAppearanceRestoresSelection; 1250 bool m_updateFocusAppearanceRestoresSelection;
1251 bool m_containsPlugins; 1251 bool m_containsPlugins;
1252 1252
1253 // http://www.whatwg.org/specs/web-apps/current-work/#ignore-destructive-wri tes-counter 1253 // http://www.whatwg.org/specs/web-apps/current-work/#ignore-destructive-wri tes-counter
1254 unsigned m_ignoreDestructiveWriteCount; 1254 unsigned m_ignoreDestructiveWriteCount;
1255 1255
1256 String m_title; 1256 String m_title;
1257 String m_rawTitle; 1257 String m_rawTitle;
1258 bool m_titleSetExplicitly;
1259 RefPtrWillBeMember<Element> m_titleElement; 1258 RefPtrWillBeMember<Element> m_titleElement;
1260 1259
1261 OwnPtr<AXObjectCache> m_axObjectCache; 1260 OwnPtr<AXObjectCache> m_axObjectCache;
1262 OwnPtrWillBeMember<DocumentMarkerController> m_markers; 1261 OwnPtrWillBeMember<DocumentMarkerController> m_markers;
1263 1262
1264 Timer<Document> m_updateFocusAppearanceTimer; 1263 Timer<Document> m_updateFocusAppearanceTimer;
1265 1264
1266 RawPtrWillBeMember<Element> m_cssTarget; 1265 RawPtrWillBeMember<Element> m_cssTarget;
1267 1266
1268 LoadEventProgress m_loadEventProgress; 1267 LoadEventProgress m_loadEventProgress;
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
1430 Node* eventTargetNodeForDocument(Document*); 1429 Node* eventTargetNodeForDocument(Document*);
1431 1430
1432 } // namespace WebCore 1431 } // namespace WebCore
1433 1432
1434 #ifndef NDEBUG 1433 #ifndef NDEBUG
1435 // Outside the WebCore namespace for ease of invocation from gdb. 1434 // Outside the WebCore namespace for ease of invocation from gdb.
1436 void showLiveDocumentInstances(); 1435 void showLiveDocumentInstances();
1437 #endif 1436 #endif
1438 1437
1439 #endif // Document_h 1438 #endif // Document_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698