summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/permissions-policy/bluetooth-allowed-by-permissions-policy-attribute-redirect-on-load.https.sub.html
blob: a5f44795111f9eaf45b53cd4e65f668e6390120c (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
<!DOCTYPE html>
<body>
  <script src=/resources/testharness.js></script>
  <script src=/resources/testharnessreport.js></script>
  <script src=/bluetooth/resources/bluetooth-test.js></script>
  <script src=/permissions-policy/resources/permissions-policy.js></script>
  <script>
    'use strict'

    const relative_path = '/permissions-policy/resources/permissions-policy-bluetooth.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://{{domains[www]}}:{{ports[https][0]}}' + relative_path;
    const feature_name = 'permissions policy "bluetooth"';
    const header = 'permissions policy allow="bluetooth"';

    bluetooth_test(() => {
      async_test(t => {
        test_feature_availability('bluetooth.getDevices()', t, same_origin_src, expect_feature_available_default, 'bluetooth');
      }, header + ' allows same-origin navigation in an iframe.');

      async_test(t => {
        test_feature_availability('bluetooth.getDevices()', t, cross_origin_src, expect_feature_unavailable_default, 'bluetooth');
      }, header + ' disallows cross-origin navigation in an iframe.');
    });
  </script>
</body>