Home | History | Annotate | Download | only in dom

Lines Matching defs:sheet

2073     // Parse the sheet and cache it.
2106 const UserStyleSheet* sheet = sheets->at(i).get();
2107 if (!UserContentURLPattern::matchesPatterns(url(), sheet->whitelist(), sheet->blacklist()))
2109 RefPtr<CSSStyleSheet> parsedSheet = CSSStyleSheet::createInline(const_cast<Document*>(this), sheet->url());
2111 parsedSheet->parseString(sheet->source(), !inCompatMode());
2342 // sheet used variable and then update our style selector.
2541 // Make sure we knew this sheet was pending, and that our count isn't out of sync.
2646 StyleSheet* sheet = 0;
2651 sheet = pi->sheet();
2661 if (!sheet && !pi->localHref().isEmpty()) {
2677 sheet = cssSheet.get();
2695 // it is loading but we should still decide which style sheet set to use
2705 if (!l->sheet())
2713 sheet = static_cast<SVGStyleElement*>(n)->sheet();
2717 sheet = static_cast<HTMLLinkElement*>(n)->sheet();
2720 sheet = static_cast<HTMLStyleElement*>(n)->sheet();
2722 // Check to see if this sheet belongs to a styleset
2729 // we are NOT an alternate sheet, then establish
2731 // this sheet.
2738 sheet = 0;
2742 if (sheet)
2743 sheets.append(sheet);
4101 processor->setXSLStyleSheet(static_cast<XSLStyleSheet*>(pi->sheet()));