1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587
|
/*
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 1999 Antti Koivisto (koivisto@kde.org)
* Copyright (C) 2003-2008, 2011, 2012, 2014 Apple Inc. All rights reserved.
* Copyright (C) 2014 Samsung Electronics. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#include "third_party/blink/renderer/core/html/html_collection.h"
#include "third_party/blink/renderer/core/dom/class_collection.h"
#include "third_party/blink/renderer/core/dom/element_traversal.h"
#include "third_party/blink/renderer/core/dom/node_rare_data.h"
#include "third_party/blink/renderer/core/html/collection_type.h"
#include "third_party/blink/renderer/core/html/document_all_name_collection.h"
#include "third_party/blink/renderer/core/html/document_name_collection.h"
#include "third_party/blink/renderer/core/html/forms/html_button_element.h"
#include "third_party/blink/renderer/core/html/forms/html_data_list_options_collection.h"
#include "third_party/blink/renderer/core/html/forms/html_field_set_element.h"
#include "third_party/blink/renderer/core/html/forms/html_form_control_element.h"
#include "third_party/blink/renderer/core/html/forms/html_form_element.h"
#include "third_party/blink/renderer/core/html/forms/html_option_element.h"
#include "third_party/blink/renderer/core/html/forms/html_options_collection.h"
#include "third_party/blink/renderer/core/html/html_element.h"
#include "third_party/blink/renderer/core/html/html_object_element.h"
#include "third_party/blink/renderer/core/html/html_tag_collection.h"
#include "third_party/blink/renderer/core/html/window_name_collection.h"
#include "third_party/blink/renderer/core/html_names.h"
#include "third_party/blink/renderer/platform/wtf/casting.h"
#include "third_party/blink/renderer/platform/wtf/hash_set.h"
namespace blink {
static bool ShouldTypeOnlyIncludeDirectChildren(CollectionType type) {
switch (type) {
case kClassCollectionType:
case kTagCollectionType:
case kTagCollectionNSType:
case kHTMLTagCollectionType:
case kDocAll:
case kDocAnchors:
case kDocApplets:
case kDocEmbeds:
case kDocForms:
case kDocImages:
case kDocLinks:
case kDocScripts:
case kDocumentNamedItems:
case kDocumentAllNamedItems:
case kMapAreas:
case kTableRows:
case kSelectOptions:
case kSelectedOptions:
case kDataListOptions:
case kWindowNamedItems:
case kFormControls:
case kPopoverInvokers:
case kCommandInvokers:
return false;
case kNodeChildren:
case kTRCells:
case kTSectionRows:
case kTableTBodies:
return true;
case kNameNodeListType:
case kRadioNodeListType:
case kRadioImgNodeListType:
case kLabelsNodeListType:
break;
}
NOTREACHED();
}
static NodeListSearchRoot SearchRootFromCollectionType(
const ContainerNode& owner,
CollectionType type) {
switch (type) {
case kDocImages:
case kDocApplets:
case kDocEmbeds:
case kDocForms:
case kDocLinks:
case kDocAnchors:
case kDocScripts:
case kDocAll:
case kWindowNamedItems:
case kDocumentNamedItems:
case kDocumentAllNamedItems:
case kClassCollectionType:
case kTagCollectionType:
case kTagCollectionNSType:
case kHTMLTagCollectionType:
case kNodeChildren:
case kTableTBodies:
case kTSectionRows:
case kTableRows:
case kTRCells:
case kSelectOptions:
case kSelectedOptions:
case kDataListOptions:
case kMapAreas:
return NodeListSearchRoot::kOwnerNode;
case kFormControls:
if (IsA<HTMLFieldSetElement>(owner))
return NodeListSearchRoot::kOwnerNode;
DCHECK(IsA<HTMLFormElement>(owner));
return NodeListSearchRoot::kTreeScope;
case kPopoverInvokers:
case kCommandInvokers:
return NodeListSearchRoot::kTreeScope;
case kNameNodeListType:
case kRadioNodeListType:
case kRadioImgNodeListType:
case kLabelsNodeListType:
break;
}
NOTREACHED();
}
static NodeListInvalidationType InvalidationTypeExcludingIdAndNameAttributes(
CollectionType type) {
switch (type) {
case kTagCollectionType:
case kTagCollectionNSType:
case kHTMLTagCollectionType:
case kDocImages:
case kDocEmbeds:
case kDocForms:
case kDocScripts:
case kDocAll:
case kNodeChildren:
case kTableTBodies:
case kTSectionRows:
case kTableRows:
case kTRCells:
case kSelectOptions:
case kMapAreas:
return kDoNotInvalidateOnAttributeChanges;
case kDocApplets:
case kSelectedOptions:
case kDataListOptions:
// FIXME: We can do better some day.
return kInvalidateOnAnyAttrChange;
case kDocAnchors:
return kInvalidateOnNameAttrChange;
case kDocLinks:
return kInvalidateOnHRefAttrChange;
case kWindowNamedItems:
return kInvalidateOnIdNameAttrChange;
case kDocumentNamedItems:
return kInvalidateOnIdNameAttrChange;
case kDocumentAllNamedItems:
return kInvalidateOnIdNameAttrChange;
case kFormControls:
return kInvalidateForFormControls;
case kClassCollectionType:
return kInvalidateOnClassAttrChange;
case kPopoverInvokers:
return kInvalidateOnPopoverInvokerAttrChange;
case kCommandInvokers:
return kInvalidateOnCommandInvokerAttrChange;
case kNameNodeListType:
case kRadioNodeListType:
case kRadioImgNodeListType:
case kLabelsNodeListType:
break;
}
NOTREACHED();
}
HTMLCollection::HTMLCollection(ContainerNode& owner_node,
CollectionType type,
ItemAfterOverrideType item_after_override_type)
: LiveNodeListBase(owner_node,
SearchRootFromCollectionType(owner_node, type),
InvalidationTypeExcludingIdAndNameAttributes(type),
type),
overrides_item_after_(item_after_override_type == kOverridesItemAfter),
should_only_include_direct_children_(
ShouldTypeOnlyIncludeDirectChildren(type)) {
// Keep this in the child class because |registerNodeList| requires wrapper
// tracing and potentially calls virtual methods which is not allowed in a
// base class constructor.
GetDocument().RegisterNodeList(this);
}
HTMLCollection::~HTMLCollection() = default;
void HTMLCollection::InvalidateCache(Document* old_document) const {
collection_items_cache_.Invalidate();
InvalidateIdNameCacheMaps(old_document);
}
unsigned HTMLCollection::length() const {
return collection_items_cache_.NodeCount(*this);
}
Element* HTMLCollection::item(unsigned offset) const {
return collection_items_cache_.NodeAt(*this, offset);
}
static inline bool IsMatchingHTMLElement(const HTMLCollection& html_collection,
const HTMLElement& element) {
switch (html_collection.GetType()) {
case kDocImages:
return element.HasTagName(html_names::kImgTag);
case kDocScripts:
return element.HasTagName(html_names::kScriptTag);
case kDocForms:
return element.HasTagName(html_names::kFormTag);
case kDocumentNamedItems:
return To<DocumentNameCollection>(html_collection)
.ElementMatches(element);
case kDocumentAllNamedItems:
return To<DocumentAllNameCollection>(html_collection)
.ElementMatches(element);
case kTableTBodies:
return element.HasTagName(html_names::kTbodyTag);
case kTRCells:
return element.HasTagName(html_names::kTdTag) ||
element.HasTagName(html_names::kThTag);
case kTSectionRows:
return element.HasTagName(html_names::kTrTag);
case kSelectOptions:
return To<HTMLOptionsCollection>(html_collection).ElementMatches(element);
case kSelectedOptions: {
auto* option_element = DynamicTo<HTMLOptionElement>(element);
return option_element && option_element->Selected();
}
case kDataListOptions:
return To<HTMLDataListOptionsCollection>(html_collection)
.ElementMatches(element);
case kMapAreas:
return element.HasTagName(html_names::kAreaTag);
case kDocApplets: {
auto* html_image_element = DynamicTo<HTMLObjectElement>(element);
return html_image_element && html_image_element->ContainsJavaApplet();
}
case kDocEmbeds:
return element.HasTagName(html_names::kEmbedTag);
case kDocLinks:
return (element.HasTagName(html_names::kATag) ||
element.HasTagName(html_names::kAreaTag)) &&
element.FastHasAttribute(html_names::kHrefAttr);
case kDocAnchors:
return element.HasTagName(html_names::kATag) &&
element.FastHasAttribute(html_names::kNameAttr);
case kFormControls:
DCHECK(IsA<HTMLFieldSetElement>(html_collection.ownerNode()));
return IsA<HTMLObjectElement>(element) ||
IsA<HTMLFormControlElement>(element) ||
element.IsFormAssociatedCustomElement();
case kPopoverInvokers:
if (auto* invoker = DynamicTo<HTMLFormControlElement>(
const_cast<HTMLElement&>(element))) {
return invoker->popoverTargetElement().popover != nullptr;
}
return false;
case kCommandInvokers:
if (auto* invoker =
DynamicTo<HTMLButtonElement>(const_cast<HTMLElement&>(element))) {
return invoker->commandForElement() != nullptr;
}
return false;
case kClassCollectionType:
case kTagCollectionType:
case kTagCollectionNSType:
case kHTMLTagCollectionType:
case kDocAll:
case kNodeChildren:
case kTableRows:
case kWindowNamedItems:
case kNameNodeListType:
case kRadioNodeListType:
case kRadioImgNodeListType:
case kLabelsNodeListType:
NOTREACHED();
}
return false;
}
inline bool HTMLCollection::ElementMatches(const Element& element) const {
// These collections apply to any kind of Elements, not just HTMLElements.
switch (GetType()) {
case kDocAll:
case kNodeChildren:
return true;
case kClassCollectionType:
return To<ClassCollection>(*this).ElementMatches(element);
case kTagCollectionType:
return To<TagCollection>(*this).ElementMatches(element);
case kHTMLTagCollectionType:
return To<HTMLTagCollection>(*this).ElementMatches(element);
case kTagCollectionNSType:
return To<TagCollectionNS>(*this).ElementMatches(element);
case kWindowNamedItems:
return To<WindowNameCollection>(*this).ElementMatches(element);
case kDocumentAllNamedItems:
return To<DocumentAllNameCollection>(*this).ElementMatches(element);
default:
break;
}
// The following only applies to HTMLElements.
auto* html_element = DynamicTo<HTMLElement>(element);
return html_element && IsMatchingHTMLElement(*this, *html_element);
}
namespace {
template <class HTMLCollectionType>
class IsMatch {
STACK_ALLOCATED();
public:
IsMatch(const HTMLCollectionType& list) : list_(&list) {}
bool operator()(const Element& element) const {
return list_->ElementMatches(element);
}
private:
const HTMLCollectionType* list_;
};
} // namespace
template <class HTMLCollectionType>
static inline IsMatch<HTMLCollectionType> MakeIsMatch(
const HTMLCollectionType& list) {
return IsMatch<HTMLCollectionType>(list);
}
Element* HTMLCollection::VirtualItemAfter(Element*) const {
NOTREACHED();
}
// https://html.spec.whatwg.org/C/#all-named-elements
// The document.all collection returns only certain types of elements by name,
// although it returns any type of element by id.
static inline bool NameShouldBeVisibleInDocumentAll(
const HTMLElement& element) {
return element.HasTagName(html_names::kATag) ||
element.HasTagName(html_names::kButtonTag) ||
element.HasTagName(html_names::kEmbedTag) ||
element.HasTagName(html_names::kFormTag) ||
element.HasTagName(html_names::kFrameTag) ||
element.HasTagName(html_names::kFramesetTag) ||
element.HasTagName(html_names::kIFrameTag) ||
element.HasTagName(html_names::kImgTag) ||
element.HasTagName(html_names::kInputTag) ||
element.HasTagName(html_names::kMapTag) ||
element.HasTagName(html_names::kMetaTag) ||
element.HasTagName(html_names::kObjectTag) ||
element.HasTagName(html_names::kSelectTag) ||
element.HasTagName(html_names::kTextareaTag);
}
Element* HTMLCollection::TraverseToFirst() const {
switch (GetType()) {
case kHTMLTagCollectionType:
return ElementTraversal::FirstWithin(
RootNode(), MakeIsMatch(To<HTMLTagCollection>(*this)));
case kClassCollectionType:
return ElementTraversal::FirstWithin(
RootNode(), MakeIsMatch(To<ClassCollection>(*this)));
default:
if (OverridesItemAfter())
return VirtualItemAfter(nullptr);
if (ShouldOnlyIncludeDirectChildren())
return ElementTraversal::FirstChild(RootNode(), MakeIsMatch(*this));
return ElementTraversal::FirstWithin(RootNode(), MakeIsMatch(*this));
}
}
Element* HTMLCollection::TraverseToLast() const {
DCHECK(CanTraverseBackward());
if (ShouldOnlyIncludeDirectChildren())
return ElementTraversal::LastChild(RootNode(), MakeIsMatch(*this));
return ElementTraversal::LastWithin(RootNode(), MakeIsMatch(*this));
}
Element* HTMLCollection::TraverseForwardToOffset(
unsigned offset,
Element& current_element,
unsigned& current_offset) const {
DCHECK_LT(current_offset, offset);
switch (GetType()) {
case kHTMLTagCollectionType:
return TraverseMatchingElementsForwardToOffset(
current_element, &RootNode(), offset, current_offset,
MakeIsMatch(To<HTMLTagCollection>(*this)));
case kClassCollectionType:
return TraverseMatchingElementsForwardToOffset(
current_element, &RootNode(), offset, current_offset,
MakeIsMatch(To<ClassCollection>(*this)));
default:
if (OverridesItemAfter()) {
for (Element* next = VirtualItemAfter(¤t_element); next;
next = VirtualItemAfter(next)) {
if (++current_offset == offset)
return next;
}
return nullptr;
}
if (ShouldOnlyIncludeDirectChildren()) {
IsMatch<HTMLCollection> is_match(*this);
for (Element* next =
ElementTraversal::NextSibling(current_element, is_match);
next; next = ElementTraversal::NextSibling(*next, is_match)) {
if (++current_offset == offset)
return next;
}
return nullptr;
}
return TraverseMatchingElementsForwardToOffset(
current_element, &RootNode(), offset, current_offset,
MakeIsMatch(*this));
}
}
Element* HTMLCollection::TraverseBackwardToOffset(
unsigned offset,
Element& current_element,
unsigned& current_offset) const {
DCHECK_GT(current_offset, offset);
DCHECK(CanTraverseBackward());
if (ShouldOnlyIncludeDirectChildren()) {
IsMatch<HTMLCollection> is_match(*this);
for (Element* previous =
ElementTraversal::PreviousSibling(current_element, is_match);
previous;
previous = ElementTraversal::PreviousSibling(*previous, is_match)) {
if (--current_offset == offset)
return previous;
}
return nullptr;
}
return TraverseMatchingElementsBackwardToOffset(
current_element, &RootNode(), offset, current_offset, MakeIsMatch(*this));
}
Element* HTMLCollection::namedItem(const AtomicString& name) const {
// http://msdn.microsoft.com/workshop/author/dhtml/reference/methods/nameditem.asp
// This method first searches for an object with a matching id
// attribute. If a match is not found, the method then searches for an
// object with a matching name attribute, but only on those elements
// that are allowed a name attribute.
UpdateIdNameCache();
const NamedItemCache& cache = GetNamedItemCache();
const auto* id_results = cache.GetElementsById(name);
if (id_results && !id_results->empty())
return id_results->front().Get();
const auto* name_results = cache.GetElementsByName(name);
if (name_results && !name_results->empty())
return name_results->front().Get();
return nullptr;
}
bool HTMLCollection::NamedPropertyQuery(const AtomicString& name,
ExceptionState&) {
return namedItem(name);
}
void HTMLCollection::SupportedPropertyNames(Vector<String>& names) {
// As per the specification (https://dom.spec.whatwg.org/#htmlcollection):
// The supported property names are the values from the list returned by these
// steps:
// 1. Let result be an empty list.
// 2. For each element represented by the collection, in tree order, run these
// substeps:
// 1. If element has an ID which is neither the empty string nor is in
// result, append element's ID to result.
// 2. If element is in the HTML namespace and has a name attribute whose
// value is neither the empty string nor is in result, append element's
// name attribute value to result.
// 3. Return result.
HashSet<AtomicString> existing_names;
unsigned length = this->length();
for (unsigned i = 0; i < length; ++i) {
Element* element = item(i);
const AtomicString& id_attribute = element->GetIdAttribute();
if (!id_attribute.empty()) {
HashSet<AtomicString>::AddResult add_result =
existing_names.insert(id_attribute);
if (add_result.is_new_entry)
names.push_back(id_attribute);
}
auto* html_element = DynamicTo<HTMLElement>(element);
if (!html_element)
continue;
const AtomicString& name_attribute = element->GetNameAttribute();
if (!name_attribute.empty() &&
(GetType() != kDocAll ||
NameShouldBeVisibleInDocumentAll(*html_element))) {
HashSet<AtomicString>::AddResult add_result =
existing_names.insert(name_attribute);
if (add_result.is_new_entry)
names.push_back(name_attribute);
}
}
}
void HTMLCollection::NamedPropertyEnumerator(Vector<String>& names,
ExceptionState&) {
SupportedPropertyNames(names);
}
void HTMLCollection::UpdateIdNameCache() const {
if (HasValidIdNameCache())
return;
auto* cache = MakeGarbageCollected<NamedItemCache>();
unsigned length = this->length();
for (unsigned i = 0; i < length; ++i) {
Element* element = item(i);
const AtomicString& id_attr_val = element->GetIdAttribute();
if (!id_attr_val.empty())
cache->AddElementWithId(id_attr_val, element);
auto* html_element = DynamicTo<HTMLElement>(element);
if (!html_element)
continue;
const AtomicString& name_attr_val = element->GetNameAttribute();
if (!name_attr_val.empty() && id_attr_val != name_attr_val &&
(GetType() != kDocAll ||
NameShouldBeVisibleInDocumentAll(*html_element)))
cache->AddElementWithName(name_attr_val, element);
}
// Set the named item cache last as traversing the tree may cause cache
// invalidation.
SetNamedItemCache(cache);
}
void HTMLCollection::NamedItems(const AtomicString& name,
HeapVector<Member<Element>>& result) const {
DCHECK(result.empty());
if (name.empty())
return;
UpdateIdNameCache();
const NamedItemCache& cache = GetNamedItemCache();
if (const auto* id_results = cache.GetElementsById(name))
result.AppendVector(*id_results);
if (const auto* name_results = cache.GetElementsByName(name))
result.AppendVector(*name_results);
}
bool HTMLCollection::HasNamedItems(const AtomicString& name) const {
if (name.empty()) {
return false;
}
UpdateIdNameCache();
const NamedItemCache& cache = GetNamedItemCache();
return cache.GetElementsById(name) || cache.GetElementsByName(name);
}
HTMLCollection::NamedItemCache::NamedItemCache() = default;
void HTMLCollection::Trace(Visitor* visitor) const {
visitor->Trace(named_item_cache_);
visitor->Trace(collection_items_cache_);
ScriptWrappable::Trace(visitor);
LiveNodeListBase::Trace(visitor);
}
} // namespace blink
|