Skip to content
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
web-platform-tests
/
wpt
Public
Notifications
You must be signed in to change notification settings
Fork
3.9k
Star
6.1k
Code
Issues
1.5k
Pull requests
1.3k
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Files
Expand file tree
master
Breadcrumbs
wpt
/
permissions-policy
/
bluetooth-default-permissions-policy.https.sub.html
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
31 lines (27 loc) · 1.31 KB
master
Breadcrumbs
wpt
/
permissions-policy
/
bluetooth-default-permissions-policy.https.sub.html
Copy path
Top
File metadata and controls
Code
Blame
31 lines (27 loc) · 1.31 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
<!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 same_origin_src = '/permissions-policy/resources/permissions-policy-bluetooth.html';
const cross_origin_src = 'https://{{domains[www]}}:{{ports[https][0]}}' + same_origin_src;
const header = 'Default "bluetooth" permissions policy';
bluetooth_test(() => {
promise_test(() => {
return navigator.bluetooth.getDevices();
}, header + ' allows the top-level document.');
async_test(t => {
test_feature_availability('bluetooth.getDevices()', t, same_origin_src, expect_feature_available_default);
}, header + ' allows same-origin iframes.');
async_test(t => {
test_feature_availability('bluetooth.getDevices()', t, cross_origin_src, expect_feature_unavailable_default);
}, header + ' disallows cross-origin iframes.');
async_test(t => {
test_feature_availability('bluetooth.getDevices()', t, cross_origin_src, expect_feature_available_default, 'bluetooth');
}, header + ' allow="bluetooth" allows cross-origin iframes.');
});
</script>
</body>
You can’t perform that action at this time.