chromium/third_party/blink/web_tests/external/wpt/permissions-policy/bluetooth-allowed-by-permissions-policy-attribute-redirect-on-load.https.sub.html

<!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>