Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!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/element-audio.sub.html
-->
<html lang="en">
<meta charset="utf-8">
<title>HTTP headers on request for HTML "audio" element source</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, attributes) {
const audio = document.createElement('audio');
for (const [ name, value ] of Object.entries(attributes)) {
audio.setAttribute(name, value);
}
return new Promise((resolve) => {
audio.setAttribute('src', url);
audio.onload = audio.onerror = resolve;
});
}
promise_test(() => {
const key = '{{uuid()}}';
return induceRequest(
makeRequestURL(key, ['httpOrigin']),
{}
)
.then(() => retrieve(key))
.then((headers) => {
assert_not_own_property(headers, 'sec-fetch-site');
});
}, 'sec-fetch-site - Not sent to non-trustworthy same-origin destination, no attributes');
promise_test(() => {
const key = '{{uuid()}}';
return induceRequest(
makeRequestURL(key, ['httpSameSite']),
{}
)
.then(() => retrieve(key))
.then((headers) => {
assert_not_own_property(headers, 'sec-fetch-site');
});
}, 'sec-fetch-site - Not sent to non-trustworthy same-site destination, no attributes');
promise_test(() => {
const key = '{{uuid()}}';
return induceRequest(
makeRequestURL(key, ['httpCrossSite']),
{}
)
.then(() => retrieve(key))
.then((headers) => {
assert_not_own_property(headers, 'sec-fetch-site');
});
}, 'sec-fetch-site - Not sent to non-trustworthy cross-site destination, no attributes');
promise_test(() => {
const key = '{{uuid()}}';
return induceRequest(
makeRequestURL(key, ['httpOrigin']),
{}
)
.then(() => retrieve(key))
.then((headers) => {
assert_not_own_property(headers, 'sec-fetch-mode');
});
}, 'sec-fetch-mode - Not sent to non-trustworthy same-origin destination, no attributes');
promise_test(() => {
const key = '{{uuid()}}';
return induceRequest(
makeRequestURL(key, ['httpSameSite']),
{}
)
.then(() => retrieve(key))
.then((headers) => {
assert_not_own_property(headers, 'sec-fetch-mode');
});
}, 'sec-fetch-mode - Not sent to non-trustworthy same-site destination, no attributes');
promise_test(() => {
const key = '{{uuid()}}';
return induceRequest(
makeRequestURL(key, ['httpCrossSite']),
{}
)
.then(() => retrieve(key))
.then((headers) => {
assert_not_own_property(headers, 'sec-fetch-mode');
});
}, 'sec-fetch-mode - Not sent to non-trustworthy cross-site destination, no attributes');
promise_test(() => {
const key = '{{uuid()}}';
return induceRequest(
makeRequestURL(key, ['httpOrigin']),
{}
)
.then(() => retrieve(key))
.then((headers) => {
assert_not_own_property(headers, 'sec-fetch-dest');
});
}, 'sec-fetch-dest - Not sent to non-trustworthy same-origin destination, no attributes');
promise_test(() => {
const key = '{{uuid()}}';
return induceRequest(
makeRequestURL(key, ['httpSameSite']),
{}
)
.then(() => retrieve(key))
.then((headers) => {
assert_not_own_property(headers, 'sec-fetch-dest');
});
}, 'sec-fetch-dest - Not sent to non-trustworthy same-site destination, no attributes');
promise_test(() => {
const key = '{{uuid()}}';
return induceRequest(
makeRequestURL(key, ['httpCrossSite']),
{}
)
.then(() => retrieve(key))
.then((headers) => {
assert_not_own_property(headers, 'sec-fetch-dest');
});
}, 'sec-fetch-dest - Not sent to non-trustworthy cross-site destination, no attributes');
promise_test(() => {
const key = '{{uuid()}}';
return induceRequest(
makeRequestURL(key, ['httpOrigin']),
{}
)
.then(() => retrieve(key))
.then((headers) => {
assert_not_own_property(headers, 'sec-fetch-user');
});
}, 'sec-fetch-user - Not sent to non-trustworthy same-origin destination, no attributes');
promise_test(() => {
const key = '{{uuid()}}';
return induceRequest(
makeRequestURL(key, ['httpSameSite']),
{}
)
.then(() => retrieve(key))
.then((headers) => {
assert_not_own_property(headers, 'sec-fetch-user');
});
}, 'sec-fetch-user - Not sent to non-trustworthy same-site destination, no attributes');
promise_test(() => {
const key = '{{uuid()}}';
return induceRequest(
makeRequestURL(key, ['httpCrossSite']),
{}
)
.then(() => retrieve(key))
.then((headers) => {
assert_not_own_property(headers, 'sec-fetch-user');
});
}, 'sec-fetch-user - Not sent to non-trustworthy cross-site destination, no attributes');
promise_test(() => {
const key = '{{uuid()}}';
return induceRequest(
makeRequestURL(key, ['httpsOrigin', 'httpOrigin']),
{}
)
.then(() => retrieve(key))
.then((headers) => {
assert_not_own_property(headers, 'sec-fetch-site');
});
}, 'sec-fetch-site - HTTPS downgrade (header not sent), no attributes');
promise_test(() => {
const key = '{{uuid()}}';
return induceRequest(
makeRequestURL(key, ['httpOrigin', 'httpsOrigin']),
{}
)
.then(() => retrieve(key))
.then((headers) => {
assert_own_property(headers, 'sec-fetch-site');
assert_array_equals(headers['sec-fetch-site'], ['cross-site']);
});
}, 'sec-fetch-site - HTTPS upgrade, no attributes');
promise_test(() => {
const key = '{{uuid()}}';
return induceRequest(
makeRequestURL(key, ['httpsOrigin', 'httpOrigin', 'httpsOrigin']),
{}
)
.then(() => retrieve(key))
.then((headers) => {
assert_own_property(headers, 'sec-fetch-site');
assert_array_equals(headers['sec-fetch-site'], ['cross-site']);
});
}, 'sec-fetch-site - HTTPS downgrade-upgrade, no attributes');
</script>
</body>
</html>