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

Side by Side Diff: Source/core/css/SelectorChecker.cpp

Issue 298253009: Add iterator object to iterate efficiently over an Element's attributes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) 3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com)
4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) 4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com)
5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved. 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved.
6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> 6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> 7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org>
8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. 9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved.
10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. 10 * Copyright (C) Research In Motion Limited 2011. All rights reserved.
(...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after
485 485
486 // Synchronize the attribute in case it is lazy-computed. 486 // Synchronize the attribute in case it is lazy-computed.
487 // Currently all lazy properties have a null namespace, so only pass localNa me(). 487 // Currently all lazy properties have a null namespace, so only pass localNa me().
488 element.synchronizeAttribute(selectorAttr.localName()); 488 element.synchronizeAttribute(selectorAttr.localName());
489 489
490 if (!element.hasAttributesWithoutUpdate()) 490 if (!element.hasAttributesWithoutUpdate())
491 return false; 491 return false;
492 492
493 const AtomicString& selectorValue = selector.value(); 493 const AtomicString& selectorValue = selector.value();
494 494
495 unsigned attributeCount = element.attributeCount(); 495 AttributeIteratorAccessor attributes = element.attributesIterator();
esprehn 2014/05/28 20:03:54 This accessor thing is kind of weird, why can't El
496 for (size_t i = 0; i < attributeCount; ++i) { 496 AttributeConstIterator end = attributes.end();
497 const Attribute& attributeItem = element.attributeItem(i); 497 for (AttributeConstIterator it = attributes.begin(); it != end; ++it) {
498 const Attribute& attributeItem = **it;
498 499
499 if (!attributeItem.matches(selectorAttr)) 500 if (!attributeItem.matches(selectorAttr))
500 continue; 501 continue;
501 502
502 if (attributeValueMatches(attributeItem, match, selectorValue, true)) 503 if (attributeValueMatches(attributeItem, match, selectorValue, true))
503 return true; 504 return true;
504 505
505 // Case sensitivity for attribute matching is looser than hasAttribute o r 506 // Case sensitivity for attribute matching is looser than hasAttribute o r
506 // Element::shouldIgnoreAttributeCase() for now. Unclear if that's corre ct. 507 // Element::shouldIgnoreAttributeCase() for now. Unclear if that's corre ct.
507 bool caseSensitive = !element.document().isHTMLDocument() || HTMLDocumen t::isCaseSensitiveAttribute(selectorAttr); 508 bool caseSensitive = !element.document().isHTMLDocument() || HTMLDocumen t::isCaseSensitiveAttribute(selectorAttr);
(...skipping 634 matching lines...) Expand 10 before | Expand all | Expand 10 after
1142 return element.focused() && isFrameFocused(element); 1143 return element.focused() && isFrameFocused(element);
1143 } 1144 }
1144 1145
1145 template 1146 template
1146 SelectorChecker::Match SelectorChecker::match(const SelectorCheckingContext&, co nst DOMSiblingTraversalStrategy&, MatchResult*) const; 1147 SelectorChecker::Match SelectorChecker::match(const SelectorCheckingContext&, co nst DOMSiblingTraversalStrategy&, MatchResult*) const;
1147 1148
1148 template 1149 template
1149 SelectorChecker::Match SelectorChecker::match(const SelectorCheckingContext&, co nst ShadowDOMSiblingTraversalStrategy&, MatchResult*) const; 1150 SelectorChecker::Match SelectorChecker::match(const SelectorCheckingContext&, co nst ShadowDOMSiblingTraversalStrategy&, MatchResult*) const;
1150 1151
1151 } 1152 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698