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

Side by Side Diff: Source/core/dom/LiveNodeList.cpp

Issue 132923003: Make sure the rootNode of a LiveNodeListBase is always a ContainerNode (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Slightly clearer cast 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 unified diff | Download patch | Annotate | Revision Log
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 * Copyright (C) 2004, 2006, 2007, 2008, 2010 Apple Inc. All rights reserved. 5 * Copyright (C) 2004, 2006, 2007, 2008, 2010 Apple Inc. All rights reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 10 matching lines...) Expand all
21 */ 21 */
22 22
23 #include "config.h" 23 #include "config.h"
24 #include "core/dom/LiveNodeList.h" 24 #include "core/dom/LiveNodeList.h"
25 25
26 #include "core/dom/Element.h" 26 #include "core/dom/Element.h"
27 #include "core/html/HTMLCollection.h" 27 #include "core/html/HTMLCollection.h"
28 28
29 namespace WebCore { 29 namespace WebCore {
30 30
31 Node& LiveNodeListBase::rootNode() const 31 ContainerNode& LiveNodeListBase::rootNode() const
32 { 32 {
33 if (isRootedAtDocument() && m_ownerNode->inDocument()) 33 if (isRootedAtDocument() && m_ownerNode->inDocument())
34 return m_ownerNode->document(); 34 return m_ownerNode->document();
35 return *m_ownerNode; 35 return *m_ownerNode;
36 } 36 }
37 37
38 ContainerNode* LiveNodeListBase::rootContainerNode() const
39 {
40 Node& rootNode = this->rootNode();
41 if (!rootNode.isContainerNode())
42 return 0;
43 return toContainerNode(&rootNode);
44 }
45
46 void LiveNodeListBase::invalidateCache() const 38 void LiveNodeListBase::invalidateCache() const
47 { 39 {
48 m_cachedItem = 0; 40 m_cachedItem = 0;
49 m_isLengthCacheValid = false; 41 m_isLengthCacheValid = false;
50 m_isItemCacheValid = false; 42 m_isItemCacheValid = false;
51 } 43 }
52 44
53 void LiveNodeListBase::invalidateIdNameCacheMaps() const 45 void LiveNodeListBase::invalidateIdNameCacheMaps() const
54 { 46 {
55 ASSERT(hasIdNameCache()); 47 ASSERT(hasIdNameCache());
(...skipping 18 matching lines...) Expand all
74 Node* node = item(i); 66 Node* node = item(i);
75 // FIXME: This should probably be using getIdAttribute instead of idForS tyleResolution. 67 // FIXME: This should probably be using getIdAttribute instead of idForS tyleResolution.
76 if (node->hasID() && toElement(node)->idForStyleResolution() == elementI d) 68 if (node->hasID() && toElement(node)->idForStyleResolution() == elementI d)
77 return node; 69 return node;
78 } 70 }
79 71
80 return 0; 72 return 0;
81 } 73 }
82 74
83 } // namespace WebCore 75 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698