diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-12 05:43:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-12 05:43:14 +0000 |
commit | 8dd16259287f58f9273002717ec4d27e97127719 (patch) | |
tree | 3863e62a53829a84037444beab3abd4ed9dfc7d0 /testing/web-platform/tests/geolocation-API/enabled-on-self-origin-by-permissions-policy.https.sub.html | |
parent | Releasing progress-linux version 126.0.1-1~progress7.99u1. (diff) | |
download | firefox-8dd16259287f58f9273002717ec4d27e97127719.tar.xz firefox-8dd16259287f58f9273002717ec4d27e97127719.zip |
Merging upstream version 127.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/geolocation-API/enabled-on-self-origin-by-permissions-policy.https.sub.html')
-rw-r--r-- | testing/web-platform/tests/geolocation-API/enabled-on-self-origin-by-permissions-policy.https.sub.html | 45 |
1 files changed, 28 insertions, 17 deletions
diff --git a/testing/web-platform/tests/geolocation-API/enabled-on-self-origin-by-permissions-policy.https.sub.html b/testing/web-platform/tests/geolocation-API/enabled-on-self-origin-by-permissions-policy.https.sub.html index d879c1c543..5940888b35 100644 --- a/testing/web-platform/tests/geolocation-API/enabled-on-self-origin-by-permissions-policy.https.sub.html +++ b/testing/web-platform/tests/geolocation-API/enabled-on-self-origin-by-permissions-policy.https.sub.html @@ -12,31 +12,42 @@ const same_origin_src = "/permissions-policy/resources/permissions-policy-geolocation.html"; const cross_origin_src = - "https://{{hosts[][]}}:{{ports[https][0]}}" + same_origin_src; + "https://{{hosts[alt][]}}:{{ports[https][0]}}" + same_origin_src; - promise_test(async (t) => { + + promise_setup(async () => { await test_driver.set_permission({ name: "geolocation" }, "granted"); - await new Promise((resolve, reject) => { + }); + + promise_test(async (t) => { + const position = await new Promise((resolve, reject) => { navigator.geolocation.getCurrentPosition(resolve, reject); }); + assert_true( + position instanceof GeolocationPosition, + "Expected a GeolocationPosition" + ); }, "Permissions-Policy header geolocation=(self) allows the top-level document."); - async_test((t) => { - test_feature_availability( - "geolocation", - t, - same_origin_src, - expect_feature_available_default - ); + promise_test(async (test) => { + await test_feature_availability({ + feature_description: "Geolocation API", + test, + src: same_origin_src, + expect_feature_available: expect_feature_available_default, + is_promise_test: true, + }); }, "Permissions-Policy header geolocation=(self) allows same-origin iframes."); - async_test((t) => { - test_feature_availability( - "geolocation", - t, - cross_origin_src, - expect_feature_unavailable_default - ); + promise_test(async (test) => { + await test_feature_availability({ + feature_description: "Geolocation API", + test, + src: cross_origin_src, + expect_feature_available: expect_feature_unavailable_default, + feature_name: "geolocation", + is_promise_test: true, + }); }, "Permissions-Policy header geolocation=(self) disallows cross-origin iframes."); </script> </body> |