307 lines
8.5 KiB
HTML
307 lines
8.5 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/svg-image.sub.html
|
|
-->
|
|
<html lang="en">
|
|
<meta charset="utf-8">
|
|
<meta name="timeout" content="long">
|
|
<title>HTTP headers on request for SVG "image" 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';
|
|
|
|
const params = {
|
|
body: `
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="123" height="123">
|
|
<rect fill="lime" width="123" height="123"/>
|
|
</svg>
|
|
`,
|
|
mime: 'image/svg+xml'
|
|
};
|
|
|
|
function induceRequest(t, url, attributes) {
|
|
const svg = document.createElementNS("http://www.w3.org/2000/svg", "svg");
|
|
svg.setAttributeNS(
|
|
"http://www.w3.org/2000/xmlns/",
|
|
"xmlns:xlink",
|
|
"http://www.w3.org/1999/xlink"
|
|
);
|
|
const image = document.createElementNS("http://www.w3.org/2000/svg", "image");
|
|
image.setAttribute("href", url);
|
|
svg.appendChild(image);
|
|
|
|
for (const [ name, value ] of Object.entries(attributes)) {
|
|
image.setAttribute(name, value);
|
|
}
|
|
|
|
document.body.appendChild(svg);
|
|
t.add_cleanup(() => svg.remove());
|
|
|
|
return new Promise((resolve, reject) => {
|
|
image.onload = resolve;
|
|
image.onerror = reject;
|
|
});
|
|
}
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
t,
|
|
makeRequestURL(key, ['httpOrigin'], params),
|
|
{}
|
|
)
|
|
.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((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
t,
|
|
makeRequestURL(key, ['httpSameSite'], params),
|
|
{}
|
|
)
|
|
.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((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
t,
|
|
makeRequestURL(key, ['httpCrossSite'], params),
|
|
{}
|
|
)
|
|
.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((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
t,
|
|
makeRequestURL(key, ['httpOrigin'], params),
|
|
{}
|
|
)
|
|
.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((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
t,
|
|
makeRequestURL(key, ['httpSameSite'], params),
|
|
{}
|
|
)
|
|
.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((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
t,
|
|
makeRequestURL(key, ['httpCrossSite'], params),
|
|
{}
|
|
)
|
|
.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((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
t,
|
|
makeRequestURL(key, ['httpOrigin'], params),
|
|
{}
|
|
)
|
|
.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((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
t,
|
|
makeRequestURL(key, ['httpSameSite'], params),
|
|
{}
|
|
)
|
|
.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((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
t,
|
|
makeRequestURL(key, ['httpCrossSite'], params),
|
|
{}
|
|
)
|
|
.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((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
t,
|
|
makeRequestURL(key, ['httpOrigin'], params),
|
|
{}
|
|
)
|
|
.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((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
t,
|
|
makeRequestURL(key, ['httpSameSite'], params),
|
|
{}
|
|
)
|
|
.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((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
t,
|
|
makeRequestURL(key, ['httpCrossSite'], params),
|
|
{}
|
|
)
|
|
.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((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
t,
|
|
makeRequestURL(key, ['httpOrigin'], params),
|
|
{}
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-storage-access');
|
|
});
|
|
}, 'sec-fetch-storage-access - Not sent to non-trustworthy same-origin destination no attributes');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
t,
|
|
makeRequestURL(key, ['httpSameSite'], params),
|
|
{}
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-storage-access');
|
|
});
|
|
}, 'sec-fetch-storage-access - Not sent to non-trustworthy same-site destination no attributes');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
t,
|
|
makeRequestURL(key, ['httpCrossSite'], params),
|
|
{}
|
|
)
|
|
.then(() => retrieve(key))
|
|
.then((headers) => {
|
|
assert_not_own_property(headers, 'sec-fetch-storage-access');
|
|
});
|
|
}, 'sec-fetch-storage-access - Not sent to non-trustworthy cross-site destination no attributes');
|
|
|
|
promise_test((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
t,
|
|
makeRequestURL(key, ['httpsOrigin', 'httpOrigin'], params),
|
|
{}
|
|
)
|
|
.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((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
t,
|
|
makeRequestURL(key, ['httpOrigin', 'httpsOrigin'], params),
|
|
{}
|
|
)
|
|
.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((t) => {
|
|
const key = '{{uuid()}}';
|
|
|
|
return induceRequest(
|
|
t,
|
|
makeRequestURL(key, ['httpsOrigin', 'httpOrigin', 'httpsOrigin'], params),
|
|
{}
|
|
)
|
|
.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>
|