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

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

Issue 383833002: All selectors in :-webkit-any must have an invalidation set feature. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: More documentation 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 | 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 Apple Inc. All r ights reserved. 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All r ights 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 // This method is somewhat conservative in what it accepts. 119 // This method is somewhat conservative in what it accepts.
120 RuleFeatureSet::InvalidationSetMode RuleFeatureSet::invalidationSetModeForSelect or(const CSSSelector& selector) 120 RuleFeatureSet::InvalidationSetMode RuleFeatureSet::invalidationSetModeForSelect or(const CSSSelector& selector)
121 { 121 {
122 bool foundCombinator = false; 122 bool foundCombinator = false;
123 bool foundIdent = false; 123 bool foundIdent = false;
124 for (const CSSSelector* component = &selector; component; component = compon ent->tagHistory()) { 124 for (const CSSSelector* component = &selector; component; component = compon ent->tagHistory()) {
125 125
126 if (component->match() == CSSSelector::Class || component->match() == CS SSelector::Id 126 if (component->match() == CSSSelector::Class || component->match() == CS SSelector::Id
127 || (component->match() == CSSSelector::Tag && component->tagQName(). localName() != starAtom) 127 || (component->match() == CSSSelector::Tag && component->tagQName(). localName() != starAtom)
128 || component->isAttributeSelector() || component->isCustomPseudoElem ent()) { 128 || component->isAttributeSelector() || component->isCustomPseudoElem ent()) {
129 if (!foundCombinator) 129 if (!foundCombinator) {
130 // We have found an invalidation set feature in the rightmost co mpound selector.
130 foundIdent = true; 131 foundIdent = true;
132 }
131 } else if (component->pseudoType() == CSSSelector::PseudoHost || compone nt->pseudoType() == CSSSelector::PseudoAny) { 133 } else if (component->pseudoType() == CSSSelector::PseudoHost || compone nt->pseudoType() == CSSSelector::PseudoAny) {
132 if (const CSSSelectorList* selectorList = component->selectorList()) { 134 if (const CSSSelectorList* selectorList = component->selectorList()) {
135 bool foundUniversal = false;
133 for (const CSSSelector* selector = selectorList->first(); select or; selector = CSSSelectorList::next(*selector)) { 136 for (const CSSSelector* selector = selectorList->first(); select or; selector = CSSSelectorList::next(*selector)) {
134 InvalidationSetMode hostMode = invalidationSetModeForSelecto r(*selector); 137 // Find the invalidation set mode for each of the selectors in the selector list
135 if (hostMode == UseSubtreeStyleChange) 138 // of a :not(), :host(), etc. For instance, ".x :-webkit-any (.a, .b)" yields an
139 // AddFeatures mode for both ".a" and ".b". ":-webkit-any(.a , *)" yields AddFeatures
140 // for ".a", but UseSubtreeStyleChange for "*". One sub-sele ctor without invalidation
141 // set features is sufficient to cause the selector to be a universal selector as far
142 // the invalidation set is concerned.
143 InvalidationSetMode subSelectorMode = invalidationSetModeFor Selector(*selector);
144
145 // The sub-selector contained something unskippable, fall ba ck to whole subtree
146 // recalcs in collectFeaturesFromSelector. subSelectorMode w ill return
147 // UseSubtreeStyleChange since there are no combinators insi de the selector list,
148 // so translate it to UseLocalStyleChange if a combinator ha s been seen in the
149 // outer context.
150 //
151 // FIXME: Is UseSubtreeStyleChange ever needed as input to c ollectFeaturesFromSelector?
152 // That is, are there any selectors for which we need to use SubtreeStyleChange for
153 // changing features when present in the rightmost compound selector?
rune 2014/08/08 14:35:50 Yes, but only for :host-context() since :host-cont
154 if (subSelectorMode == UseSubtreeStyleChange)
136 return foundCombinator ? UseLocalStyleChange : UseSubtre eStyleChange; 155 return foundCombinator ? UseLocalStyleChange : UseSubtre eStyleChange;
137 if (!foundCombinator && hostMode == AddFeatures) 156
138 foundIdent = true; 157 // We found no features in the sub-selector, only skippable ones (foundIdent was
158 // false at the end of this method). That is a universal sel ector as far as the
159 // invalidation set is concerned.
160 if (subSelectorMode == UseLocalStyleChange)
161 foundUniversal = true;
162 }
163 if (!foundUniversal && !foundCombinator) {
164 // All sub-selectors contained invalidation set features and
165 // we are in the rightmost compound selector.
166 foundIdent = true;
139 } 167 }
140 } 168 }
141 } else if (!isSkippableComponentForInvalidation(*component)) { 169 } else if (!isSkippableComponentForInvalidation(*component)) {
142 return foundCombinator ? UseLocalStyleChange : UseSubtreeStyleChange ; 170 return foundCombinator ? UseLocalStyleChange : UseSubtreeStyleChange ;
143 } 171 }
144 if (component->relation() != CSSSelector::SubSelector) 172 if (component->relation() != CSSSelector::SubSelector)
145 foundCombinator = true; 173 foundCombinator = true;
146 } 174 }
147 return foundIdent ? AddFeatures : UseLocalStyleChange; 175 return foundIdent ? AddFeatures : UseLocalStyleChange;
148 } 176 }
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after
506 visitor->trace(siblingRules); 534 visitor->trace(siblingRules);
507 visitor->trace(uncommonAttributeRules); 535 visitor->trace(uncommonAttributeRules);
508 visitor->trace(m_classInvalidationSets); 536 visitor->trace(m_classInvalidationSets);
509 visitor->trace(m_attributeInvalidationSets); 537 visitor->trace(m_attributeInvalidationSets);
510 visitor->trace(m_idInvalidationSets); 538 visitor->trace(m_idInvalidationSets);
511 visitor->trace(m_pseudoInvalidationSets); 539 visitor->trace(m_pseudoInvalidationSets);
512 visitor->trace(m_styleInvalidator); 540 visitor->trace(m_styleInvalidator);
513 } 541 }
514 542
515 } // namespace WebCore 543 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698