blob: bc7ec992219061e01c4b8c1b9877a7c7ba9831b6 [file] [log] [blame]
<!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-a.sub.html
-->
<html lang="en">
<meta charset="utf-8">
<title>HTTP headers on request for HTML "a" element navigation</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, {test, userActivated, attributes}) {
const win = window.open();
const anchor = win.document.createElement('a');
anchor.setAttribute('href', url);
for (const [ name, value ] of Object.entries(attributes)) {
anchor.setAttribute(name, value);
}
win.document.body.appendChild(anchor);
test.add_cleanup(() => win.close());
if (userActivated) {
test_driver.bless('enable user activation', () => anchor.click());
} else {
anchor.click();
}
}
promise_test((t) => {
const key = '{{uuid()}}';
induceRequest(
makeRequestURL(key, ['httpsOrigin'], {mime: 'text/html'}),
{
test: t,
userActivated: false,
attributes: {}
}
);
// `induceRequest` does not necessarily trigger a navigation, so the Python
// handler must be polled until it has received the initial request.
return retrieve(key, {poll: true})
.then((headers) => {
assert_own_property(headers, 'sec-fetch-frame-ancestors');
assert_array_equals(headers['sec-fetch-frame-ancestors'], ['same-origin']);
});
}, 'sec-fetch-frame-ancestors - Same origin - no attributes');
promise_test((t) => {
const key = '{{uuid()}}';
induceRequest(
makeRequestURL(key, ['httpsCrossSite'], {mime: 'text/html'}),
{
test: t,
userActivated: false,
attributes: {}
}
);
// `induceRequest` does not necessarily trigger a navigation, so the Python
// handler must be polled until it has received the initial request.
return retrieve(key, {poll: true})
.then((headers) => {
assert_own_property(headers, 'sec-fetch-frame-ancestors');
assert_array_equals(headers['sec-fetch-frame-ancestors'], ['cross-site']);
});
}, 'sec-fetch-frame-ancestors - Cross-site - no attributes');
promise_test((t) => {
const key = '{{uuid()}}';
induceRequest(
makeRequestURL(key, ['httpsSameSite'], {mime: 'text/html'}),
{
test: t,
userActivated: false,
attributes: {}
}
);
// `induceRequest` does not necessarily trigger a navigation, so the Python
// handler must be polled until it has received the initial request.
return retrieve(key, {poll: true})
.then((headers) => {
assert_own_property(headers, 'sec-fetch-frame-ancestors');
assert_array_equals(headers['sec-fetch-frame-ancestors'], ['same-site']);
});
}, 'sec-fetch-frame-ancestors - Same site - no attributes');
</script>
</body>
</html>