HomeSort by relevance Sort by last modified time
    Searched refs:enforceMIMEType (Results 1 - 4 of 4) sorted by null

  /external/webkit/Source/WebCore/loader/cache/
CachedCSSStyleSheet.h 43 const String sheetText(bool enforceMIMEType = true, bool* hasValidMIMEType = 0) const;
57 bool canUseSheet(bool enforceMIMEType, bool* hasValidMIMEType) const;
CachedCSSStyleSheet.cpp 75 const String CachedCSSStyleSheet::sheetText(bool enforceMIMEType, bool* hasValidMIMEType) const
79 if (!m_data || m_data->isEmpty() || !canUseSheet(enforceMIMEType, hasValidMIMEType))
127 bool CachedCSSStyleSheet::canUseSheet(bool enforceMIMEType, bool* hasValidMIMEType) const
132 if (!enforceMIMEType && !hasValidMIMEType)
146 if (!enforceMIMEType)
  /external/webkit/Source/WebCore/css/
CSSImportRule.cpp 67 bool enforceMIMEType = strict;
71 if (enforceMIMEType && needsSiteSpecificQuirks) {
74 enforceMIMEType = false;
78 String sheetText = sheet->sheetText(enforceMIMEType, &validMIMEType);
  /external/webkit/Source/WebCore/html/
HTMLLinkElement.cpp 370 bool enforceMIMEType = strictParsing;
377 if (enforceMIMEType && document()->page() && !document()->page()->settings()->enforceCSSMIMETypeInNoQuirksMode())
378 enforceMIMEType = false;
381 if (enforceMIMEType && needsSiteSpecificQuirks) {
384 enforceMIMEType = false;
388 String sheetText = sheet->sheetText(enforceMIMEType, &validMIMEType);

Completed in 502 milliseconds