| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="../../resources/js-test.js"></script> | 4 <script src="../../resources/js-test.js"></script> |
| 5 <script> | 5 <script> |
| 6 description('This tests that the XMLHttpRequest responseType attribute i
s not modifiable for synchronous HTTP(S) requests.'); | 6 description('This tests that the XMLHttpRequest responseType attribute i
s not modifiable for synchronous HTTP(S) requests.'); |
| 7 var xhr; | 7 var xhr; |
| 8 | 8 |
| 9 // HTTP | 9 // HTTP |
| 10 xhr = new XMLHttpRequest(); | 10 xhr = new XMLHttpRequest(); |
| 11 xhr.open('GET', 'http://mydomain/', false); | 11 xhr.open('GET', 'http://mydomain/', false); |
| 12 shouldThrow("xhr.responseType = 'document';"); | 12 shouldThrow("xhr.responseType = 'document';"); |
| 13 | 13 |
| 14 // HTTPS | 14 // HTTPS |
| 15 xhr = new XMLHttpRequest(); | 15 xhr = new XMLHttpRequest(); |
| 16 xhr.open('GET', 'https://mysecuredomain/', false); | 16 xhr.open('GET', 'https://mysecuredomain/', false); |
| 17 shouldThrow("xhr.responseType = 'document';"); | 17 shouldThrow("xhr.responseType = 'document';"); |
| 18 | 18 |
| 19 // FILE | 19 // FILE |
| 20 shouldBeEqualToString('window.location.protocol', 'file:'); | 20 shouldBeEqualToString('window.location.protocol', 'file:'); |
| 21 xhr = new XMLHttpRequest(); | 21 xhr = new XMLHttpRequest(); |
| 22 xhr.open('GET', window.location.href, false); | 22 xhr.open('GET', window.location.href, false); |
| 23 evalAndLog("xhr.responseType = 'document';"); | 23 shouldThrow("xhr.responseType = 'document';"); |
| 24 shouldBeEqualToString('xhr.responseType', 'document'); | |
| 25 | 24 |
| 26 // DATA | 25 // DATA |
| 27 var dataUrl = 'data:text/html;charset=utf-8,%3C%21DOCTYPE%20' + | 26 var dataUrl = 'data:text/html;charset=utf-8,%3C%21DOCTYPE%20' + |
| 28 'html%3E%0D%0A%3Chtml%20lang%3D%22en%22%3E%0D%0A%3Chead%'
+ | 27 'html%3E%0D%0A%3Chtml%20lang%3D%22en%22%3E%0D%0A%3Chead%'
+ |
| 29 '3E%3Ctitle%3EEmbedded%20Window%3C%2Ftitle%3E%3C%2Fhead%'
+ | 28 '3E%3Ctitle%3EEmbedded%20Window%3C%2Ftitle%3E%3C%2Fhead%'
+ |
| 30 '3E%0D%0A%3Cbody%3E%3Ch1%3E42%3C%2Fh1%3E%3C%2Fbody%3E%0A'
+ | 29 '3E%0D%0A%3Cbody%3E%3Ch1%3E42%3C%2Fh1%3E%3C%2Fbody%3E%0A'
+ |
| 31 '%3C%2Fhtml%3E%0A%0D%0A'; | 30 '%3C%2Fhtml%3E%0A%0D%0A'; |
| 32 xhr = new XMLHttpRequest(); | 31 xhr = new XMLHttpRequest(); |
| 33 xhr.open('GET', dataUrl, false); | 32 xhr.open('GET', dataUrl, false); |
| 34 evalAndLog("xhr.responseType = 'document';"); | 33 shouldThrow("xhr.responseType = 'document';"); |
| 35 shouldBeEqualToString('xhr.responseType', 'document'); | |
| 36 </script> | 34 </script> |
| 37 </head> | 35 </head> |
| 38 <body> | 36 <body> |
| 39 <div id="description"></div> | 37 <div id="description"></div> |
| 40 <div id="console"></div> | 38 <div id="console"></div> |
| 41 </body> | 39 </body> |
| 42 </html> | 40 </html> |
| OLD | NEW |