544 lines
16 KiB
HTML
544 lines
16 KiB
HTML
<!DOCTYPE html>
|
|
<!--
|
|
This test was procedurally generated. Please do not modify it directly.
|
|
Sources:
|
|
- fetch/metadata/tools/fetch-metadata.conf.yml
|
|
- fetch/metadata/tools/templates/header-link.sub.html
|
|
-->
|
|
<html lang="en">
|
|
<meta charset="utf-8">
|
|
<title>HTTP headers on request for HTTP "Link" header</title>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="/fetch/metadata/resources/helper.sub.js"></script>
|
|
<body>
|
|
<script>
|
|
'use strict';
|
|
|
|
function induceRequest(url, rel, test) {
|
|
const iframe = document.createElement('iframe');
|
|
|
|
iframe.setAttribute(
|
|
'src',
|
|
'/fetch/metadata/resources/header-link.py' +
|
|
`?location=${encodeURIComponent(url)}&rel=${rel}`
|
|
);
|
|
|
|
document.body.appendChild(iframe);
|
|
test.add_cleanup(() => iframe.remove());
|
|
|
|
return new Promise((resolve) => {
|
|
iframe.onload = iframe.onerror = resolve;
|
|
});
|
|
}
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpOrigin'], {mime: 'text/html'}),
|
|
'icon',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-site');
|
|
});
|
|
}, 'sec-fetch-site rel=icon - Not sent to non-trustworthy same-origin destination');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpOrigin'], {mime: 'text/html'}),
|
|
'stylesheet',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-site');
|
|
});
|
|
}, 'sec-fetch-site rel=stylesheet - Not sent to non-trustworthy same-origin destination');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpSameSite'], {mime: 'text/html'}),
|
|
'icon',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-site');
|
|
});
|
|
}, 'sec-fetch-site rel=icon - Not sent to non-trustworthy same-site destination');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpSameSite'], {mime: 'text/html'}),
|
|
'stylesheet',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-site');
|
|
});
|
|
}, 'sec-fetch-site rel=stylesheet - Not sent to non-trustworthy same-site destination');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpCrossSite'], {mime: 'text/html'}),
|
|
'icon',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-site');
|
|
});
|
|
}, 'sec-fetch-site rel=icon - Not sent to non-trustworthy cross-site destination');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpCrossSite'], {mime: 'text/html'}),
|
|
'stylesheet',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-site');
|
|
});
|
|
}, 'sec-fetch-site rel=stylesheet - Not sent to non-trustworthy cross-site destination');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpOrigin'], {mime: 'text/html'}),
|
|
'icon',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-mode');
|
|
});
|
|
}, 'sec-fetch-mode rel=icon - Not sent to non-trustworthy same-origin destination');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpOrigin'], {mime: 'text/html'}),
|
|
'stylesheet',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-mode');
|
|
});
|
|
}, 'sec-fetch-mode rel=stylesheet - Not sent to non-trustworthy same-origin destination');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpSameSite'], {mime: 'text/html'}),
|
|
'icon',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-mode');
|
|
});
|
|
}, 'sec-fetch-mode rel=icon - Not sent to non-trustworthy same-site destination');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpSameSite'], {mime: 'text/html'}),
|
|
'stylesheet',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-mode');
|
|
});
|
|
}, 'sec-fetch-mode rel=stylesheet - Not sent to non-trustworthy same-site destination');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpCrossSite'], {mime: 'text/html'}),
|
|
'icon',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-mode');
|
|
});
|
|
}, 'sec-fetch-mode rel=icon - Not sent to non-trustworthy cross-site destination');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpCrossSite'], {mime: 'text/html'}),
|
|
'stylesheet',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-mode');
|
|
});
|
|
}, 'sec-fetch-mode rel=stylesheet - Not sent to non-trustworthy cross-site destination');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpOrigin'], {mime: 'text/html'}),
|
|
'icon',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-dest');
|
|
});
|
|
}, 'sec-fetch-dest rel=icon - Not sent to non-trustworthy same-origin destination');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpOrigin'], {mime: 'text/html'}),
|
|
'stylesheet',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-dest');
|
|
});
|
|
}, 'sec-fetch-dest rel=stylesheet - Not sent to non-trustworthy same-origin destination');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpSameSite'], {mime: 'text/html'}),
|
|
'icon',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-dest');
|
|
});
|
|
}, 'sec-fetch-dest rel=icon - Not sent to non-trustworthy same-site destination');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpSameSite'], {mime: 'text/html'}),
|
|
'stylesheet',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-dest');
|
|
});
|
|
}, 'sec-fetch-dest rel=stylesheet - Not sent to non-trustworthy same-site destination');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpCrossSite'], {mime: 'text/html'}),
|
|
'icon',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-dest');
|
|
});
|
|
}, 'sec-fetch-dest rel=icon - Not sent to non-trustworthy cross-site destination');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpCrossSite'], {mime: 'text/html'}),
|
|
'stylesheet',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-dest');
|
|
});
|
|
}, 'sec-fetch-dest rel=stylesheet - Not sent to non-trustworthy cross-site destination');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpOrigin'], {mime: 'text/html'}),
|
|
'icon',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-user');
|
|
});
|
|
}, 'sec-fetch-user rel=icon - Not sent to non-trustworthy same-origin destination');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpOrigin'], {mime: 'text/html'}),
|
|
'stylesheet',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-user');
|
|
});
|
|
}, 'sec-fetch-user rel=stylesheet - Not sent to non-trustworthy same-origin destination');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpSameSite'], {mime: 'text/html'}),
|
|
'icon',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-user');
|
|
});
|
|
}, 'sec-fetch-user rel=icon - Not sent to non-trustworthy same-site destination');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpSameSite'], {mime: 'text/html'}),
|
|
'stylesheet',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-user');
|
|
});
|
|
}, 'sec-fetch-user rel=stylesheet - Not sent to non-trustworthy same-site destination');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpCrossSite'], {mime: 'text/html'}),
|
|
'icon',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-user');
|
|
});
|
|
}, 'sec-fetch-user rel=icon - Not sent to non-trustworthy cross-site destination');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpCrossSite'], {mime: 'text/html'}),
|
|
'stylesheet',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-user');
|
|
});
|
|
}, 'sec-fetch-user rel=stylesheet - Not sent to non-trustworthy cross-site destination');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpOrigin'], {mime: 'text/html'}),
|
|
'icon',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-storage-access');
|
|
});
|
|
}, 'sec-fetch-storage-access rel=icon - Not sent to non-trustworthy same-origin destination');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpOrigin'], {mime: 'text/html'}),
|
|
'stylesheet',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-storage-access');
|
|
});
|
|
}, 'sec-fetch-storage-access rel=stylesheet - Not sent to non-trustworthy same-origin destination');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpSameSite'], {mime: 'text/html'}),
|
|
'icon',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-storage-access');
|
|
});
|
|
}, 'sec-fetch-storage-access rel=icon - Not sent to non-trustworthy same-site destination');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpSameSite'], {mime: 'text/html'}),
|
|
'stylesheet',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-storage-access');
|
|
});
|
|
}, 'sec-fetch-storage-access rel=stylesheet - Not sent to non-trustworthy same-site destination');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpCrossSite'], {mime: 'text/html'}),
|
|
'icon',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-storage-access');
|
|
});
|
|
}, 'sec-fetch-storage-access rel=icon - Not sent to non-trustworthy cross-site destination');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpCrossSite'], {mime: 'text/html'}),
|
|
'stylesheet',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-storage-access');
|
|
});
|
|
}, 'sec-fetch-storage-access rel=stylesheet - Not sent to non-trustworthy cross-site destination');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpsOrigin', 'httpOrigin'], {mime: 'text/html'}),
|
|
'icon',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-site');
|
|
});
|
|
}, 'sec-fetch-site rel=icon - HTTPS downgrade (header not sent)');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpsOrigin', 'httpOrigin'], {mime: 'text/html'}),
|
|
'stylesheet',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-site');
|
|
});
|
|
}, 'sec-fetch-site rel=stylesheet - HTTPS downgrade (header not sent)');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpOrigin', 'httpsOrigin'], {mime: 'text/html'}),
|
|
'icon',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_own_property(headers, 'sec-fetch-site');
|
|
assert_array_equals(headers['sec-fetch-site'], ['cross-site']);
|
|
});
|
|
}, 'sec-fetch-site rel=icon - HTTPS upgrade');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpOrigin', 'httpsOrigin'], {mime: 'text/html'}),
|
|
'stylesheet',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_own_property(headers, 'sec-fetch-site');
|
|
assert_array_equals(headers['sec-fetch-site'], ['cross-site']);
|
|
});
|
|
}, 'sec-fetch-site rel=stylesheet - HTTPS upgrade');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpsOrigin', 'httpOrigin', 'httpsOrigin'], {mime: 'text/html'}),
|
|
'icon',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_own_property(headers, 'sec-fetch-site');
|
|
assert_array_equals(headers['sec-fetch-site'], ['cross-site']);
|
|
});
|
|
}, 'sec-fetch-site rel=icon - HTTPS downgrade-upgrade');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
makeRequestURL(key, ['httpsOrigin', 'httpOrigin', 'httpsOrigin'], {mime: 'text/html'}),
|
|
'stylesheet',
|
|
t
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_own_property(headers, 'sec-fetch-site');
|
|
assert_array_equals(headers['sec-fetch-site'], ['cross-site']);
|
|
});
|
|
}, 'sec-fetch-site rel=stylesheet - HTTPS downgrade-upgrade');
|
|
</script>
|
|
</body>
|
|
</html>
|