summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorjanekptacijarabaci <janekptacijarabaci@seznam.cz>2018-04-22 22:11:33 +0200
committerjanekptacijarabaci <janekptacijarabaci@seznam.cz>2018-04-22 22:11:33 +0200
commitd3575bfb5b62b0c0f566233faae55e4f5f525e99 (patch)
treead4652ae8f36b4a1cfecc3478b2ba514b9e719d6 /testing
parent5d9ae788d5fe66da0f687e941d5ef90880641fd5 (diff)
downloadUXP-d3575bfb5b62b0c0f566233faae55e4f5f525e99.tar
UXP-d3575bfb5b62b0c0f566233faae55e4f5f525e99.tar.gz
UXP-d3575bfb5b62b0c0f566233faae55e4f5f525e99.tar.lz
UXP-d3575bfb5b62b0c0f566233faae55e4f5f525e99.tar.xz
UXP-d3575bfb5b62b0c0f566233faae55e4f5f525e99.zip
Bug 1182569: Add credentials mode for fetch-frame-resource.https.html wpt test
native in moebius
Diffstat (limited to 'testing')
-rw-r--r--testing/web-platform/tests/service-workers/service-worker/fetch-frame-resource.https.html6
1 files changed, 4 insertions, 2 deletions
diff --git a/testing/web-platform/tests/service-workers/service-worker/fetch-frame-resource.https.html b/testing/web-platform/tests/service-workers/service-worker/fetch-frame-resource.https.html
index cc1dac472..fd7419832 100644
--- a/testing/web-platform/tests/service-workers/service-worker/fetch-frame-resource.https.html
+++ b/testing/web-platform/tests/service-workers/service-worker/fetch-frame-resource.https.html
@@ -110,7 +110,8 @@ async_test(function(t) {
frame.src =
scope + '?mode=cors&url=' +
encodeURIComponent(host_info['HTTPS_REMOTE_ORIGIN'] + path +
- '?ACAOrigin=' + host_info['HTTPS_ORIGIN']);
+ '?ACAOrigin=' + host_info['HTTPS_ORIGIN'] +
+ '&ACACredentials=true');
document.body.appendChild(frame);
return getLoadedFrameAsObject(frame);
})
@@ -183,7 +184,8 @@ async_test(function(t) {
var win = window.open(
scope + '?mode=cors&url=' +
encodeURIComponent(host_info['HTTPS_REMOTE_ORIGIN'] + path +
- '?ACAOrigin=' + host_info['HTTPS_ORIGIN']));
+ '?ACAOrigin=' + host_info['HTTPS_ORIGIN'] +
+ '&ACACredentials=true'));
return getLoadedWindowAsObject(win);
})
.then(function(result) {