| <script src="../../resources/js-test-pre.js"></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'); |
| xhr.onerror = function() { |
| testFailed('The XHR request to an existing resource failed: "' + url + '"'); |
| <script src="../../resources/js-test-post.js"></script> |
| <div id="description"></div> |