Bug 1394399 - Fix web-platform-tests to expect "same-origin" default Request.credentials

Issue #389
This commit is contained in:
janekptacijarabaci
2018-05-26 17:33:27 +02:00
parent 240fd66dd3
commit 96357e8a7f
2 changed files with 2 additions and 2 deletions
@@ -44,7 +44,7 @@
"referrer" : "http://{{host}}:{{ports[http][0]}}/",
"referrerPolicy" : "",
"mode" : "cors",
"credentials" : "omit",
"credentials" : "same-origin",
"cache" : "default",
"redirect" : "follow",
"integrity" : "",
@@ -82,7 +82,7 @@
break;
case "credentials":
defaultValue = "omit";
defaultValue = "same-origin";
newValue = "cors";
break;