Index: Source/core/xml/XMLHttpRequest.cpp |
diff --git a/Source/core/xml/XMLHttpRequest.cpp b/Source/core/xml/XMLHttpRequest.cpp |
index 53a2c09092a4c1ab6c305ac80f4ee912bee2e5ff..1b6e8b7f585885afac63850c7d72abae233c77e9 100644 |
--- a/Source/core/xml/XMLHttpRequest.cpp |
+++ b/Source/core/xml/XMLHttpRequest.cpp |
@@ -1186,9 +1186,7 @@ AtomicString XMLHttpRequest::responseMIMEType() const |
bool XMLHttpRequest::responseIsXML() const |
{ |
- // FIXME: Remove the lower() call when DOMImplementation.isXMLMIMEType() is modified |
- // to do case insensitive MIME type matching. |
- return DOMImplementation::isXMLMIMEType(responseMIMEType().lower()); |
+ return DOMImplementation::isXMLMIMEType(responseMIMEType()); |
} |
int XMLHttpRequest::status() const |