OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:styleRule
(Results
1 - 12
of
12
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/css/
CSSFontFaceRule.h
45
StyleRuleFontFace*
styleRule
() const { return m_fontFaceRule.get(); }
CSSStyleRule.h
31
class
StyleRule
;
35
static PassRefPtr<CSSStyleRule> create(
StyleRule
* rule, CSSStyleSheet* sheet) { return adoptRef(new CSSStyleRule(rule, sheet)); }
49
StyleRule
*
styleRule
() const { return m_styleRule.get(); }
52
CSSStyleRule(
StyleRule
*, CSSStyleSheet*);
56
RefPtr<
StyleRule
> m_styleRule;
CSSStyleRule.cpp
30
#include "core/css/
StyleRule
.h"
42
CSSStyleRule::CSSStyleRule(
StyleRule
*
styleRule
, CSSStyleSheet* parent)
44
, m_styleRule(
styleRule
)
StyleInvalidationAnalysis.cpp
81
const
StyleRule
*
styleRule
= toStyleRule(rule);
82
const CSSSelectorList& selectorList =
styleRule
->selectorList();
116
case
StyleRule
::Import: // Whatever we import should do its own analysis, we don't need to invalidate the document here!
117
case
StyleRule
::Keyframes: // Keyframes never cause style invalidations and are handled during sheet insertion.
118
case
StyleRule
::Page: // Page rules apply only during printing, we force a full-recalc before printing.
121
case
StyleRule
::Media: // If the media rule doesn't apply, we could avoid recalc.
122
case
StyleRule
::FontFace: // If the fonts aren't in use, we could avoid recalc.
123
case
StyleRule
::Supports: // If we evaluated the supports-clause we could avoid recalc.
124
case
StyleRule
::Viewport: // If the viewport doesn't match, we could avoid recalcing
[
all
...]
InspectorCSSOMWrappers.cpp
79
m_styleRuleToCSSOMWrapperMap.add(toCSSStyleRule(cssRule)->
styleRule
(), toCSSStyleRule(cssRule));
110
CSSStyleRule* InspectorCSSOMWrappers::getWrapperForRuleInSheets(
StyleRule
* rule, StyleEngine* styleSheetCollection)
RuleSet.cpp
191
RuleData::RuleData(
StyleRule
* rule, unsigned selectorIndex, unsigned position, AddRuleFlags addRuleFlags)
299
void RuleSet::addRule(
StyleRule
* rule, unsigned selectorIndex, AddRuleFlags addRuleFlags)
365
StyleRule
*
styleRule
= toStyleRule(rule);
367
const CSSSelectorList& selectorList =
styleRule
->selectorList();
370
m_treeBoundaryCrossingRules.append(MinimalRuleData(
styleRule
, selectorIndex, addRuleFlags));
372
m_shadowDistributedRules.append(MinimalRuleData(
styleRule
, selectorIndex, addRuleFlags));
374
addRule(
styleRule
, selectorIndex, addRuleFlags);
412
void RuleSet::addStyleRule(
StyleRule
* rule, AddRuleFlags addRuleFlags)
CSSStyleSheet.cpp
33
#include "core/css/
StyleRule
.h"
140
StyleRule
*
styleRule
= toCSSStyleRule(cssRule)->
styleRule
();
144
if (m_contents->ruleAt(j) ==
styleRule
) {
ElementRuleCollector.cpp
198
static CSSStyleSheet* findStyleSheet(StyleEngine* styleEngine,
StyleRule
* rule)
209
if (cssStyleRule->
styleRule
() == rule)
216
void ElementRuleCollector::appendCSSOMWrapperForRule(
StyleRule
* rule)
305
StyleRule
* rule = ruleData.rule();
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
StylesSidebarPane.js
516
section.
styleRule
.style = nodeComputedStyle;
517
var
styleRule
= { section: section, style: section.
styleRule
.style, computedStyle: section.computedStyle, rule: section.rule, editable: !!(section.
styleRule
.style && section.
styleRule
.style.id),
518
isAttribute: section.
styleRule
.isAttribute, isInherited: section.
styleRule
.isInherited, parentNode: section.
styleRule
.parentNode };
519
styleRules.push(
styleRule
);
613
var
styleRule
= styleRules[i]
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorStyleSheet.cpp
43
#include "core/css/
StyleRule
.h"
[
all
...]
InspectorCSSAgent.cpp
44
#include "core/css/
StyleRule
.h"
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/page/
PageSerializer.cpp
43
#include "core/css/
StyleRule
.h"
275
retrieveResourcesForProperties(toCSSFontFaceRule(rule)->
styleRule
()->properties(), document);
277
retrieveResourcesForProperties(toCSSStyleRule(rule)->
styleRule
()->properties(), document);
Completed in 6257 milliseconds