diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-04-22 22:11:33 +0200 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-04-22 22:11:33 +0200 |
commit | d3575bfb5b62b0c0f566233faae55e4f5f525e99 (patch) | |
tree | ad4652ae8f36b4a1cfecc3478b2ba514b9e719d6 | |
parent | 5d9ae788d5fe66da0f687e941d5ef90880641fd5 (diff) | |
download | UXP-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
-rw-r--r-- | testing/web-platform/tests/service-workers/service-worker/fetch-frame-resource.https.html | 6 |
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) { |