Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

  • This WPT test may be referenced by the following Test IDs:
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/context-helper.js"></script>
<script>
window.scriptToRun = 'relevantWindow.location.href = "target.html";';
async_test(t => {
window.addEventListener("message", t.step_func_done(function(e) {
// Base URL used for parsing a relative URL to `target.html`
// should be the base URL of the entry settings object in
assert_equals(
e.data.location,
new URL('target.html', entryUrl).href,
'Base URL should use the entry settings object');
// `document.referrer` should reflect the source browsing context,
// which is the incumbent in
assert_equals(
e.data.referrer, incumbentUrl,
'Referrer should use the incumbent settings object');
}));
}, 'Fetch client and URL resolution for location.href setter');
</script>
<iframe id="entry" src="entry/entry.html"></iframe>