-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add feature policy for client hints, used for third-party subresources. #16720
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
64 changes: 64 additions & 0 deletions
64
client-hints/accept_ch_feature_policy.tentative.sub.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,64 @@ | ||
<html> | ||
<body> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="/common/get-host-info.sub.js"></script> | ||
<script> | ||
|
||
// If the response for the HTML file contains "Accept-CH" in the response | ||
// headers, then the browser should attach the specified client hints in the | ||
// HTTP request headers depending on whether the resource is being fetched from | ||
// the same origin or a different origin. Test this functionality by fetching | ||
// same-origin and cross-origin resources from this page. The response headers | ||
// for this page include "Accept-CH: device-memory, dpr, viewport-width, rtt, downlink, ect". | ||
// | ||
// 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/echo_client_hints_received.py").then(r => { | ||
assert_equals(r.status, 200) | ||
// Verify that the browser includes client hints in the headers for a | ||
// same-origin fetch which not specifically excluded via Feature-Policy. | ||
assert_true(r.headers.has("device-memory-received"), "device-memory-received"); | ||
assert_false(r.headers.has("dpr-received"), "dpr-received"); | ||
assert_false(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"); | ||
|
||
promise_test(t => { | ||
return fetch(get_host_info()["HTTPS_REMOTE_ORIGIN"] + "/client-hints/echo_client_hints_received.py").then(r => { | ||
assert_equals(r.status, 200) | ||
// Verify that the browser includes client hints in the headers for a | ||
// cross-origin fetch which are specifically requested via Feature-Policy. | ||
assert_true(r.headers.has("device-memory-received"), "device-memory-received"); | ||
assert_false(r.headers.has("dpr-received"), "dpr-received"); | ||
assert_false(r.headers.has("lang-received"), "lang-received"); | ||
assert_false(r.headers.has("viewport-width-received"), "viewport-width-received"); | ||
assert_false(r.headers.has("rtt-received"), "rtt-received"); | ||
assert_false(r.headers.has("downlink-received"), "downlink-received"); | ||
assert_false(r.headers.has("ect-received"), "ect-received"); | ||
}); | ||
}, "Cross-Origin Accept-CH header test"); | ||
|
||
|
||
|
||
</script> | ||
|
||
</body> | ||
</html> |
2 changes: 2 additions & 0 deletions
2
client-hints/accept_ch_feature_policy.tentative.sub.https.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: device-memory, dpr, viewport-width, rtt, downlink, ect, lang | ||
Feature-Policy: ch-device-memory *; ch-dpr 'none'; ch-viewport-width 'self'; ch-lang 'none' |
62 changes: 62 additions & 0 deletions
62
client-hints/accept_ch_no_feature_policy.tentative.sub.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,62 @@ | ||
<html> | ||
<body> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="/common/get-host-info.sub.js"></script> | ||
<script> | ||
|
||
// If the response for the HTML file contains "Accept-CH" in the response | ||
// headers, then the browser should attach the specified client hints in the | ||
// HTTP request headers depending on whether the resource is being fetched from | ||
// the same origin or a different origin. Test this functionality by fetching | ||
// same-origin and cross-origin resources from this page. The response headers | ||
// for this page include "Accept-CH: device-memory, dpr, viewport-width, rtt, downlink, ect". | ||
// | ||
// 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/echo_client_hints_received.py").then(r => { | ||
assert_equals(r.status, 200) | ||
// Verify that the browser includes client hints in the headers for a | ||
// same-origin fetch with the default feature policy in place. | ||
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("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"); | ||
|
||
promise_test(t => { | ||
return fetch(get_host_info()["HTTPS_REMOTE_ORIGIN"] + "/client-hints/echo_client_hints_received.py").then(r => { | ||
assert_equals(r.status, 200) | ||
// Verify that the browser includes no client hints in the headers for a | ||
// cross-origin fetch with the default feature policy in place. | ||
assert_false(r.headers.has("device-memory-received"), "device-memory-received"); | ||
assert_false(r.headers.has("dpr-received"), "dpr-received"); | ||
assert_false(r.headers.has("viewport-width-received"), "viewport-width-received"); | ||
assert_false(r.headers.has("rtt-received"), "rtt-received"); | ||
assert_false(r.headers.has("downlink-received"), "downlink-received"); | ||
assert_false(r.headers.has("ect-received"), "ect-received"); | ||
}); | ||
}, "Cross-Origin Accept-CH header test"); | ||
|
||
|
||
|
||
</script> | ||
|
||
</body> | ||
</html> |
1 change: 1 addition & 0 deletions
1
client-hints/accept_ch_no_feature_policy.tentative.sub.https.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 @@ | ||
Accept-CH: device-memory, dpr, viewport-width, rtt, downlink, ect |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@clelland this resource is used by http_equiv_accept_ch_lifetime_subresource.tentative.https.html.
Do you think these changes could have made that test flaky?