| <script src="../../resources/js-test-pre.js"></script> |
| description('This tests the XMLHttpRequest responseXML loading an XML document with responseType "text".'); |
| window.jsTestIsAsync = true; |
| var xhr = new XMLHttpRequest(), |
| url = 'resources/xmlhttprequest-get-data.xml', |
| xhr.onload = function() { |
| shouldThrow('xhr.responseXML'); |
| xhr.onerror = function() { |
| testFailed('The XHR request to an existing resource failed: "' + url + '"'); |
| xhr.responseType = 'text'; |
| <script src="../../resources/js-test-post.js"></script> |
| <div id="description"></div> |