diff options
Diffstat (limited to 'testing/web-platform/tests/geolocation-API/enabled-by-permissions-policy.https.sub.html')
-rw-r--r-- | testing/web-platform/tests/geolocation-API/enabled-by-permissions-policy.https.sub.html | 42 |
1 files changed, 24 insertions, 18 deletions
diff --git a/testing/web-platform/tests/geolocation-API/enabled-by-permissions-policy.https.sub.html b/testing/web-platform/tests/geolocation-API/enabled-by-permissions-policy.https.sub.html index 007f79ab9c..332e4cea16 100644 --- a/testing/web-platform/tests/geolocation-API/enabled-by-permissions-policy.https.sub.html +++ b/testing/web-platform/tests/geolocation-API/enabled-by-permissions-policy.https.sub.html @@ -10,36 +10,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"); - const result = await new Promise((resolve, reject) => { + }); + + promise_test(async (test) => { + const position = await new Promise((resolve, reject) => { navigator.geolocation.getCurrentPosition(resolve, reject); }); assert_true( - result instanceof GeolocationPosition, + position instanceof GeolocationPosition, "Expected a GeolocationPosition" ); }, "Permissions-Policy header geolocation=* 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=* allows same-origin iframes."); - async_test((t) => { - test_feature_availability( - "geolocation", - t, - cross_origin_src, - expect_feature_available_default - ); + promise_test(async (test) => { + await test_feature_availability({ + feature_description: "Geolocation API", + test, + src: cross_origin_src, + expect_feature_available: expect_feature_available_default, + feature_name: "geolocation", + is_promise_test: true, + }); }, "Permissions-Policy header geolocation=* allows cross-origin iframes."); </script> </body> |