HomeSort by relevance Sort by last modified time
    Searched refs:styleSheet (Results 1 - 25 of 37) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSImportRule.idl 25 readonly attribute CSSStyleSheet styleSheet;
CSSRule.cpp 61 CSSStyleSheet* styleSheet = parentStyleSheet();
62 return styleSheet ? styleSheet->contents()->parserContext() : strictCSSParserContext();
CSSImportRule.cpp 81 CSSStyleSheet* CSSImportRule::styleSheet() const
83 if (!m_importRule->styleSheet())
87 m_styleSheetCSSOMWrapper = CSSStyleSheet::create(m_importRule->styleSheet(), const_cast<CSSImportRule*>(this));
CSSRuleList.h 51 virtual CSSStyleSheet* styleSheet() const = 0;
73 virtual CSSStyleSheet* styleSheet() const OVERRIDE { return 0; }
114 virtual CSSStyleSheet* styleSheet() const OVERRIDE { return m_rule->parentStyleSheet(); }
CSSRule.h 65 void setParentStyleSheet(CSSStyleSheet* styleSheet)
68 m_parentStyleSheet = styleSheet;
CSSGroupingRule.cpp 71 CSSStyleSheet* styleSheet = parentStyleSheet();
72 CSSParserContext context(parserContext(), UseCounter::getFrom(styleSheet));
73 RefPtrWillBeRawPtr<StyleRuleBase> newRule = CSSParser::parseRule(context, styleSheet ? styleSheet->contents() : 0, ruleString);
CSSImportRule.h 48 CSSStyleSheet* styleSheet() const;
CSSKeyframesRule.cpp 125 CSSStyleSheet* styleSheet = parentStyleSheet();
126 CSSParserContext context(parserContext(), UseCounter::getFrom(styleSheet));
127 RefPtrWillBeRawPtr<StyleKeyframe> keyframe = CSSParser::parseKeyframeRule(context, styleSheet ? styleSheet->contents() : 0, ruleText);
StyleRuleImport.h 48 StyleSheetContents* styleSheet() const { return m_styleSheet.get(); }
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
MatchRequest.h 40 , styleSheet(cssSheet)
51 RawPtrWillBeMember<const CSSStyleSheet> styleSheet;
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
CSSParser.cpp 19 bool CSSParser::parseDeclaration(MutableStylePropertySet* propertySet, const String& declaration, CSSParserObserver* observer, StyleSheetContents* styleSheet)
21 return m_bisonParser.parseDeclaration(propertySet, declaration, observer, styleSheet);
29 PassRefPtrWillBeRawPtr<StyleRuleBase> CSSParser::parseRule(const CSSParserContext& context, StyleSheetContents* styleSheet, const String& rule)
31 return BisonCSSParser(context).parseRule(styleSheet, rule);
34 void CSSParser::parseSheet(const CSSParserContext& context, StyleSheetContents* styleSheet, const String& text, const TextPosition& startPosition, CSSParserObserver* observer, bool logErrors)
36 BisonCSSParser(context).parseSheet(styleSheet, text, startPosition, observer, logErrors);
39 bool CSSParser::parseValue(MutableStylePropertySet* declaration, CSSPropertyID propertyID, const String& string, bool important, CSSParserMode parserMode, StyleSheetContents* styleSheet)
41 return BisonCSSParser::parseValue(declaration, propertyID, string, important, parserMode, styleSheet);
69 PassRefPtrWillBeRawPtr<StyleKeyframe> CSSParser::parseKeyframeRule(const CSSParserContext& context, StyleSheetContents* styleSheet, const String& rule)
71 return BisonCSSParser(context).parseKeyframeRule(styleSheet, rule)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XSLImportRule.h 48 XSLStyleSheet* styleSheet() const { return m_styleSheet.get(); }
51 void setParentStyleSheet(XSLStyleSheet* styleSheet) { m_parentStyleSheet = styleSheet; }
XSLStyleSheetLibxslt.cpp 112 if (XSLStyleSheet* styleSheet = parentStyleSheet())
113 styleSheet->checkLoaded();
130 if (import->styleSheet())
131 import->styleSheet()->clearDocuments();
194 // We have to locate (by ID) the appropriate embedded stylesheet
246 // FIXME: Hook up error reporting for the stylesheet compilation process.
255 // xsltParseStylesheetDoc makes the document part of the stylesheet
273 for (XSLStyleSheet* styleSheet = this; styleSheet; styleSheet = styleSheet->parentStyleSheet())
    [all...]
XSLTProcessor.h 52 void setXSLStyleSheet(PassRefPtrWillBeRawPtr<XSLStyleSheet> styleSheet) { m_stylesheet = styleSheet; }
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorCSSAgent.cpp 46 #include "core/css/StyleSheet.h"
168 SetStyleSheetTextAction(InspectorStyleSheetBase* styleSheet, const String& text)
170 , m_styleSheet(styleSheet)
220 SetPropertyTextAction(InspectorStyleSheetBase* styleSheet, const InspectorCSSId& cssId, unsigned propertyIndex, const String& text, bool overwrite)
222 , m_styleSheet(styleSheet)
285 SetRuleSelectorAction(InspectorStyleSheet* styleSheet, const InspectorCSSId& cssId, const String& selector)
287 , m_styleSheet(styleSheet)
327 AddRuleAction(InspectorStyleSheet* styleSheet, const String& ruleText, const SourceRange& location)
329 , m_styleSheet(styleSheet)
504 void InspectorCSSAgent::didMutateRules(CSSStyleSheet* styleSheet)
    [all...]
InspectorInstrumentation.h 169 inline InstrumentingAgents* instrumentingAgentsFor(CSSStyleSheet* styleSheet)
171 return styleSheet ? instrumentingAgentsFor(styleSheet->ownerDocument()) : 0;
InspectorResourceContentLoader.cpp 124 CSSStyleSheet* styleSheet = *stylesheetIt;
125 if (styleSheet->isInline() || !styleSheet->contents()->loadCompleted())
127 String url = styleSheet->baseURL().string();
InspectorStyleSheet.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/audits/
AuditRules.js 207 WebInspector.AuditRules.CombineExternalResourcesRule.call(this, "page-externalcss", WebInspector.UIString("Combine external CSS"), WebInspector.resourceTypes.Stylesheet, "CSS", allowedPerDomain);
293 [WebInspector.resourceTypes.Stylesheet, WebInspector.resourceTypes.Image],
376 var styleSheet = styleSheets[i];
377 for (var curRule = 0; curRule < styleSheet.rules.length; ++curRule) {
378 var selectorText = styleSheet.rules[curRule].selectorText;
402 var styleSheet = styleSheets[i];
404 for (var curRule = 0; curRule < styleSheet.rules.length; ++curRule) {
405 var rule = styleSheet.rules[curRule];
410 totalStylesheetSize += styleSheet.rules.length;
416 var resource = WebInspector.resourceForURL(styleSheet.sourceURL)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
StyleEngine.cpp 167 const WillBeHeapVector<RefPtrWillBeMember<StyleSheet> >& StyleEngine::styleSheetsForStyleSheetList(TreeScope& treeScope)
252 // This method is called whenever a top-level stylesheet has finished loading.
271 void StyleEngine::modifiedStyleSheet(StyleSheet* sheet)
399 WillBeHeapVector<RefPtrWillBeMember<StyleSheet> > sheetsForList;
636 RefPtrWillBeRawPtr<CSSStyleSheet> styleSheet = nullptr;
645 styleSheet = StyleEngine::parseSheet(e, text, startPosition, createdByParser);
646 if (result.isNewEntry && isCacheableForStyleElement(*styleSheet->contents())) {
647 result.storedValue->value = styleSheet->contents();
648 m_sheetToTextCache.add(styleSheet->contents(), textContent);
655 styleSheet = CSSStyleSheet::createInline(contents, e, startPosition)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
PageSerializer.cpp 260 void PageSerializer::serializeCSSStyleSheet(CSSStyleSheet& styleSheet, const KURL& url)
263 for (unsigned i = 0; i < styleSheet.length(); ++i) {
264 CSSRule* rule = styleSheet.item(i);
268 if (i < styleSheet.length() - 1)
271 ASSERT(styleSheet.ownerDocument());
272 Document& document = *styleSheet.ownerDocument();
279 if (importRule->styleSheet())
280 serializeCSSStyleSheet(*importRule->styleSheet(), importURL);
290 WTF::TextEncoding textEncoding(styleSheet.contents()->charset());
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLStyleElement.cpp 174 if (CSSStyleSheet* styleSheet = sheet())
175 styleSheet->setDisabled(setDisabled);
HTMLLinkElement.cpp 305 RefPtrWillBeRawPtr<StyleSheet> removedSheet = sheet();
526 RefPtrWillBeRawPtr<StyleSheetContents> styleSheet = StyleSheetContents::create(href, parserContext);
530 m_sheet = CSSStyleSheet::create(styleSheet, m_owner);
534 styleSheet->parseAuthorStyleSheet(cachedStyleSheet, m_owner->document().securityOrigin());
537 styleSheet->notifyLoadedSheet(cachedStyleSheet);
538 styleSheet->checkLoaded();
540 if (styleSheet->isCacheable())
541 const_cast<CSSStyleSheetResource*>(cachedStyleSheet)->saveParsedStyleSheet(styleSheet);
714 // The request may have been denied if (for example) the stylesheet is local and the document is remote.
719 // we no longer contain a stylesheet, e.g. perhaps rel or type was change
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGStyleElement.cpp 61 if (CSSStyleSheet* styleSheet = sheet())
62 styleSheet->setDisabled(setDisabled);
  /external/chromium_org/third_party/WebKit/Source/core/css/invalidation/
StyleSheetInvalidationAnalysis.cpp 147 if (!importRules[i]->styleSheet())
149 analyzeStyleSheet(importRules[i]->styleSheet());

Completed in 277 milliseconds

1 2