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

  /external/webkit/Source/WebCore/bindings/js/
JSStyleSheetCustom.cpp 38 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, StyleSheet* styleSheet)
40 if (!styleSheet)
43 JSDOMWrapper* wrapper = getCachedWrapper(currentWorld(exec), styleSheet);
47 if (styleSheet->isCSSStyleSheet())
48 wrapper = CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, CSSStyleSheet, styleSheet);
50 wrapper = CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, StyleSheet, styleSheet);
59 StyleSheet* sheet = impl();
JSCSSImportRuleCustom.cpp 39 if (CSSStyleSheet* sheet = static_cast<CSSImportRule*>(impl())->styleSheet())
  /external/webkit/Source/WebCore/bindings/objc/
DOMObject.mm 39 #import "StyleSheet.h"
72 WebCore::StyleSheet* styleSheet;
75 styleSheet = core(static_cast<DOMProcessingInstruction *>(self))->sheet();
77 styleSheet = core(static_cast<DOMHTMLLinkElement *>(self))->sheet();
79 styleSheet = core(static_cast<DOMHTMLStyleElement *>(self))->sheet();
83 return kit(styleSheet);
PublicDOMInterfaces.h     [all...]
  /external/webkit/Source/WebCore/css/
CSSImportRule.idl 27 readonly attribute CSSStyleSheet styleSheet;
CSSReflectValue.cpp 62 void CSSReflectValue::addSubresourceStyleURLs(ListHashSet<KURL>& urls, const CSSStyleSheet* styleSheet)
65 m_mask->addSubresourceStyleURLs(urls, styleSheet);
CSSFontFaceSrcValue.cpp 77 void CSSFontFaceSrcValue::addSubresourceStyleURLs(ListHashSet<KURL>& urls, const CSSStyleSheet* styleSheet)
80 addSubresourceURL(urls, styleSheet->completeURL(m_resource));
CSSBorderImageValue.cpp 65 void CSSBorderImageValue::addSubresourceStyleURLs(ListHashSet<KURL>& urls, const CSSStyleSheet* styleSheet)
67 m_image->addSubresourceStyleURLs(urls, styleSheet);
CSSImportRule.h 48 CSSStyleSheet* styleSheet() const { return m_styleSheet.get(); }
CSSValueList.cpp 123 void CSSValueList::addSubresourceStyleURLs(ListHashSet<KURL>& urls, const CSSStyleSheet* styleSheet)
127 m_values[i]->addSubresourceStyleURLs(urls, styleSheet);
CSSStyleSheet.cpp 55 : StyleSheet(parentSheet, href, baseURL)
65 : StyleSheet(parentNode, href, baseURL)
76 : StyleSheet(ownerRule, href, baseURL)
272 return StyleSheet::completeURL(url);
283 CSSStyleSheet* styleSheet = styleSheetQueue.takeFirst();
285 for (unsigned i = 0; i < styleSheet->length(); ++i) {
286 StyleBase* styleBase = styleSheet->item(i);
292 if (CSSStyleSheet* ruleStyleSheet = static_cast<CSSImportRule*>(rule)->styleSheet())
CSSPrimitiveValue.cpp 835 void CSSPrimitiveValue::addSubresourceStyleURLs(ListHashSet<KURL>& urls, const CSSStyleSheet* styleSheet)
838 addSubresourceURL(urls, styleSheet->completeURL(m_value.string));
CSSParser.cpp 309 CSSStyleSheet* stylesheet = static_cast<CSSStyleSheet*>(declaration->stylesheet()); local
310 if (!stylesheet || !stylesheet->document())
313 CSSProperty property(propertyId, stylesheet->document()->cssPrimitiveValueCache()->createIdentifierValue(valueID), important);
320 CSSProperty property(propertyId, stylesheet->document()->cssPrimitiveValueCache()->createColorValue(color), important);
401 CSSStyleSheet* stylesheet = static_cast<CSSStyleSheet*>(declaration->stylesheet());
402 if (!stylesheet || !stylesheet->document()
    [all...]
CSSStyleSelector.cpp 371 // FIXME: It would be nice to use some mechanism that guarantees this is in sync with the real UA stylesheet.
499 StyleSheet* sheet = styleSheets->item(i);
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLStyleElement.cpp 104 if (StyleSheet* styleSheet = const_cast<HTMLStyleElement*>(this)->sheet())
105 styleSheet->addSubresourceStyleURLs(urls);
110 StyleSheet* styleSheet = sheet();
111 if (!styleSheet)
114 return styleSheet->disabled();
119 if (StyleSheet* styleSheet = sheet())
120 styleSheet->setDisabled(setDisabled)
    [all...]
HTMLLinkElement.cpp 123 StyleSheet* HTMLLinkElement::sheet() const
173 if (equalIgnoringCase(rel, "stylesheet"))
185 else if (equalIgnoringCase(rel, "alternate stylesheet") || equalIgnoringCase(rel, "stylesheet alternate")) {
196 if (equalIgnoringCase(*it, "stylesheet"))
310 // The request may have been denied if (for example) the stylesheet is local and the document is remote.
315 // we no longer contain a stylesheet, e.g. perhaps rel or type was changed
391 // If we're loading a stylesheet cross-origin, and the MIME type is not
405 DEFINE_STATIC_LOCAL(const String, mediaWikiKHTMLFixesStyleSheet, ("/* KHTML fix stylesheet */\n/* work around the horizontal scrollbars */\n#column-content { margin-left: 0; }\n\n"));
502 // Walk the URLs linked by the linked-to stylesheet
    [all...]
  /external/webkit/Source/WebCore/inspector/
InspectorCSSAgent.cpp 127 // text : <string> // Optional - whenever the text is available for a text-based stylesheet
138 StyleSheet* styleSheet = styleBase->stylesheet();
139 if (styleSheet && styleSheet->isCSSStyleSheet())
140 return static_cast<CSSStyleSheet*>(styleSheet);
192 InspectorStyleSheetForInlineStyle* styleSheet = asInspectorStyleSheet(element);
193 if (styleSheet)
194 resultObject->setObject("inlineStyle", styleSheet->buildObjectForStyle(element->style()))
    [all...]
InspectorStyleSheet.cpp 70 // StyleSheet constructed while parsing m_text.
187 *errorString = "Internal error: no stylesheet parsed data available";
675 CSSStyleSheet* styleSheet = InspectorCSSAgent::parentStyleSheet(rule);
676 if (!styleSheet || !ensureParsedDataReady())
730 CSSStyleSheet* styleSheet = pageStyleSheet();
731 if (!styleSheet)
736 RefPtr<CSSRuleList> cssRuleList = CSSRuleList::create(styleSheet, true);
750 CSSStyleSheet* styleSheet = pageStyleSheet();
751 if (!styleSheet)
756 result->setBoolean("disabled", styleSheet->disabled())
    [all...]
  /external/webkit/Source/WebCore/xml/
XSLImportRule.h 48 XSLStyleSheet* styleSheet() const { return m_styleSheet.get(); }
XSLStyleSheetLibxslt.cpp 58 : StyleSheet(parentRule, originalURL, finalURL)
68 : StyleSheet(parentNode, originalURL, finalURL)
122 if (import->styleSheet())
123 import->styleSheet()->clearDocuments();
193 // We have to locate (by ID) the appropriate embedded stylesheet element, so that we can walk the
243 // FIXME: Hook up error reporting for the stylesheet compilation process.
247 // xsltParseStylesheetDoc makes the document part of the stylesheet
263 for (XSLStyleSheet* styleSheet = this; styleSheet; styleSheet = styleSheet->parentStyleSheet())
    [all...]
XSLTProcessor.h 49 void setXSLStyleSheet(PassRefPtr<XSLStyleSheet> styleSheet) { m_stylesheet = styleSheet; }
  /external/webkit/Source/WebCore/bindings/v8/
V8GCController.cpp 293 StyleSheet* styleSheet = 0;
308 styleSheet = static_cast<StyleSheet*>(current);
316 if (styleSheet) {
317 if (Node* ownerNode = styleSheet->ownerNode())
319 return GroupId(styleSheet);
  /external/webkit/Source/WebCore/inspector/front-end/
AuditRules.js 162 WebInspector.AuditRules.CombineExternalResourcesRule.call(this, "page-externalcss", "Combine external CSS", WebInspector.Resource.Type.Stylesheet, "CSS", allowedPerDomain);
221 [WebInspector.Resource.Type.Stylesheet, WebInspector.Resource.Type.Image],
288 var styleSheet = styleSheets[i];
289 for (var curRule = 0; curRule < styleSheet.rules.length; ++curRule) {
290 var selectorText = styleSheet.rules[curRule].selectorText;
306 var styleSheet = styleSheets[i];
310 for (var curRule = 0; curRule < styleSheet.rules.length; ++curRule) {
311 var rule = styleSheet.rules[curRule];
328 var resource = WebInspector.resourceForURL(styleSheet.sourceURL);
330 var url = !isInlineBlock ? WebInspector.AuditRuleResult.linkifyDisplayName(styleSheet.sourceURL) : String.sprintf("Inline block #%d", ++inlineBlockOrdinal)
    [all...]
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
FrameLoaderClientQt.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jface.text_3.6.1.r361_v20100825-0800.jar 

Completed in 732 milliseconds