summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/geolocation-API/enabled-by-permission-policy-attribute-redirect-on-load.https.sub.html
blob: d25afa52bb7146b30f70792737f247879dd68690 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<body>
  <script src="/resources/testharness.js"></script>
  <script src="/resources/testharnessreport.js"></script>
  <script src="/permissions-policy/resources/permissions-policy.js"></script>
  <script>
    "use strict";

    const relative_path =
      "/permissions-policy/resources/permissions-policy-geolocation.html";
    const base_src = "/permissions-policy/resources/redirect-on-load.html#";
    const same_origin_src = base_src + relative_path;
    const cross_origin_src = `${base_src}https://{{hosts[alt][]}}:{{ports[https][0]}}${relative_path}`;

    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 allow="geolocation" allows same-origin redirection');

    promise_test(async (test) => {
      await test_feature_availability({
        feature_description: "Geolocation API",
        test,
        src: cross_origin_src,
        expect_feature_available: expect_feature_available_default,
        is_promise_test: true,
        feature_name: "geolocation",
      });
    }, 'Permissions-Policy allow="geolocation" allows cross-origin redirection');
  </script>
</body>