blob: f81137affe53e13dc0cc0579dd1255bbcba60f6b [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="../../resources/js-test.js"></script>
<script>
description('This tests the XMLHttpRequest responseXML loading an HTML document with no specified responseType.');
window.jsTestIsAsync = true;
var xhr = new XMLHttpRequest(),
url = window.location.href;
xhr.onload = function() {
shouldBeNull('xhr.responseXML');
finishJSTest();
};
xhr.onerror = function() {
testFailed('The XHR request to an existing resource failed: "' + url + '"');
finishJSTest();
};
xhr.open('GET', url);
xhr.send(null);
</script>
</head>
<body>
<div id="description"></div>
<div id="console"></div>
</body>
</html>