Searched refs:sheetText (Results 1 - 7 of 7) sorted by relevance

/external/webkit/WebCore/loader/
H A DCachedCSSStyleSheet.cpp74 const String CachedCSSStyleSheet::sheetText(bool enforceMIMEType, bool* hasValidMIMEType) const function in class:WebCore::CachedCSSStyleSheet
85 String sheetText = m_decoder->decode(m_data->data(), m_data->size());
86 sheetText += m_decoder->flush();
87 return sheetText;
H A DCachedCSSStyleSheet.h43 const String sheetText(bool enforceMIMEType = true, bool* hasValidMIMEType = 0) const;
/external/webkit/WebCore/css/
H A DCSSImportRule.cpp78 String sheetText = sheet->sheetText(enforceMIMEType, &validMIMEType); local
79 m_styleSheet->parseString(sheetText, strict);
91 if (baseURL.string().endsWith(slashKHTMLFixesDotCss) && sheetText == mediaWikiKHTMLFixesStyleSheet) {
/external/webkit/WebCore/html/
H A DHTMLLinkElement.cpp310 String sheetText = sheet->sheetText(enforceMIMEType, &validMIMEType); local
311 m_sheet->parseString(sheetText, strictParsing);
330 if (baseURL.string().endsWith(slashKHTMLFixesDotCss) && !sheetText.isNull() && mediaWikiKHTMLFixesStyleSheet.startsWith(sheetText)
331 && sheetText.length() >= mediaWikiKHTMLFixesStyleSheet.length() - 1) {
/external/webkit/WebCore/dom/
H A DStyleElement.cpp71 String sheetText = String::createUninitialized(resultLength, text); local
85 createSheet(e, sheetText);
H A DProcessingInstruction.cpp211 parseStyleSheet(sheet->sheetText(true));
H A DDocument.cpp2668 String sheetText("");
2671 sheetText += c->nodeValue();
2675 cssSheet->parseString(sheetText);

Completed in 45 milliseconds