OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="../js/resources/js-test-pre.js"></script> | 4 <script src="../js/resources/js-test-pre.js"></script> |
5 <script> | 5 <script> |
6 description('This tests the XMLHttpRequest responseXML attribute value w
hen given invalid XML data.'); | 6 description('This tests the XMLHttpRequest responseXML attribute value w
hen given invalid XML data.'); |
7 | 7 |
8 window.jsTestIsAsync = true; | 8 window.jsTestIsAsync = true; |
9 var xhr = new XMLHttpRequest(), | 9 var xhr = new XMLHttpRequest(), |
10 url = 'resources/xmlhttprequest-get-invalid-data.xml'; | 10 url = 'resources/xmlhttprequest-get-invalid-data.xml'; |
11 xhr.onload = function() { | 11 xhr.onload = function() { |
12 shouldEvaluateTo('xhr.readyState', 4); | 12 shouldEvaluateTo('xhr.readyState', 4); |
13 shouldBeNull('xhr.responseXML'); | 13 shouldBeNull('xhr.responseXML'); |
14 finishJSTest(); | 14 finishJSTest(); |
15 }; | 15 }; |
16 xhr.onerror = function() { | 16 xhr.onerror = function() { |
17 testFailed('The XHR request to an existing resource failed: "' + url
+ '"'); | 17 testFailed('The XHR request to an existing resource failed: "' + url
+ '"'); |
18 finishJSTest(); | 18 finishJSTest(); |
19 }; | 19 }; |
20 xhr.open('GET', url); | 20 xhr.open('GET', url); |
21 xhr.responseType = 'document'; | 21 xhr.responseType = 'document'; |
22 xhr.send(null); | 22 xhr.send(null); |
23 </script> | 23 </script> |
24 <script src="../js/resources/js-test-post.js"></script> | |
25 </head> | 24 </head> |
26 <body> | 25 <body> |
27 <div id="description"></div> | 26 <div id="description"></div> |
28 <div id="console"></div> | 27 <div id="console"></div> |
29 </body> | 28 </body> |
30 </html> | 29 </html> |
OLD | NEW |