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

  /external/webkit/WebCore/bindings/js/
JSStyleSheetCustom.cpp 38 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, StyleSheet* styleSheet)
40 if (!styleSheet)
43 DOMObject* wrapper = getCachedDOMObjectWrapper(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();
  /external/webkit/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/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 72 void CSSFontFaceSrcValue::addSubresourceStyleURLs(ListHashSet<KURL>& urls, const CSSStyleSheet* styleSheet)
75 addSubresourceURL(urls, styleSheet->completeURL(m_resource));
CSSBorderImageValue.cpp 61 void CSSBorderImageValue::addSubresourceStyleURLs(ListHashSet<KURL>& urls, const CSSStyleSheet* styleSheet)
63 m_image->addSubresourceStyleURLs(urls, styleSheet);
CSSValueList.cpp 134 void CSSValueList::addSubresourceStyleURLs(ListHashSet<KURL>& urls, const CSSStyleSheet* styleSheet)
138 m_values[i]->addSubresourceStyleURLs(urls, styleSheet);
CSSImportRule.h 47 CSSStyleSheet* styleSheet() const { return m_styleSheet.get(); }
CSSStyleSheet.cpp 38 : StyleSheet(parentSheet, href, baseURL)
50 : StyleSheet(parentNode, href, baseURL)
62 : StyleSheet(ownerRule, href, baseURL)
222 return StyleSheet::completeURL(url);
233 CSSStyleSheet* styleSheet = styleSheetQueue.first();
236 for (unsigned i = 0; i < styleSheet->length(); ++i) {
237 StyleBase* styleBase = styleSheet->item(i);
243 if (CSSStyleSheet* ruleStyleSheet = static_cast<CSSImportRule*>(rule)->styleSheet())
CSSStyleSelector.cpp 389 // FIXME: It would be nice to use some mechanism that guarantees this is in sync with the real UA stylesheet.
472 StyleSheet* sheet = styleSheets->item(i);
    [all...]
  /external/webkit/WebCore/xml/
XSLImportRule.h 47 XSLStyleSheet* styleSheet() const { return m_styleSheet.get(); }
XSLTProcessor.h 48 void setXSLStyleSheet(PassRefPtr<XSLStyleSheet> styleSheet) { m_stylesheet = styleSheet; }
XSLStyleSheetLibxslt.cpp 59 : StyleSheet(parentRule, originalURL, finalURL)
70 : StyleSheet(parentNode, originalURL, finalURL)
125 if (import->styleSheet())
126 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
271 XSLStyleSheet* child = import->styleSheet();
278 // Check the URI of the child stylesheet against the doc URI.
293 xmlDocPtr result = import->styleSheet()->locateStylesheetSubResource(parentDoc, uri)
    [all...]
  /external/webkit/WebCore/html/
HTMLLinkElement.cpp 114 StyleSheet* HTMLLinkElement::sheet() const
149 void HTMLLinkElement::tokenizeRelAttribute(const AtomicString& rel, bool& styleSheet, bool& alternate, bool& icon, bool& touchIcon, bool& precomposedTouchIcon, bool& dnsPrefetch)
151 void HTMLLinkElement::tokenizeRelAttribute(const AtomicString& rel, bool& styleSheet, bool& alternate, bool& icon, bool& dnsPrefetch)
154 styleSheet = false;
162 if (equalIgnoringCase(rel, "stylesheet"))
163 styleSheet = true;
174 else if (equalIgnoringCase(rel, "alternate stylesheet") || equalIgnoringCase(rel, "stylesheet alternate")) {
175 styleSheet = true;
185 if (equalIgnoringCase(*it, "stylesheet"))
    [all...]
HTMLStyleElement.cpp 85 StyleSheet* HTMLStyleElement::sheet()
142 if (StyleSheet* styleSheet = const_cast<HTMLStyleElement*>(this)->sheet())
143 styleSheet->addSubresourceStyleURLs(urls);
  /external/webkit/WebKit/win/
DOMCreateInstance.cpp 108 #include <WebCore/StyleSheet.h>
117 #include <WebCore/StyleSheet.h>
295 GEN_DOMStyleSheet* GEN_DOMStyleSheet::createInstance(WebCore::StyleSheet* styleSheet)
297 if (!styleSheet)
300 if (GEN_DOMObject* cachedInstance = getDOMWrapper(styleSheet)) {
306 if (styleSheet->isCSSStyleSheet())
307 domStyleSheet = new GEN_DOMCSSStyleSheet(static_cast<WebCore::CSSStyleSheet*>(styleSheet));
309 domStyleSheet = new GEN_DOMStyleSheet(styleSheet);
311 setDOMWrapper(styleSheet, domStyleSheet.get())
    [all...]
  /external/webkit/WebKit/qt/WebCoreSupport/
FrameLoaderClientQt.cpp     [all...]
  /external/webkit/WebCore/inspector/front-end/
AuditRules.js 200 WebInspector.AuditRules.CombineExternalResourcesRule.call(this, "page-externalcss", "Combine external CSS", WebInspector.Resource.Type.Stylesheet, "CSS", parametersObject);
263 [WebInspector.Resource.Type.Stylesheet, WebInspector.Resource.Type.Image],
413 var styleSheet = styleSheets[i];
414 if (!styleSheet.cssRules)
418 for (var curRule = 0; curRule < styleSheet.cssRules.length; ++curRule) {
419 var rule = styleSheet.cssRules[curRule];
431 styleSheetToUnusedRules.push(styleSheet.href ? "href" : "inline");
433 styleSheetToUnusedRules.push(styleSheet.href ? styleSheet.href : ++inlineBlockOrdinal);
    [all...]

Completed in 1026 milliseconds