Chromium Code Reviews| OLD | NEW |
|---|---|
| 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, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv ed. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv ed. |
| 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 1144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1155 return ensureRareData().ensureNodeLists().addCache<ClassCollection>(*this, C lassCollectionType, classNames); | 1155 return ensureRareData().ensureNodeLists().addCache<ClassCollection>(*this, C lassCollectionType, classNames); |
| 1156 } | 1156 } |
| 1157 | 1157 |
| 1158 PassRefPtr<RadioNodeList> ContainerNode::radioNodeList(const AtomicString& name, bool onlyMatchImgElements) | 1158 PassRefPtr<RadioNodeList> ContainerNode::radioNodeList(const AtomicString& name, bool onlyMatchImgElements) |
| 1159 { | 1159 { |
| 1160 ASSERT(isHTMLFormElement(this) || isHTMLFieldSetElement(this)); | 1160 ASSERT(isHTMLFormElement(this) || isHTMLFieldSetElement(this)); |
| 1161 CollectionType type = onlyMatchImgElements ? RadioImgNodeListType : RadioNod eListType; | 1161 CollectionType type = onlyMatchImgElements ? RadioImgNodeListType : RadioNod eListType; |
| 1162 return ensureRareData().ensureNodeLists().addCache<RadioNodeList>(*this, typ e, name); | 1162 return ensureRareData().ensureNodeLists().addCache<RadioNodeList>(*this, typ e, name); |
| 1163 } | 1163 } |
| 1164 | 1164 |
| 1165 Element* ContainerNode::getElementById(const AtomicString& id) const | |
| 1166 { | |
| 1167 if (isInTreeScope()) { | |
| 1168 // Fast path if we are in a tree scope: call getElementById() on tree sc ope | |
| 1169 // and check if the matching element is in our subtree. | |
| 1170 Element* element = treeScope().getElementById(id); | |
| 1171 if (!element) | |
| 1172 return 0; | |
| 1173 if (element->isDescendantOf(this)) | |
|
arv (Not doing code reviews)
2014/04/25 15:28:59
Can this ever be false?
Inactive
2014/04/25 15:31:30
Yes, just because there is an element in the Docum
arv (Not doing code reviews)
2014/04/25 15:37:42
I see. The SVGSVGElement makes this != tree scope.
| |
| 1174 return element; | |
| 1175 } | |
| 1176 | |
| 1177 // Fall back to traversing our subtree. In case of duplicate ids, the first element found will be returned. | |
| 1178 for (Element* element = ElementTraversal::firstWithin(*this); element; eleme nt = ElementTraversal::next(*element, this)) { | |
| 1179 if (element->getIdAttribute() == id) | |
| 1180 return element; | |
| 1181 } | |
| 1182 return 0; | |
| 1183 } | |
| 1184 | |
| 1165 #ifndef NDEBUG | 1185 #ifndef NDEBUG |
| 1166 bool childAttachedAllowedWhenAttachingChildren(ContainerNode* node) | 1186 bool childAttachedAllowedWhenAttachingChildren(ContainerNode* node) |
| 1167 { | 1187 { |
| 1168 if (node->isShadowRoot()) | 1188 if (node->isShadowRoot()) |
| 1169 return true; | 1189 return true; |
| 1170 | 1190 |
| 1171 if (node->isInsertionPoint()) | 1191 if (node->isInsertionPoint()) |
| 1172 return true; | 1192 return true; |
| 1173 | 1193 |
| 1174 if (node->isElementNode() && toElement(node)->shadow()) | 1194 if (node->isElementNode() && toElement(node)->shadow()) |
| 1175 return true; | 1195 return true; |
| 1176 | 1196 |
| 1177 return false; | 1197 return false; |
| 1178 } | 1198 } |
| 1179 #endif | 1199 #endif |
| 1180 | 1200 |
| 1181 } // namespace WebCore | 1201 } // namespace WebCore |
| OLD | NEW |