HomeSort by relevance Sort by last modified time
    Searched defs:styleRule (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSFontFaceRule.h 49 StyleRuleFontFace* styleRule() const { return m_fontFaceRule.get(); }
CSSStyleRule.h 32 class StyleRule;
36 static PassRefPtrWillBeRawPtr<CSSStyleRule> create(StyleRule* rule, CSSStyleSheet* sheet)
53 StyleRule* styleRule() const { return m_styleRule.get(); }
58 CSSStyleRule(StyleRule*, CSSStyleSheet*);
62 RefPtrWillBeMember<StyleRule> m_styleRule;
RuleSet.cpp 126 RuleData::RuleData(StyleRule* rule, unsigned selectorIndex, unsigned position, AddRuleFlags addRuleFlags)
238 void RuleSet::addRule(StyleRule* rule, unsigned selectorIndex, AddRuleFlags addRuleFlags)
279 StyleRule* styleRule = toStyleRule(rule);
281 const CSSSelectorList& selectorList = styleRule->selectorList();
284 m_treeBoundaryCrossingRules.append(MinimalRuleData(styleRule, selectorIndex, addRuleFlags));
286 m_shadowDistributedRules.append(MinimalRuleData(styleRule, selectorIndex, addRuleFlags));
288 addRule(styleRule, selectorIndex, addRuleFlags);
326 void RuleSet::addStyleRule(StyleRule* rule, AddRuleFlags addRuleFlags)
  /external/chromium_org/third_party/WebKit/Source/core/css/invalidation/
StyleSheetInvalidationAnalysis.cpp 85 const StyleRule* styleRule = toStyleRule(rule);
86 const CSSSelectorList& selectorList = styleRule->selectorList();
115 case StyleRule::Import: // Whatever we import should do its own analysis, we don't need to invalidate the document here!
116 case StyleRule::Keyframes: // Keyframes never cause style invalidations and are handled during sheet insertion.
117 case StyleRule::Page: // Page rules apply only during printing, we force a full-recalc before printing.
120 case StyleRule::Media: // If the media rule doesn't apply, we could avoid recalc.
121 case StyleRule::FontFace: // If the fonts aren't in use, we could avoid recalc.
122 case StyleRule::Supports: // If we evaluated the supports-clause we could avoid recalc.
123 case StyleRule::Viewport: // If the viewport doesn't match, we could avoid recalcing
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
StylesSidebarPane.js 553 section.styleRule.style = nodeComputedStyle;
554 var styleRule = { section: section, style: section.styleRule.style, computedStyle: section.computedStyle, rule: section.rule, editable: !!(section.styleRule.style && section.styleRule.style.styleSheetId),
555 isAttribute: section.styleRule.isAttribute, isInherited: section.styleRule.isInherited, parentNode: section.styleRule.parentNode };
556 styleRules.push(styleRule);
650 var styleRule = styleRules[i]
    [all...]

Completed in 5047 milliseconds