Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

  • This test has a WPT meta file that expects 1 subtest issues.
  • This WPT test may be referenced by the following Test IDs:
<!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>