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

Unified Diff: Source/core/css/resolver/StyleResolver.cpp

Issue 1332493002: Revert "Implement proposed shadow tree cascade order." (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 3 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 | « Source/core/css/resolver/StyleResolver.h ('k') | Source/core/dom/DocumentOrderedList.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/resolver/StyleResolver.cpp
diff --git a/Source/core/css/resolver/StyleResolver.cpp b/Source/core/css/resolver/StyleResolver.cpp
index 875a9a8cf7b85cd804b87068abcda759490ab6be..767ad014c67bd880a5943b60a56f8b593372e1de 100644
--- a/Source/core/css/resolver/StyleResolver.cpp
+++ b/Source/core/css/resolver/StyleResolver.cpp
@@ -124,6 +124,21 @@ static StylePropertySet* rightToLeftDeclaration()
return rightToLeftDecl;
}
+static void collectScopedResolversForHostedShadowTrees(const Element* element, WillBeHeapVector<RawPtrWillBeMember<ScopedStyleResolver>, 8>& resolvers)
+{
+ ElementShadow* shadow = element->shadow();
+ if (!shadow)
+ return;
+
+ // Adding scoped resolver for active shadow roots for shadow host styling.
+ for (ShadowRoot* shadowRoot = shadow->youngestShadowRoot(); shadowRoot; shadowRoot = shadowRoot->olderShadowRoot()) {
+ if (shadowRoot->numberOfStyles() > 0) {
+ if (ScopedStyleResolver* resolver = shadowRoot->scopedStyleResolver())
+ resolvers.append(resolver);
+ }
+ }
+}
+
StyleResolver::StyleResolver(Document& document)
: m_document(document)
, m_viewportStyleResolver(ViewportStyleResolver::create(&document))
@@ -228,12 +243,12 @@ void StyleResolver::resetRuleFeatures()
void StyleResolver::addTreeBoundaryCrossingScope(ContainerNode& scope)
{
- m_treeBoundaryCrossingScopes.add(&scope);
+ m_treeBoundaryCrossingRules.addScope(scope);
}
void StyleResolver::resetAuthorStyle(TreeScope& treeScope)
{
- m_treeBoundaryCrossingScopes.remove(&treeScope.rootNode());
+ m_treeBoundaryCrossingRules.removeScope(treeScope.rootNode());
ScopedStyleResolver* resolver = treeScope.scopedStyleResolver();
if (!resolver)
@@ -334,11 +349,11 @@ StyleResolver::~StyleResolver()
{
}
-static inline ScopedStyleResolver* scopedResolverFor(const Element& element)
+static inline ScopedStyleResolver* scopedResolverFor(const Element* element)
{
// Ideally, returning element->treeScope().scopedStyleResolver() should be
// enough, but ::cue and custom pseudo elements like ::-webkit-meter-bar pierce
- // through a shadow dom boundary, yet they are not part of m_treeBoundaryCrossingScopes.
+ // through a shadow dom boundary, yet they are not part of m_treeBoundaryCrossingRules.
// The assumption here is that these rules only pierce through one boundary and
// that the scope of these elements do not have a style resolver due to the fact
// that VTT scopes and UA shadow trees don't have <style> elements. This is
@@ -347,94 +362,40 @@ static inline ScopedStyleResolver* scopedResolverFor(const Element& element)
// FIXME: Make ::cue and custom pseudo elements part of boundary crossing rules
// when moving those rules to ScopedStyleResolver as part of issue 401359.
- TreeScope* treeScope = &element.treeScope();
+ TreeScope* treeScope = &element->treeScope();
if (ScopedStyleResolver* resolver = treeScope->scopedStyleResolver()) {
- ASSERT(element.shadowPseudoId().isEmpty());
- ASSERT(!element.isVTTElement());
+ ASSERT(element->shadowPseudoId().isEmpty());
+ ASSERT(!element->isVTTElement());
return resolver;
}
treeScope = treeScope->parentTreeScope();
if (!treeScope)
return nullptr;
- if (element.shadowPseudoId().isEmpty() && !element.isVTTElement())
+ if (element->shadowPseudoId().isEmpty() && !element->isVTTElement())
return nullptr;
return treeScope->scopedStyleResolver();
}
-void StyleResolver::matchHostRules(const Element& element, ElementRuleCollector& collector, bool includeEmptyRules)
-{
- ElementShadow* shadow = element.shadow();
- if (!shadow)
- return;
-
- for (ShadowRoot* shadowRoot = shadow->oldestShadowRoot(); shadowRoot; shadowRoot = shadowRoot->youngerShadowRoot()) {
- if (!shadowRoot->numberOfStyles())
- continue;
- if (ScopedStyleResolver* resolver = shadowRoot->scopedStyleResolver()) {
- collector.clearMatchedRules();
- resolver->collectMatchingShadowHostRules(collector, includeEmptyRules);
- collector.sortAndTransferMatchedRules();
- collector.finishAddingAuthorRulesForTreeScope();
- }
- }
-}
-
-void StyleResolver::matchElementScopeRules(ScopedStyleResolver& elementScopeResolver, ElementRuleCollector& collector, bool includeEmptyRules)
+void StyleResolver::matchAuthorRules(Element* element, ElementRuleCollector& collector, bool includeEmptyRules)
{
collector.clearMatchedRules();
- elementScopeResolver.collectMatchingAuthorRules(collector, includeEmptyRules);
- elementScopeResolver.collectMatchingTreeBoundaryCrossingRules(collector, includeEmptyRules);
- collector.sortAndTransferMatchedRules();
- collector.finishAddingAuthorRulesForTreeScope();
-}
-
-void StyleResolver::matchScopedRules(const Element& element, ElementRuleCollector& collector, bool includeEmptyRules)
-{
- // Match rules from treeScopes in the reverse tree-of-trees order, since the
- // cascading order for normal rules is such that when comparing rules from
- // different shadow trees, the rule from the tree which comes first in the
- // tree-of-trees order wins. From other treeScopes than the element's own
- // scope, only tree-boundary-crossing rules may match.
-
- ScopedStyleResolver* elementScopeResolver = scopedResolverFor(element);
- bool matchElementScopeDone = !elementScopeResolver;
- for (auto it = m_treeBoundaryCrossingScopes.rbegin(); it != m_treeBoundaryCrossingScopes.rend(); ++it) {
- const TreeScope& scope = (*it)->treeScope();
- ScopedStyleResolver* resolver = scope.scopedStyleResolver();
- ASSERT(resolver);
+ CascadeOrder cascadeOrder = 0;
+ WillBeHeapVector<RawPtrWillBeMember<ScopedStyleResolver>, 8> resolversInShadowTree;
+ collectScopedResolversForHostedShadowTrees(element, resolversInShadowTree);
- if (!matchElementScopeDone && scope.isInclusiveAncestorOf(element.treeScope())) {
+ // Apply :host and :host-context rules from inner scopes.
+ for (int j = resolversInShadowTree.size() - 1; j >= 0; --j)
+ resolversInShadowTree.at(j)->collectMatchingShadowHostRules(collector, includeEmptyRules, ++cascadeOrder);
- matchElementScopeDone = true;
+ // Apply normal rules from element scope.
+ if (ScopedStyleResolver* resolver = scopedResolverFor(element))
+ resolver->collectMatchingAuthorRules(collector, includeEmptyRules, ++cascadeOrder);
- // At this point, the iterator has either encountered the scope for the element
- // itself (if that scope has boundary-crossing rules), or the iterator has moved
- // to a scope which appears before the element's scope in the tree-of-trees order.
- // Try to match all rules from the element's scope.
-
- matchElementScopeRules(*elementScopeResolver, collector, includeEmptyRules);
- if (resolver == elementScopeResolver) {
- // Boundary-crossing rules already collected in matchElementScopeRules.
- continue;
- }
- }
-
- collector.clearMatchedRules();
- resolver->collectMatchingTreeBoundaryCrossingRules(collector, includeEmptyRules);
- collector.sortAndTransferMatchedRules();
- collector.finishAddingAuthorRulesForTreeScope();
- }
-
- if (!matchElementScopeDone)
- matchElementScopeRules(*elementScopeResolver, collector, includeEmptyRules);
-}
-
-void StyleResolver::matchAuthorRules(const Element& element, ElementRuleCollector& collector, bool includeEmptyRules)
-{
- matchHostRules(element, collector, includeEmptyRules);
- matchScopedRules(element, collector, includeEmptyRules);
+ // Apply /deep/ and ::shadow rules from outer scopes, and ::content from inner.
+ m_treeBoundaryCrossingRules.collectTreeBoundaryCrossingRules(element, collector, includeEmptyRules);
+ collector.sortAndTransferMatchedRules();
}
void StyleResolver::matchUARules(ElementRuleCollector& collector)
@@ -487,15 +448,9 @@ void StyleResolver::matchAllRules(StyleResolverState& state, ElementRuleCollecto
}
}
- matchAuthorRules(*state.element(), collector, false);
+ matchAuthorRules(state.element(), collector, false);
if (state.element()->isStyledElement()) {
- // TODO(rune@opera.com): Adding style attribute rules here is probably too late
- // when you have shadow piercing combinators. When we don't have piercing combinators,
- // the style attribute always belong to the outermost scope whose rules apply to
- // the element. Thus, applying inline style here is correct. Fixing this for piercing
- // combinators means moving the code below into matchElementScopeRules and _not_
- // invoking it for pseudo style requests.
if (state.element()->inlineStyle()) {
// Inline style is immutable as long as there is no CSSOM wrapper.
bool isInlineStyleCacheable = !state.element()->inlineStyle()->isMutable();
@@ -782,7 +737,7 @@ bool StyleResolver::pseudoStyleForElementInternal(Element& element, const Pseudo
collector.setPseudoStyleRequest(pseudoStyleRequest);
matchUARules(collector);
- matchAuthorRules(*state.element(), collector, false);
+ matchAuthorRules(state.element(), collector, false);
collector.finishAddingAuthorRulesForTreeScope();
if (!collector.matchedResult().hasMatchedProperties())
@@ -933,7 +888,7 @@ void StyleResolver::collectPseudoRulesForElement(Element* element, ElementRuleCo
if (rulesToInclude & AuthorCSSRules) {
collector.setSameOriginOnly(!(rulesToInclude & CrossOriginCSSRules));
- matchAuthorRules(*element, collector, rulesToInclude & EmptyCSSRules);
+ matchAuthorRules(element, collector, rulesToInclude & EmptyCSSRules);
}
}
@@ -983,25 +938,10 @@ bool StyleResolver::applyAnimatedProperties(StyleResolverState& state, const Ele
return true;
}
-static void collectScopedResolversForHostedShadowTrees(const Element& element, WillBeHeapVector<RawPtrWillBeMember<ScopedStyleResolver>, 8>& resolvers)
-{
- ElementShadow* shadow = element.shadow();
- if (!shadow)
- return;
-
- // Adding scoped resolver for active shadow roots for shadow host styling.
- for (ShadowRoot* shadowRoot = shadow->youngestShadowRoot(); shadowRoot; shadowRoot = shadowRoot->olderShadowRoot()) {
- if (shadowRoot->numberOfStyles() > 0) {
- if (ScopedStyleResolver* resolver = shadowRoot->scopedStyleResolver())
- resolvers.append(resolver);
- }
- }
-}
-
StyleRuleKeyframes* StyleResolver::findKeyframesRule(const Element* element, const AtomicString& animationName)
{
WillBeHeapVector<RawPtrWillBeMember<ScopedStyleResolver>, 8> resolvers;
- collectScopedResolversForHostedShadowTrees(*element, resolvers);
+ collectScopedResolversForHostedShadowTrees(element, resolvers);
if (ScopedStyleResolver* scopedResolver = element->treeScope().scopedStyleResolver())
resolvers.append(scopedResolver);
@@ -1543,7 +1483,7 @@ DEFINE_TRACE(StyleResolver)
visitor->trace(m_siblingRuleSet);
visitor->trace(m_uncommonAttributeRuleSet);
visitor->trace(m_watchedSelectorsRules);
- visitor->trace(m_treeBoundaryCrossingScopes);
+ visitor->trace(m_treeBoundaryCrossingRules);
visitor->trace(m_styleResourceLoader);
visitor->trace(m_styleSharingLists);
visitor->trace(m_pendingStyleSheets);
« no previous file with comments | « Source/core/css/resolver/StyleResolver.h ('k') | Source/core/dom/DocumentOrderedList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698