| Index: third_party/WebKit/Source/platform/MIMETypeRegistry.cpp
|
| diff --git a/third_party/WebKit/Source/platform/MIMETypeRegistry.cpp b/third_party/WebKit/Source/platform/MIMETypeRegistry.cpp
|
| index e1d002ef696b00caf4cc2e87f854384b4cfc5a50..bd8ac7e153e4967480b18fdf933334bffe7e462b 100644
|
| --- a/third_party/WebKit/Source/platform/MIMETypeRegistry.cpp
|
| +++ b/third_party/WebKit/Source/platform/MIMETypeRegistry.cpp
|
| @@ -120,4 +120,9 @@ bool MIMETypeRegistry::isJavaAppletMIMEType(const String& mimeType)
|
| || mimeType.startsWith("application/x-java-vm", TextCaseInsensitive);
|
| }
|
|
|
| +bool MIMETypeRegistry::isSupportedStyleSheetMIMEType(const String& mimeType)
|
| +{
|
| + return equalIgnoringCase(mimeType, "text/css");
|
| +}
|
| +
|
| } // namespace blink
|
|
|