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

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: 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..7a4c8190cc00a98988ca4874a17d8479d0a41058 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 || component->pseudoType() == CSSSelector::PseudoNot)
rune 2014/07/10 21:49:20 The PseudoNot check sneaked its way in from anothe
rune 2014/07/10 21:50:46 Done.
+ 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