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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSImportRule.idl 25 readonly attribute CSSStyleSheet styleSheet;
CSSRule.cpp 49 CSSStyleSheet* styleSheet = parentStyleSheet();
50 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 49 virtual CSSStyleSheet* styleSheet() const = 0;
71 virtual CSSStyleSheet* styleSheet() const OVERRIDE { return 0; }
112 virtual CSSStyleSheet* styleSheet() const OVERRIDE { return m_rule->parentStyleSheet(); }
CSSRule.h 64 void setParentStyleSheet(CSSStyleSheet* styleSheet)
67 m_parentStyleSheet = styleSheet;
CSSGroupingRule.cpp 71 CSSStyleSheet* styleSheet = parentStyleSheet();
72 CSSParserContext context(parserContext(), UseCounter::getFrom(styleSheet));
74 RefPtrWillBeRawPtr<StyleRuleBase> newRule = parser.parseRule(styleSheet ? styleSheet->contents() : 0, ruleString);
CSSImportRule.h 50 CSSStyleSheet* styleSheet() const;
CSSKeyframesRule.cpp 125 CSSStyleSheet* styleSheet = parentStyleSheet();
126 CSSParserContext context(parserContext(), UseCounter::getFrom(styleSheet));
128 RefPtrWillBeRawPtr<StyleKeyframe> keyframe = parser.parseKeyframeRule(styleSheet ? styleSheet->contents() : 0, ruleText);
StyleRuleImport.h 48 StyleSheetContents* styleSheet() const { return m_styleSheet.get(); }
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XSLImportRule.h 49 XSLStyleSheet* styleSheet() const { return m_styleSheet.get(); }
52 void setParentStyleSheet(XSLStyleSheet* styleSheet) { m_parentStyleSheet = styleSheet; }
XSLStyleSheetLibxslt.cpp 95 if (XSLStyleSheet* styleSheet = parentStyleSheet())
96 styleSheet->checkLoaded();
113 if (import->styleSheet())
114 import->styleSheet()->clearDocuments();
177 // We have to locate (by ID) the appropriate embedded stylesheet
229 // FIXME: Hook up error reporting for the stylesheet compilation process.
238 // xsltParseStylesheetDoc makes the document part of the stylesheet
256 for (XSLStyleSheet* styleSheet = this; styleSheet; styleSheet = styleSheet->parentStyleSheet())
    [all...]
XSLTProcessor.h 51 void setXSLStyleSheet(PassRefPtrWillBeRawPtr<XSLStyleSheet> styleSheet) { m_stylesheet = styleSheet; }
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
MatchRequest.h 40 , styleSheet(cssSheet)
52 RawPtrWillBeMember<const CSSStyleSheet> styleSheet;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorResourceContentLoader.cpp 70 CSSStyleSheet* styleSheet = *stylesheetIt;
71 if (styleSheet->isInline() || !styleSheet->contents()->loadCompleted())
73 String url = styleSheet->baseURL().string();
InspectorCSSAgent.cpp 46 #include "core/css/StyleSheet.h"
157 SetStyleSheetTextAction(InspectorStyleSheetBase* styleSheet, const String& text)
159 , m_styleSheet(styleSheet)
203 SetPropertyTextAction(InspectorStyleSheetBase* styleSheet, const InspectorCSSId& cssId, unsigned propertyIndex, const String& text, bool overwrite)
205 , m_styleSheet(styleSheet)
262 SetRuleSelectorAction(InspectorStyleSheet* styleSheet, const InspectorCSSId& cssId, const String& selector)
264 , m_styleSheet(styleSheet)
298 AddRuleAction(InspectorStyleSheet* styleSheet, const String& selector)
300 , m_styleSheet(styleSheet)
463 void InspectorCSSAgent::didMutateRules(CSSStyleSheet* styleSheet)
    [all...]
InspectorInstrumentation.h 170 inline InstrumentingAgents* instrumentingAgentsFor(CSSStyleSheet* styleSheet)
172 return styleSheet ? instrumentingAgentsFor(styleSheet->ownerDocument()) : 0;
InspectorStyleSheet.cpp 473 static PassRefPtrWillBeRawPtr<CSSRuleList> asCSSRuleList(CSSStyleSheet* styleSheet)
475 if (!styleSheet)
480 for (unsigned i = 0, size = styleSheet->length(); i < size; ++i) {
481 CSSRule* item = styleSheet->item(i);
693 // Should be converted into an absolute range (relative to the stylesheet start)
    [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 168 const WillBeHeapVector<RefPtrWillBeMember<StyleSheet> >& StyleEngine::styleSheetsForStyleSheetList(TreeScope& treeScope)
247 // This method is called whenever a top-level stylesheet has finished loading.
266 void StyleEngine::modifiedStyleSheet(StyleSheet* sheet)
394 WillBeHeapVector<RefPtrWillBeMember<StyleSheet> > sheetsForList;
627 RefPtrWillBeRawPtr<CSSStyleSheet> styleSheet = nullptr;
636 styleSheet = StyleEngine::parseSheet(e, text, startPosition, createdByParser);
637 if (result.isNewEntry && isCacheableForStyleElement(*styleSheet->contents())) {
638 result.storedValue->value = styleSheet->contents();
639 m_sheetToTextCache.add(styleSheet->contents(), textContent);
646 styleSheet = CSSStyleSheet::createInline(contents, e, startPosition)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
PageSerializer.cpp 261 void PageSerializer::serializeCSSStyleSheet(CSSStyleSheet& styleSheet, const KURL& url)
264 for (unsigned i = 0; i < styleSheet.length(); ++i) {
265 CSSRule* rule = styleSheet.item(i);
269 if (i < styleSheet.length() - 1)
272 ASSERT(styleSheet.ownerDocument());
273 Document& document = *styleSheet.ownerDocument();
280 if (importRule->styleSheet())
281 serializeCSSStyleSheet(*importRule->styleSheet(), importURL);
291 WTF::TextEncoding textEncoding(styleSheet.contents()->charset());
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLStyleElement.cpp 178 if (CSSStyleSheet* styleSheet = sheet())
179 styleSheet->setDisabled(setDisabled);
HTMLLinkElement.cpp 295 RefPtrWillBeRawPtr<StyleSheet> removedSheet = sheet();
500 RefPtrWillBeRawPtr<StyleSheetContents> styleSheet = StyleSheetContents::create(href, parserContext);
504 m_sheet = CSSStyleSheet::create(styleSheet, m_owner);
508 styleSheet->parseAuthorStyleSheet(cachedStyleSheet, m_owner->document().securityOrigin());
511 styleSheet->notifyLoadedSheet(cachedStyleSheet);
512 styleSheet->checkLoaded();
514 if (styleSheet->isCacheable())
515 const_cast<CSSStyleSheetResource*>(cachedStyleSheet)->saveParsedStyleSheet(styleSheet);
690 // The request may have been denied if (for example) the stylesheet is local and the document is remote.
695 // 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());
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
BisonCSSParser.h 256 void setStyleSheet(StyleSheetContents* styleSheet) { m_styleSheet = styleSheet; }

Completed in 272 milliseconds

1 2