Index: chrome/test/data/extensions/api_test/cross_origin_xhr/background_page/test.js |
diff --git a/chrome/test/data/extensions/api_test/cross_origin_xhr/background_page/test.js b/chrome/test/data/extensions/api_test/cross_origin_xhr/background_page/test.js |
index 77288c2498adeda3814f9193a29b31825ba0816c..a3e92119b0c5c15e524778a84f8475a7150a8bd6 100644 |
--- a/chrome/test/data/extensions/api_test/cross_origin_xhr/background_page/test.js |
+++ b/chrome/test/data/extensions/api_test/cross_origin_xhr/background_page/test.js |
@@ -6,7 +6,7 @@ chrome.test.getConfig(function(config) { |
function doReq(domain, expectSuccess) { |
var req = new XMLHttpRequest(); |
- var url = domain + ":PORT/files/extensions/test_file.txt"; |
+ var url = domain + ":PORT/extensions/test_file.txt"; |
url = url.replace(/PORT/, config.testServer.port); |
chrome.test.log("Requesting url: " + url); |
@@ -53,8 +53,9 @@ chrome.test.getConfig(function(config) { |
function disallowedSubdomain() { |
doReq("http://foob.com", false); |
}, |
- function disallowedSSL() { |
- doReq("https://a.com", false); |
- } |
+ // TODO(asargent): Explicitly create SSL test server and enable the test. |
+ // function disallowedSSL() { |
+ // doReq("https://a.com", false); |
+ // } |
]); |
}); |