-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[client hints] Match update behavior to the spec.
Accept-CH: from headers, should override, not merge; including having "" disable things. In http-equiv, OTOH (where it doesn't persist), it should still merge. Change-Id: I5c3c94023b10b265e63a8abe29a431bd1da8dadf Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2093032 Commit-Queue: Maksim Orlovich <morlovich@chromium.org> Reviewed-by: Christian Dullweber <dullweber@chromium.org> Reviewed-by: Yoav Weiss <yoavweiss@chromium.org> Reviewed-by: Avi Drissman <avi@chromium.org> Cr-Commit-Position: refs/heads/master@{#766003}
- Loading branch information
Showing
9 changed files
with
130 additions
and
12 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
client-hints/accept-ch-stickiness/resources/accept-ch-blank.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<html> | ||
<body> | ||
|
||
<!-- Page with an empty accept-ch header, which disables client hints --> | ||
<script> | ||
window.top.opener.postMessage('Loaded', '*'); | ||
</script> | ||
|
||
|
||
</body> | ||
</html> |
2 changes: 2 additions & 0 deletions
2
client-hints/accept-ch-stickiness/resources/accept-ch-blank.html.headers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Accept-CH: | ||
Access-Control-Allow-Origin: * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
client-hints/accept-ch-stickiness/resources/no-accept-ch.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<html> | ||
<body> | ||
|
||
<!-- Page with out an accept-ch header; client hints are unaffected --> | ||
<script> | ||
window.top.opener.postMessage('Loaded', '*'); | ||
</script> | ||
|
||
|
||
</body> | ||
</html> |
1 change: 1 addition & 0 deletions
1
client-hints/accept-ch-stickiness/resources/no-accept-ch.html.headers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Access-Control-Allow-Origin: * |
20 changes: 20 additions & 0 deletions
20
client-hints/accept-ch-stickiness/same-origin-navigation-empty-accept-ch.https.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<!doctype html> | ||
<meta name="timeout" content="long"> | ||
<title>Accept-CH Persistence test</title> | ||
<body> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="/common/get-host-info.sub.js"></script> | ||
<script src="resources/accept-ch-test.js"></script> | ||
|
||
<script> | ||
// Tests that an empty accept-ch header disables client hints. | ||
const test_name = "empty-ch on navigation"; | ||
verify_initial_state(echo, test_name); | ||
attempt_set("navigation", accept, test_name, " to non-empty first"); | ||
attempt_set("navigation", accept_blank, test_name, " to empty second"); | ||
verify_navigation_state(do_not_expect, test_name); | ||
</script> | ||
</body> | ||
</html> | ||
|
20 changes: 20 additions & 0 deletions
20
client-hints/accept-ch-stickiness/same-origin-navigation-no-accept-ch.https.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<!doctype html> | ||
<meta name="timeout" content="long"> | ||
<title>Accept-CH Persistence test</title> | ||
<body> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="/common/get-host-info.sub.js"></script> | ||
<script src="resources/accept-ch-test.js"></script> | ||
|
||
<script> | ||
// Tests that a non-existing accept-ch header doesn't affect client hints. | ||
const test_name = "empty-ch on navigation"; | ||
verify_initial_state(echo, test_name); | ||
attempt_set("navigation", accept, test_name, " to non-empty first"); | ||
attempt_set("navigation", no_accept, test_name, " w/o header second"); | ||
verify_navigation_state(expect, test_name); | ||
</script> | ||
</body> | ||
</html> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<html> | ||
<head> | ||
<meta http-equiv="Accept-CH" content="viewport-width, rtt"> | ||
<meta http-equiv="Accept-CH" content="downlink, ect, lang"> | ||
<body> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="/common/get-host-info.sub.js"></script> | ||
<script> | ||
|
||
// Test of merge of http-equiv headers on top of accept-ch provided ones. | ||
// | ||
// resources/echo-client-hints-received.py sets the response headers depending on the set | ||
// of client hints it receives in the request headers. | ||
|
||
promise_test(t => { | ||
return fetch(get_host_info()["HTTPS_ORIGIN"] + "/client-hints/resources/echo-client-hints-received.py").then(r => { | ||
assert_equals(r.status, 200) | ||
// Verify that the browser includes client hints in the headers. | ||
assert_true(r.headers.has("device-memory-received"), "device-memory-received"); | ||
assert_true(r.headers.has("dpr-received"), "dpr-received"); | ||
assert_true(r.headers.has("lang-received"), "lang-received"); | ||
assert_true(r.headers.has("viewport-width-received"), "viewport-width-received"); | ||
|
||
assert_true(r.headers.has("rtt-received"), "rtt-received"); | ||
var rtt = parseInt(r.headers.get("rtt-received")); | ||
assert_greater_than_equal(rtt, 0); | ||
assert_less_than_equal(rtt, 3000); | ||
assert_equals(rtt % 50, 0, 'rtt must be a multiple of 50 msec'); | ||
|
||
assert_true(r.headers.has("downlink-received"), "downlink-received"); | ||
var downlinkKbps = r.headers.get("downlink-received") * 1000; | ||
assert_greater_than_equal(downlinkKbps, 0); | ||
assert_less_than_equal(downlinkKbps, 10000); | ||
|
||
assert_in_array(r.headers.get("ect-received"), ["slow-2g", "2g", | ||
"3g", "4g"], 'ect-received is unexpected'); | ||
}); | ||
}, "Accept-CH header test"); | ||
|
||
</script> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Accept-CH: device-memory, dpr | ||
|