Home | History | Annotate | Download | only in dom

Lines Matching refs:sheet

138             // to kick off import/include loads that can hang off some parent sheet.
197 void ProcessingInstruction::setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CSSStyleSheetResource* sheet)
217 // getting the sheet text in "strict" mode. This enforces a valid CSS MIME
219 parseStyleSheet(sheet->sheetText(true));
222 void ProcessingInstruction::setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet)
226 parseStyleSheet(sheet);
229 void ProcessingInstruction::parseStyleSheet(const String& sheet)
232 static_cast<CSSStyleSheet*>(m_sheet.get())->contents()->parseString(sheet);
234 static_cast<XSLStyleSheet*>(m_sheet.get())->parseString(sheet);
248 void ProcessingInstruction::setCSSStyleSheet(PassRefPtr<CSSStyleSheet> sheet)
252 m_sheet = sheet;
253 sheet->setTitle(m_title);
254 sheet->setDisabled(m_alternate);
269 if (!sheet())
272 addSubresourceURL(urls, sheet()->baseURL());
301 // If we're in document teardown, then we don't need to do any notification of our sheet's removal.