| Index: sky/engine/core/css/resolver/ScopedStyleResolver.cpp
|
| diff --git a/sky/engine/core/css/resolver/ScopedStyleResolver.cpp b/sky/engine/core/css/resolver/ScopedStyleResolver.cpp
|
| index 61b199586b44abca32952369c8962380139cfd44..d777e7f4c3f1589acefe184de1ac6a82dde4443d 100644
|
| --- a/sky/engine/core/css/resolver/ScopedStyleResolver.cpp
|
| +++ b/sky/engine/core/css/resolver/ScopedStyleResolver.cpp
|
| @@ -65,11 +65,11 @@ const StyleRuleKeyframes* ScopedStyleResolver::keyframeStylesForAnimation(String
|
| return nullptr;
|
| }
|
|
|
| -void ScopedStyleResolver::collectMatchingAuthorRules(ElementRuleCollector& collector, bool includeEmptyRules, CascadeScope cascadeScope, CascadeOrder cascadeOrder)
|
| +void ScopedStyleResolver::collectMatchingAuthorRules(ElementRuleCollector& collector, CascadeScope cascadeScope, CascadeOrder cascadeOrder)
|
| {
|
| RuleRange ruleRange = collector.matchedResult().ranges.authorRuleRange();
|
| for (size_t i = 0; i < m_authorStyleSheets.size(); ++i) {
|
| - MatchRequest matchRequest(&m_authorStyleSheets[i]->contents()->ruleSet(), includeEmptyRules, &m_scope->rootNode(), m_authorStyleSheets[i], i);
|
| + MatchRequest matchRequest(&m_authorStyleSheets[i]->contents()->ruleSet(), &m_scope->rootNode(), m_authorStyleSheets[i], i);
|
| collector.collectMatchingRules(matchRequest, ruleRange, cascadeScope, cascadeOrder);
|
| }
|
| }
|
|
|