Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /webhid/hid-allowed-by-permissions-policy-attribute.https.sub.html - WPT Dashboard Interop Dashboard
<!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 same_origin_src = '/permissions-policy/resources/permissions-policy-hid.html';
const cross_origin_src = sub + same_origin_src;
const same_origin_worker_frame_src =
'/permissions-policy/resources/permissions-policy-hid-worker.html';
const cross_origin_worker_frame_src = sub + same_origin_worker_frame_src;
const feature_name = 'Permissions policy "hid"';
const header = 'allow="hid" attribute';
async_test(t => {
test_feature_availability(
'hid.getDevices()', t, same_origin_src,
expect_feature_available_default, 'hid');
}, feature_name + ' can be enabled in same-origin iframe using ' + header);
async_test(t => {
test_feature_availability(
'hid.getDevices()', t, same_origin_worker_frame_src,
expect_feature_available_default, 'hid');
}, feature_name + ' can be enabled in a worker in same-origin iframe using ' +
header);
async_test(t => {
test_feature_availability(
'hid.getDevices()', t, cross_origin_src,
expect_feature_available_default, 'hid');
}, feature_name + ' can be enabled in cross-origin iframe using ' + header);
async_test(t => {
test_feature_availability(
'hid.getDevices()', t, cross_origin_worker_frame_src,
expect_feature_available_default, 'hid');
}, feature_name + ' can be enabled in a worker in cross-origin iframe using ' +
header);
fetch_tests_from_worker(new Worker(
'/webhid/resources/hid-allowed-by-permissions-policy-worker.js'));
</script>
</body>