Home
last modified time | relevance | path

Searched refs:styleRule (Results 1 – 10 of 10) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
DStylesSidebarPane.js553 section.styleRule.style = nodeComputedStyle;
554styleRule = { section: section, style: section.styleRule.style, computedStyle: section.computedSty… variable
555 …isAttribute: section.styleRule.isAttribute, isInherited: section.styleRule.isInherited, parentNode…
556 styleRules.push(styleRule);
650 var styleRule = styleRules[i];
651 if (styleRule.computedStyle || styleRule.isStyleSeparator)
653 if (styleRule.section && styleRule.section.noAffect)
656 styleRule.usedProperties = {};
658 var style = styleRule.style;
666 … if (styleRule.isInherited && !WebInspector.CSSMetadata.isPropertyInherited(property.name))
[all …]
/external/chromium_org/third_party/WebKit/Source/core/css/invalidation/
DStyleSheetInvalidationAnalysis.cpp85 const StyleRule* styleRule = toStyleRule(rule); in hasDistributedRule() local
86 const CSSSelectorList& selectorList = styleRule->selectorList(); in hasDistributedRule()
171 StyleRule* styleRule = toStyleRule(rule); in analyzeStyleSheet() local
172 if (!determineSelectorScopes(styleRule->selectorList(), m_idScopes, m_classScopes)) { in analyzeStyleSheet()
/external/chromium_org/third_party/WebKit/Source/core/css/
DElementRuleCollector.cpp194 CSSRule* ElementRuleCollector::findStyleRule(CSSRuleCollection* cssRules, StyleRule* styleRule) in findStyleRule() argument
204 if (cssStyleRule->styleRule() == styleRule) in findStyleRule()
208 result = findStyleRule(cssImportRule->styleSheet(), styleRule); in findStyleRule()
210 result = findStyleRule(nestedRuleList(cssRule), styleRule); in findStyleRule()
DCSSStyleRule.cpp42 CSSStyleRule::CSSStyleRule(StyleRule* styleRule, CSSStyleSheet* parent) in CSSStyleRule() argument
44 , m_styleRule(styleRule) in CSSStyleRule()
DRuleSet.cpp279 StyleRule* styleRule = toStyleRule(rule); in addChildRules() local
281 const CSSSelectorList& selectorList = styleRule->selectorList(); in addChildRules()
284 … m_treeBoundaryCrossingRules.append(MinimalRuleData(styleRule, selectorIndex, addRuleFlags)); in addChildRules()
286 … m_shadowDistributedRules.append(MinimalRuleData(styleRule, selectorIndex, addRuleFlags)); in addChildRules()
288 addRule(styleRule, selectorIndex, addRuleFlags); in addChildRules()
DCSSFontFaceRule.h49 StyleRuleFontFace* styleRule() const { return m_fontFaceRule.get(); } in styleRule() function
DCSSStyleRule.h53 StyleRule* styleRule() const { return m_styleRule.get(); } in styleRule() function
/external/chromium_org/third_party/WebKit/Source/core/page/
DPageSerializer.cpp283 … retrieveResourcesForProperties(&toCSSFontFaceRule(rule)->styleRule()->properties(), document); in serializeCSSStyleSheet()
285 … retrieveResourcesForProperties(&toCSSStyleRule(rule)->styleRule()->properties(), document); in serializeCSSStyleSheet()
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorStyleSheet.cpp1075 CSSStyleRule* styleRule = InspectorCSSAgent::asCSSStyleRule(rule); in addRule() local
1076 if (!styleRule) { in addRule()
1094 return styleRule; in addRule()
1203 const CSSSelectorList& selectorList = rule->styleRule()->selectorList(); in buildObjectForSelectorList()
1408 CSSStyleRule* styleRule = InspectorCSSAgent::asCSSStyleRule(m_flatRules.at(i).get()); in ruleIndexByStyle() local
1409 if (styleRule && styleRule->style() == pageStyle) in ruleIndexByStyle()
DInspectorCSSAgent.cpp1301 const CSSSelectorList& selectorList = rule->styleRule()->selectorList(); in buildArrayForMatchedRuleList()