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

Unified 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: Removed condition from other patch 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/fast/css/invalidation/webkit-any-universal.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/RuleFeature.cpp
diff --git a/Source/core/css/RuleFeature.cpp b/Source/core/css/RuleFeature.cpp
index 75af986dfdf2af2346bf9c8d28c999733361c3c0..9751e086d94090468bbb04974ec5a1485884f715 100644
--- a/Source/core/css/RuleFeature.cpp
+++ b/Source/core/css/RuleFeature.cpp
@@ -130,13 +130,16 @@ RuleFeatureSet::InvalidationSetMode RuleFeatureSet::invalidationSetModeForSelect
foundIdent = true;
} else if (component->pseudoType() == CSSSelector::PseudoHost || component->pseudoType() == CSSSelector::PseudoAny) {
if (const CSSSelectorList* selectorList = component->selectorList()) {
+ bool foundUniversal = false;
for (const CSSSelector* selector = selectorList->first(); selector; selector = CSSSelectorList::next(*selector)) {
InvalidationSetMode hostMode = invalidationSetModeForSelector(*selector);
if (hostMode == UseSubtreeStyleChange)
return foundCombinator ? UseLocalStyleChange : UseSubtreeStyleChange;
- if (!foundCombinator && hostMode == AddFeatures)
- foundIdent = true;
+ if (hostMode == UseLocalStyleChange)
chrishtr 2014/07/10 23:26:49 What does foundUniversal have to do with UseLocalS
rune 2014/07/11 08:45:14 Added documentation and renamed hostMode to subSel
+ foundUniversal = true;
}
+ if (!foundUniversal && !foundCombinator)
+ foundIdent = true;
}
} else if (!isSkippableComponentForInvalidation(*component)) {
return foundCombinator ? UseLocalStyleChange : UseSubtreeStyleChange;
« no previous file with comments | « LayoutTests/fast/css/invalidation/webkit-any-universal.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698