Home | History | Annotate | Download | only in dom

Lines Matching defs:href

95     String href;
97 if (!checkStyleSheet(href, charset))
99 process(href, charset);
102 bool ProcessingInstruction::checkStyleSheet(String& href, String& charset)
124 href = attrs.get("href");
134 void ProcessingInstruction::process(const String& href, const String& charset)
136 if (href.length() > 1 && href[0] == '#') {
137 m_localHref = href.substring(1);
151 String url = document().completeURL(href).string();
154 FetchRequest request(ResourceRequest(document().completeURL(href)), FetchInitiatorTypeNames::processinginstruction);
187 void ProcessingInstruction::setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CSSStyleSheetResource* sheet)
197 RefPtrWillBeRawPtr<StyleSheetContents> newSheet = StyleSheetContents::create(href, parserContext);
212 void ProcessingInstruction::setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet)
220 m_sheet = XSLStyleSheet::create(this, href, baseURL);
256 String href;
258 bool isValid = checkStyleSheet(href, charset);
264 process(href, charset);