aboutsummaryrefslogtreecommitdiffstats
path: root/src/ajax/parseXML.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/ajax/parseXML.js')
-rw-r--r--src/ajax/parseXML.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ajax/parseXML.js b/src/ajax/parseXML.js
index 6599aaf5b..eb17dbd26 100644
--- a/src/ajax/parseXML.js
+++ b/src/ajax/parseXML.js
@@ -9,7 +9,8 @@ jQuery.parseXML = function( data ) {
return null;
}
- // Support: IE9
+ // Support: IE 9-11 only
+ // IE throws on parseFromString with invalid input.
try {
xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" );
} catch ( e ) {