Update web-platform-tests to revision de3ae39cb59880a8245431e7f09817a2a4dad1a3

This commit is contained in:
WPT Sync Bot 2018-06-15 21:19:30 -04:00
parent 0c5b020163
commit b322aa3943
131 changed files with 2717 additions and 600 deletions

View file

@ -8,7 +8,7 @@
.then(r => r.json())
.then(j => {
assert_header_equals(j.header, {
"cause": "forced",
"cause": undefined,
"destination": "\"\"",
"target": "subresource",
"site": "same-origin"
@ -21,7 +21,7 @@
.then(r => r.json())
.then(j => {
assert_header_equals(j.header, {
"cause": "forced",
"cause": undefined,
"destination": "\"\"",
"target": "subresource",
"site": "same-site"
@ -34,7 +34,7 @@
.then(r => r.json())
.then(j => {
assert_header_equals(j.header, {
"cause": "forced",
"cause": undefined,
"destination": "\"\"",
"target": "subresource",
"site": "cross-site"

View file

@ -12,7 +12,7 @@
"https://{{host}}:{{ports[https][0]}}/referrer-policy/generic/subresource/image.py",
t.step_func_done(img => {
assert_header_equals(decodeImageData(extractImageData(img)).headers["sec-metadata"], {
"cause": "forced",
"cause": undefined,
"destination": "image",
"target": "subresource",
"site": "same-origin"
@ -27,7 +27,7 @@
"https://{{hosts[][www]}}:{{ports[https][0]}}/referrer-policy/generic/subresource/image.py",
t.step_func_done(img => {
assert_header_equals(decodeImageData(extractImageData(img)).headers["sec-metadata"], {
"cause": "forced",
"cause": undefined,
"destination": "image",
"target": "subresource",
"site": "same-site"
@ -42,7 +42,7 @@
"https://{{hosts[alt][www]}}:{{ports[https][0]}}/referrer-policy/generic/subresource/image.py",
t.step_func_done(img => {
assert_header_equals(decodeImageData(extractImageData(img)).headers["sec-metadata"], {
"cause": "forced",
"cause": undefined,
"destination": "image",
"target": "subresource",
"site": "cross-site"

View file

@ -10,7 +10,7 @@
t.add_cleanup(_ => header = null);
assert_header_equals(header, {
"cause": "forced",
"cause": undefined,
"destination": "script",
"target": "subresource",
"site": "same-origin"
@ -25,7 +25,7 @@
t.add_cleanup(_ => header = null);
assert_header_equals(header, {
"cause": "forced",
"cause": undefined,
"destination": "script",
"target": "subresource",
"site": "same-site"
@ -40,7 +40,7 @@
t.add_cleanup(_ => header = null);
assert_header_equals(header, {
"cause": "forced",
"cause": undefined,
"destination": "script",
"target": "subresource",
"site": "cross-site"