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:
- /fenced-frame/web-bluetooth.https.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Test of Web Bluetooth API</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<script src="/resources/testdriver-actions.js"></script>
<script src="/common/dispatcher/dispatcher.js"></script>
<script src="resources/utils.js"></script>
<script src="/common/utils.js"></script>
<body>
<script>
promise_test(async t => {
const fenced_frame = await attachFencedFrameContext();
// Make sure the fenced frame is alive, then click on it.
await fenced_frame.execute(() => {});
await multiClick(10, 10, fenced_frame.element);
await fenced_frame.execute(async () => {
try {
await navigator.bluetooth.requestDevice({filters: [{name: 'device'}]});
assert_unreached("Web share should not succeed in a fenced frame.");
} catch(e) {
assert_equals(e.name, 'NotAllowedError');
assert_true(e.message.includes(
'Web Bluetooth is not allowed in a fenced frame tree.'));
}
});
}, 'Web Bluetooth requestDevice() must fail in a fenced frame');
</script>
</body>