void RuleFeatureSet::collectFeaturesFromRuleData(const RuleData& ruleData) { FeatureMetadata metadata; InvalidationSetMode mode = UseSubtreeStyleChange; if (m_targetedStyleRecalcEnabled) mode = updateInvalidationSets(ruleData.selector()); collectFeaturesFromSelector(ruleData.selector(), metadata, mode); m_metadata.add(metadata); if (metadata.foundSiblingSelector) siblingRules.append(RuleFeature(ruleData.rule(), ruleData.selectorIndex(), ruleData.hasDocumentSecurityOrigin())); if (ruleData.containsUncommonAttributeSelector()) uncommonAttributeRules.append(RuleFeature(ruleData.rule(), ruleData.selectorIndex(), ruleData.hasDocumentSecurityOrigin())); }
void RuleFeatureSet::collectFeatures(const RuleData& ruleData) { SelectorFeatures selectorFeatures; recursivelyCollectFeaturesFromSelector(selectorFeatures, *ruleData.selector()); if (selectorFeatures.hasSiblingSelector) siblingRules.append(RuleFeature(ruleData.rule(), ruleData.selectorIndex(), ruleData.hasDocumentSecurityOrigin())); if (ruleData.containsUncommonAttributeSelector()) uncommonAttributeRules.append(RuleFeature(ruleData.rule(), ruleData.selectorIndex(), ruleData.hasDocumentSecurityOrigin())); for (auto* className : selectorFeatures.classesMatchingAncestors) { auto addResult = ancestorClassRules.ensure(className, [] { return std::make_unique<Vector<RuleFeature>>(); }); addResult.iterator->value->append(RuleFeature(ruleData.rule(), ruleData.selectorIndex(), ruleData.hasDocumentSecurityOrigin())); } for (auto* selector : selectorFeatures.attributeSelectorsMatchingAncestors) { // Hashing by attributeCanonicalLocalName makes this HTML specific. auto addResult = ancestorAttributeRulesForHTML.ensure(selector->attributeCanonicalLocalName().impl(), [] { return std::make_unique<AttributeRules>(); }); auto& rules = *addResult.iterator->value; rules.features.append(RuleFeature(ruleData.rule(), ruleData.selectorIndex(), ruleData.hasDocumentSecurityOrigin())); // Deduplicate selectors. rules.selectors.add(makeAttributeSelectorKey(*selector), selector); } }
inline bool ElementRuleCollector::ruleMatches(const RuleData& ruleData, const ContainerNode* scope, SelectorChecker::ContextFlags contextFlags) { SelectorChecker selectorChecker(m_context.element()->document(), m_mode); SelectorChecker::SelectorCheckingContext context(ruleData.selector(), m_context.element()); context.elementStyle = m_style.get(); context.scope = scope; context.contextFlags = contextFlags; return selectorChecker.match(context); }
static void collectFeaturesFromRuleData(RuleFeatureSet& features, const RuleData& ruleData) { bool hasSiblingSelector; features.collectFeaturesFromSelector(*ruleData.selector(), hasSiblingSelector); if (hasSiblingSelector) features.siblingRules.append(RuleFeature(ruleData.rule(), ruleData.selectorIndex(), ruleData.hasDocumentSecurityOrigin())); if (ruleData.containsUncommonAttributeSelector()) features.uncommonAttributeRules.append(RuleFeature(ruleData.rule(), ruleData.selectorIndex(), ruleData.hasDocumentSecurityOrigin())); }
void RuleFeatureSet::collectFeaturesFromRuleData(const RuleData& ruleData) { FeatureMetadata metadata; bool selectorUsesClassInvalidationSet = false; if (m_targetedStyleRecalcEnabled) selectorUsesClassInvalidationSet = updateClassInvalidationSets(ruleData.selector()); SelectorFeatureCollectionMode collectionMode; if (selectorUsesClassInvalidationSet) collectionMode = DontProcessClasses; else collectionMode = ProcessClasses; collectFeaturesFromSelector(ruleData.selector(), metadata, collectionMode); m_metadata.add(metadata); if (metadata.foundSiblingSelector) siblingRules.append(RuleFeature(ruleData.rule(), ruleData.selectorIndex(), ruleData.hasDocumentSecurityOrigin())); if (ruleData.containsUncommonAttributeSelector()) uncommonAttributeRules.append(RuleFeature(ruleData.rule(), ruleData.selectorIndex(), ruleData.hasDocumentSecurityOrigin())); }
inline bool ElementRuleCollector::ruleMatches(const RuleData& ruleData, const ContainerNode* scope, PseudoId& dynamicPseudo, SelectorChecker::BehaviorAtBoundary behaviorAtBoundary) { // They can't match because the fast path uses a pool of tag/class/ids, collected from // elements in that tree and those will never match the host, since it's in a different pool. // So when adding scoped rules to RuleSet, RuleCanUseFastCheckSelector is not used. if (ruleData.hasFastCheckableSelector()) { // We know this selector does not include any pseudo elements. if (m_pseudoStyleRequest.pseudoId != NOPSEUDO) return false; // We know a sufficiently simple single part selector matches simply because we found it from the rule hash. // This is limited to HTML only so we don't need to check the namespace. ASSERT(m_context.element()); if (ruleData.hasRightmostSelectorMatchingHTMLBasedOnRuleHash() && m_context.element()->isHTMLElement()) { if (!ruleData.hasMultipartSelector()) return true; } if (ruleData.selector()->m_match == CSSSelector::Tag && !SelectorChecker::tagMatches(*m_context.element(), ruleData.selector()->tagQName())) return false; SelectorCheckerFastPath selectorCheckerFastPath(ruleData.selector(), *m_context.element()); if (!selectorCheckerFastPath.matchesRightmostAttributeSelector()) return false; return selectorCheckerFastPath.matches(); } // Slow path. SelectorChecker selectorChecker(m_context.element()->document(), m_mode); SelectorChecker::SelectorCheckingContext context(ruleData.selector(), m_context.element(), SelectorChecker::VisitedMatchEnabled); context.elementStyle = m_style.get(); context.scope = scope; context.pseudoId = m_pseudoStyleRequest.pseudoId; context.scrollbar = m_pseudoStyleRequest.scrollbar; context.scrollbarPart = m_pseudoStyleRequest.scrollbarPart; context.behaviorAtBoundary = behaviorAtBoundary; SelectorChecker::Match match = selectorChecker.match(context, dynamicPseudo, DOMSiblingTraversalStrategy()); if (match != SelectorChecker::SelectorMatches) return false; if (m_pseudoStyleRequest.pseudoId != NOPSEUDO && m_pseudoStyleRequest.pseudoId != dynamicPseudo) return false; return true; }
inline bool ElementRuleCollector::ruleMatches(const RuleData& ruleData, const ContainerNode* scope, PseudoId& dynamicPseudo) { const StyleResolver::State& state = m_state; if (ruleData.hasFastCheckableSelector()) { // We know this selector does not include any pseudo elements. if (m_pseudoStyleRequest.pseudoId != NOPSEUDO) return false; // We know a sufficiently simple single part selector matches simply because we found it from the rule hash. // This is limited to HTML only so we don't need to check the namespace. if (ruleData.hasRightmostSelectorMatchingHTMLBasedOnRuleHash() && state.element()->isHTMLElement()) { if (!ruleData.hasMultipartSelector()) return true; } if (ruleData.selector()->m_match == CSSSelector::Tag && !SelectorChecker::tagMatches(state.element(), ruleData.selector()->tagQName())) return false; SelectorCheckerFastPath selectorCheckerFastPath(ruleData.selector(), state.element()); if (!selectorCheckerFastPath.matchesRightmostAttributeSelector()) return false; return selectorCheckerFastPath.matches(); } // Slow path. SelectorChecker selectorChecker(document(), m_mode); SelectorChecker::SelectorCheckingContext context(ruleData.selector(), state.element(), SelectorChecker::VisitedMatchEnabled); context.elementStyle = state.style(); context.scope = scope; context.pseudoId = m_pseudoStyleRequest.pseudoId; context.scrollbar = m_pseudoStyleRequest.scrollbar; context.scrollbarPart = m_pseudoStyleRequest.scrollbarPart; context.behaviorAtBoundary = m_behaviorAtBoundary; SelectorChecker::Match match = selectorChecker.match(context, dynamicPseudo); if (match != SelectorChecker::SelectorMatches) return false; if (m_pseudoStyleRequest.pseudoId != NOPSEUDO && m_pseudoStyleRequest.pseudoId != dynamicPseudo) return false; return true; }
void RuleFeatureSet::collectFeaturesFromRuleData(const RuleData& ruleData) { updateInvalidationSets(ruleData); FeatureMetadata metadata; collectFeaturesFromSelector(ruleData.selector(), metadata); m_metadata.add(metadata); if (metadata.foundSiblingSelector) siblingRules.append(RuleFeature(ruleData.rule(), ruleData.selectorIndex(), ruleData.hasDocumentSecurityOrigin())); if (ruleData.containsUncommonAttributeSelector()) uncommonAttributeRules.append(RuleFeature(ruleData.rule(), ruleData.selectorIndex(), ruleData.hasDocumentSecurityOrigin())); }
void RuleFeatureSet::updateInvalidationSets(const RuleData& ruleData) { InvalidationSetFeatures features; auto result = extractInvalidationSetFeatures(ruleData.selector(), features, false); if (result.first) { features.forceSubtree = result.second == ForceSubtree; addFeaturesToInvalidationSets(*result.first, features); } // If any ::before and ::after rules specify 'content: attr(...)', we // need to create invalidation sets for those attributes. if (features.hasBeforeOrAfter) updateInvalidationSetsForContentAttribute(ruleData); }
inline bool ElementRuleCollector::ruleMatches(const RuleData& ruleData, const ContainerNode* scope, SelectorChecker::MatchResult* result) { SelectorChecker selectorChecker(m_context.element()->document(), m_mode); SelectorChecker::SelectorCheckingContext context(ruleData.selector(), m_context.element(), SelectorChecker::VisitedMatchEnabled); context.elementStyle = m_style.get(); context.scope = scope; context.pseudoId = m_pseudoStyleRequest.pseudoId; context.scrollbar = m_pseudoStyleRequest.scrollbar; context.scrollbarPart = m_pseudoStyleRequest.scrollbarPart; context.isUARule = m_matchingUARules; context.scopeContainsLastMatchedElement = m_scopeContainsLastMatchedElement; SelectorChecker::Match match = selectorChecker.match(context, DOMSiblingTraversalStrategy(), result); if (match != SelectorChecker::SelectorMatches) return false; if (m_pseudoStyleRequest.pseudoId != NOPSEUDO && m_pseudoStyleRequest.pseudoId != result->dynamicPseudo) return false; return true; }
inline bool ElementRuleCollector::ruleMatches(const RuleData& ruleData) { SelectorChecker checker(*m_context.element()); bool matched = checker.match(ruleData.selector()); if (checker.matchedAttributeSelector()) m_style->setUnique(); if (checker.matchedFocusSelector()) m_style->setAffectedByFocus(); if (checker.matchedHoverSelector()) m_style->setAffectedByHover(); if (checker.matchedActiveSelector()) m_style->setAffectedByActive(); return matched; }
static void collectFeaturesFromRuleData(RuleFeatureSet& features, const RuleData& ruleData) { bool foundSiblingSelector = false; for (const CSSSelector* selector = ruleData.selector(); selector; selector = selector->tagHistory()) { features.collectFeaturesFromSelector(selector); if (const CSSSelectorList* selectorList = selector->selectorList()) { for (const CSSSelector* subSelector = selectorList->first(); subSelector; subSelector = CSSSelectorList::next(subSelector)) { if (!foundSiblingSelector && selector->isSiblingSelector()) foundSiblingSelector = true; features.collectFeaturesFromSelector(subSelector); } } else if (!foundSiblingSelector && selector->isSiblingSelector()) foundSiblingSelector = true; } if (foundSiblingSelector) features.siblingRules.append(RuleFeature(ruleData.rule(), ruleData.selectorIndex(), ruleData.hasDocumentSecurityOrigin())); if (ruleData.containsUncommonAttributeSelector()) features.uncommonAttributeRules.append(RuleFeature(ruleData.rule(), ruleData.selectorIndex(), ruleData.hasDocumentSecurityOrigin())); }
inline bool ElementRuleCollector::ruleMatches(const RuleData& ruleData, unsigned& specificity) { // We know a sufficiently simple single part selector matches simply because we found it from the rule hash when filtering the RuleSet. // This is limited to HTML only so we don't need to check the namespace (because of tag name match). MatchBasedOnRuleHash matchBasedOnRuleHash = ruleData.matchBasedOnRuleHash(); if (matchBasedOnRuleHash != MatchBasedOnRuleHash::None && m_element.isHTMLElement()) { ASSERT_WITH_MESSAGE(m_pseudoStyleRequest.pseudoId == NOPSEUDO, "If we match based on the rule hash while collecting for a particular pseudo element ID, we would add incorrect rules for that pseudo element ID. We should never end in ruleMatches() with a pseudo element if the ruleData cannot match any pseudo element."); switch (matchBasedOnRuleHash) { case MatchBasedOnRuleHash::None: ASSERT_NOT_REACHED(); break; case MatchBasedOnRuleHash::Universal: specificity = 0; break; case MatchBasedOnRuleHash::ClassA: specificity = static_cast<unsigned>(SelectorSpecificityIncrement::ClassA); break; case MatchBasedOnRuleHash::ClassB: specificity = static_cast<unsigned>(SelectorSpecificityIncrement::ClassB); break; case MatchBasedOnRuleHash::ClassC: specificity = static_cast<unsigned>(SelectorSpecificityIncrement::ClassC); break; } return true; } #if ENABLE(CSS_SELECTOR_JIT) void* compiledSelectorChecker = ruleData.compiledSelectorCodeRef().code().executableAddress(); if (!compiledSelectorChecker && ruleData.compilationStatus() == SelectorCompilationStatus::NotCompiled) { JSC::VM& vm = m_element.document().scriptExecutionContext()->vm(); SelectorCompilationStatus compilationStatus; JSC::MacroAssemblerCodeRef compiledSelectorCodeRef; compilationStatus = SelectorCompiler::compileSelector(ruleData.selector(), &vm, SelectorCompiler::SelectorContext::RuleCollector, compiledSelectorCodeRef); ruleData.setCompiledSelector(compilationStatus, compiledSelectorCodeRef); compiledSelectorChecker = ruleData.compiledSelectorCodeRef().code().executableAddress(); } if (compiledSelectorChecker && ruleData.compilationStatus() == SelectorCompilationStatus::SimpleSelectorChecker) { SelectorCompiler::RuleCollectorSimpleSelectorChecker selectorChecker = SelectorCompiler::ruleCollectorSimpleSelectorCheckerFunction(compiledSelectorChecker, ruleData.compilationStatus()); #if !ASSERT_MSG_DISABLED unsigned ignoreSpecificity; ASSERT_WITH_MESSAGE(!selectorChecker(&m_element, &ignoreSpecificity) || m_pseudoStyleRequest.pseudoId == NOPSEUDO, "When matching pseudo elements, we should never compile a selector checker without context unless it cannot match anything."); #endif #if CSS_SELECTOR_JIT_PROFILING ruleData.compiledSelectorUsed(); #endif bool selectorMatches = selectorChecker(&m_element, &specificity); if (selectorMatches && ruleData.containsUncommonAttributeSelector()) m_didMatchUncommonAttributeSelector = true; return selectorMatches; } #endif // ENABLE(CSS_SELECTOR_JIT) SelectorChecker::CheckingContext context(m_mode); context.pseudoId = m_pseudoStyleRequest.pseudoId; context.scrollbar = m_pseudoStyleRequest.scrollbar; context.scrollbarPart = m_pseudoStyleRequest.scrollbarPart; bool selectorMatches; #if ENABLE(CSS_SELECTOR_JIT) if (compiledSelectorChecker) { ASSERT(ruleData.compilationStatus() == SelectorCompilationStatus::SelectorCheckerWithCheckingContext); SelectorCompiler::RuleCollectorSelectorCheckerWithCheckingContext selectorChecker = SelectorCompiler::ruleCollectorSelectorCheckerFunctionWithCheckingContext(compiledSelectorChecker, ruleData.compilationStatus()); #if CSS_SELECTOR_JIT_PROFILING ruleData.compiledSelectorUsed(); #endif selectorMatches = selectorChecker(&m_element, &context, &specificity); } else #endif // ENABLE(CSS_SELECTOR_JIT) { auto* selector = ruleData.selector(); if (m_isMatchingSlottedPseudoElements) { selector = findSlottedPseudoElementSelector(ruleData.selector()); if (!selector) return false; } // Slow path. SelectorChecker selectorChecker(m_element.document()); selectorMatches = selectorChecker.match(*selector, m_element, context, specificity); } if (ruleData.containsUncommonAttributeSelector()) { if (selectorMatches || context.pseudoIDSet) m_didMatchUncommonAttributeSelector = true; } m_matchedPseudoElementIds.merge(context.pseudoIDSet); m_styleRelations.appendVector(context.styleRelations); return selectorMatches; }
inline bool ElementRuleCollector::ruleMatches(const RuleData& ruleData, PseudoId& dynamicPseudo) { bool fastCheckableSelector = ruleData.hasFastCheckableSelector(); if (fastCheckableSelector) { // We know this selector does not include any pseudo elements. if (m_pseudoStyleRequest.pseudoId != NOPSEUDO) return false; // We know a sufficiently simple single part selector matches simply because we found it from the rule hash. // This is limited to HTML only so we don't need to check the namespace. if (ruleData.hasRightmostSelectorMatchingHTMLBasedOnRuleHash() && m_element.isHTMLElement()) { if (!ruleData.hasMultipartSelector()) return true; } } #if ENABLE(CSS_SELECTOR_JIT) void* compiledSelectorChecker = ruleData.compiledSelectorCodeRef().code().executableAddress(); if (!compiledSelectorChecker && ruleData.compilationStatus() == SelectorCompilationStatus::NotCompiled) { JSC::VM* vm = m_element.document().scriptExecutionContext()->vm(); SelectorCompilationStatus compilationStatus; JSC::MacroAssemblerCodeRef compiledSelectorCodeRef; compilationStatus = SelectorCompiler::compileSelector(ruleData.selector(), vm, SelectorCompiler::SelectorContext::RuleCollector, compiledSelectorCodeRef); ruleData.setCompiledSelector(compilationStatus, compiledSelectorCodeRef); compiledSelectorChecker = ruleData.compiledSelectorCodeRef().code().executableAddress(); } if (compiledSelectorChecker) { if (m_pseudoStyleRequest.pseudoId != NOPSEUDO) return false; if (ruleData.compilationStatus() == SelectorCompilationStatus::SimpleSelectorChecker) { SelectorCompiler::SimpleSelectorChecker selectorChecker = SelectorCompiler::simpleSelectorCheckerFunction(compiledSelectorChecker, ruleData.compilationStatus()); return selectorChecker(&m_element); } ASSERT(ruleData.compilationStatus() == SelectorCompilationStatus::SelectorCheckerWithCheckingContext); SelectorCompiler::SelectorCheckerWithCheckingContext selectorChecker = SelectorCompiler::selectorCheckerFunctionWithCheckingContext(compiledSelectorChecker, ruleData.compilationStatus()); SelectorCompiler::CheckingContext context; context.elementStyle = m_style; context.resolvingMode = m_mode; return selectorChecker(&m_element, &context); } #endif // ENABLE(CSS_SELECTOR_JIT) if (fastCheckableSelector) { if (ruleData.selector()->m_match == CSSSelector::Tag && !SelectorChecker::tagMatches(&m_element, ruleData.selector()->tagQName())) return false; SelectorCheckerFastPath selectorCheckerFastPath(ruleData.selector(), &m_element); if (!selectorCheckerFastPath.matchesRightmostAttributeSelector()) return false; return selectorCheckerFastPath.matches(); } // Slow path. SelectorChecker selectorChecker(m_element.document(), m_mode); SelectorChecker::SelectorCheckingContext context(ruleData.selector(), &m_element, SelectorChecker::VisitedMatchEnabled); context.elementStyle = m_style; context.pseudoId = m_pseudoStyleRequest.pseudoId; context.scrollbar = m_pseudoStyleRequest.scrollbar; context.scrollbarPart = m_pseudoStyleRequest.scrollbarPart; if (!selectorChecker.match(context, dynamicPseudo)) return false; if (m_pseudoStyleRequest.pseudoId != NOPSEUDO && m_pseudoStyleRequest.pseudoId != dynamicPseudo) return false; return true; }