OLD | NEW |
1 <body> | 1 <body> |
| 2 |
2 This tests an isolated script's ability to XHR a blob that is in its security or
igin, which is not the same as the document's security origin.<br> | 3 This tests an isolated script's ability to XHR a blob that is in its security or
igin, which is not the same as the document's security origin.<br> |
3 We pass if there are no console errors. | 4 We pass if there are no console errors. |
4 <script> | 5 <script> |
5 if (!window.testRunner) { | 6 if (!window.testRunner) { |
6 document.body.appendChild(document.createTextNode("This test requires window
.testRunner")); | 7 document.body.appendChild(document.createTextNode("This test requires window
.testRunner")); |
7 } else { | 8 } else { |
8 testRunner.dumpAsText(); | 9 testRunner.dumpAsText(); |
9 // Can't use chrome-extension:// since it's an unknown scheme and | 10 // Can't use chrome-extension:// since it's an unknown scheme and |
10 // will fail validation in content/ land; so pretend that | 11 // will fail validation in content/ land; so pretend that |
11 // https://cloud-cuckoo-land.google:2112 is a chrome extension origin. | 12 // https://cloud-cuckoo-land.google:2112 is a chrome extension origin. |
12 testRunner.setIsolatedWorldSecurityOrigin(1, "https://cloud-cuckoo-land.goog
le:2112"); | 13 testRunner.setIsolatedWorldSecurityOrigin(1, "https://cloud-cuckoo-land.goog
le:2112"); |
13 testRunner.evaluateScriptInIsolatedWorld(1, "var xhr = new XMLHttpRequest();
xhr.open('GET', 'blob:https://cloud-cuckoo-land.google:2112/456789', false); xh
r.send();"); | 14 testRunner.evaluateScriptInIsolatedWorld(1, "var xhr = new XMLHttpRequest();
xhr.open('GET', 'blob:https://cloud-cuckoo-land.google:2112/456789', false); xh
r.send();"); |
14 } | 15 } |
15 </script> | 16 </script> |
16 </body> | 17 </body> |
OLD | NEW |