mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 13:48:23 +02:00
Automatic update from web-platform-testsModify source path for wpt test of Accept-CH This CL modifies source path that is used in wpt test of Accept-CH. window.open() uses the base URL of the entry realm's window in order to resolve a relative URL. The entry realm should be main window on calling function |acceptChLoaded| as a listener for load event of non-main window in this test. We want to open do_not_expect_client_hints_headers.html in resources/ so the relative URL in this test should start from "resources/". Also, entry realm is not set correctly by current chromium implementation, so fixed test is assumed to fail. Change-Id: I973393e0a7ca74cac882eb58f5a58aa9a81556ff Reviewed-on: https://chromium-review.googlesource.com/1179511 Commit-Queue: Yuki Yamada <yukiy@google.com> Reviewed-by: Tarun Bansal <tbansal@chromium.org> Reviewed-by: Yuki Shiino <yukishiino@chromium.org> Reviewed-by: Kentaro Hara <haraken@chromium.org> Reviewed-by: Hitoshi Yoshida <peria@chromium.org> Cr-Commit-Position: refs/heads/master@{#584958} -- wpt-commits: cd356d332be2a1edb92ae8bb185d0ff3fb40a176 wpt-pr: 12542
67 lines
2.5 KiB
HTML
67 lines
2.5 KiB
HTML
<html>
|
|
<title>Accept-CH test</title>
|
|
<body>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
|
|
<!--
|
|
Apart from this webpage, the test opens two more html web page. One test is run
|
|
in this web page, and two in the other web pages.
|
|
-->
|
|
|
|
<script>
|
|
|
|
// This test fetches resources/accept_ch.html. The response headers to
|
|
// that webpage contains only the Accept-CH header. Due to the missing
|
|
// Accept-CH-Lifetime header, the user-agent should not persist origin
|
|
// preferences for the client hints specified in Accept-CH header.
|
|
|
|
// Next, to verify that the origin preferences were not persisted by the user
|
|
// agent, this test fetches resources/do_not_expect_client_hints_headers.html
|
|
// in a new window. Fetching of
|
|
// resources/do_not_expect_client_hints_headers.html
|
|
// verifies that the user agent does not send the client hints in the request
|
|
// headers.
|
|
|
|
// Test is marked as tentative until https://github.com/whatwg/fetch/issues/726
|
|
// is resolved.
|
|
|
|
// First, verify the initial state to make sure that the browser does not have
|
|
// client hints preferences cached from a previous run of the test.
|
|
promise_test(t => {
|
|
return fetch("echo_client_hints_received.py").then(r => {
|
|
assert_equals(r.status, 200)
|
|
// Verify that the browser did not include client hints in the request
|
|
// headers when fetching echo_client_hints_received.py.
|
|
assert_false(r.headers.has("device-memory-received"), "device-memory-received");
|
|
});
|
|
}, "Precondition: Test that the browser does not have client hints preferences cached");
|
|
|
|
async_test(t => {
|
|
window.addEventListener('message', function(e) {
|
|
if(!e.source.location.pathname.includes("do_not_expect_client_hints_headers.html")) {
|
|
return;
|
|
}
|
|
if(typeof e.data != "string")
|
|
return;
|
|
assert_equals(e.data, "PASS");
|
|
t.done();
|
|
})
|
|
}, "Loading of resources/do_not_expect_client_hints_headers.html did not finish.");
|
|
|
|
function acceptChLoaded() {
|
|
// Open a new window. Verify that the user agent does not attach the client
|
|
// hints.
|
|
var verify_win = window.open("resources/do_not_expect_client_hints_headers.html");
|
|
assert_not_equals(verify_win, null, "Popup windows not allowed?");
|
|
}
|
|
|
|
// Fetching this webpage should NOT cause user-agent to persist client hint
|
|
// preferences for the origin.
|
|
var win = window.open("resources/accept_ch.html");
|
|
assert_not_equals(win, null, "Popup windows not allowed?");
|
|
win.addEventListener('load', acceptChLoaded, false);
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|