Home | History | Annotate | Download | only in css

Lines Matching refs:sheet

53     // Try to find the style sheet. If found look for its URL.
54 // If it has none, get the URL from the parent sheet or the parent node.
56 StyleSheet* sheet = const_cast<StyleBase*>(this)->stylesheet();
57 if (!sheet)
59 if (!sheet->finalURL().isNull())
60 return sheet->finalURL();
61 if (sheet->parent())
62 return sheet->parent()->baseURL();
63 if (!sheet->ownerNode())
65 return sheet->ownerNode()->document()->baseURL();