1
0
Fork 0
firefox/testing/web-platform/tests/fenced-frame/web-bluetooth.https.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

35 lines
1.2 KiB
HTML

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