Searched defs:applyAuthorStyles (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
H A DElementShadow.cpp118 bool applyAuthorStyles = resolveApplyAuthorStyles(); local
120 if (m_applyAuthorStyles == applyAuthorStyles)
123 m_applyAuthorStyles = applyAuthorStyles;
141 if (shadowRoot->applyAuthorStyles())
H A DElementShadow.h58 bool applyAuthorStyles() const { return m_applyAuthorStyles; } function in class:WebCore::ElementShadow
H A DShadowRoot.h63 bool applyAuthorStyles() const { return m_applyAuthorStyles; } function in class:WebCore::FINAL
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DScopedStyleResolver.cpp149 bool applyAuthorStyles = treeScope->applyAuthorStyles(); local
152 if (scopedResolver->treeScope() == treeScope || (applyAuthorStyles && scopedResolver->treeScope() == document))
385 void ScopedStyleResolver::matchAuthorRules(ElementRuleCollector& collector, bool includeEmptyRules, bool applyAuthorStyles) argument
389 collectMatchingAuthorRules(collector, includeEmptyRules, applyAuthorStyles, ignoreCascadeScope);
393 void ScopedStyleResolver::collectMatchingAuthorRules(ElementRuleCollector& collector, bool includeEmptyRules, bool applyAuthorStyles, CascadeScope cascadeScope, CascadeOrder cascadeOrder) argument
401 if (!applyAuthorStyles)
409 MatchRequest matchRequest(m_authorStyle.get(), includeEmptyRules, scopingNode, applyAuthorStyles);
H A DStyleResolver.cpp327 return element->treeScope()->applyAuthorStyles() || (element->shadow() && element->shadow()->applyAuthorStyles());
337 bool applyAuthorStyles = applyAuthorStylesOf(element); local
340 resolversInShadowTree.at(j)->collectMatchingAuthorRules(collector, includeEmptyRules, applyAuthorStyles, cascadeScope, cascadeOrder++);
344 resolvers.at(i)->collectMatchingAuthorRules(collector, includeEmptyRules, applyAuthorStyles, cascadeScope--, cascadeOrder);
372 bool applyAuthorStyles = applyAuthorStylesOf(element);
378 resolvers.at(i)->collectMatchingAuthorRules(collector, includeEmptyRules, applyAuthorStyles, cascadeScope--);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DTreeScope.cpp326 bool TreeScope::applyAuthorStyles() const function in class:WebCore::TreeScope
328 return !rootNode()->isShadowRoot() || toShadowRoot(rootNode())->applyAuthorStyles();

Completed in 105 milliseconds