summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webusb/usbDevice-iframe.https.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 09:22:09 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 09:22:09 +0000
commit43a97878ce14b72f0981164f87f2e35e14151312 (patch)
tree620249daf56c0258faa40cbdcf9cfba06de2a846 /testing/web-platform/tests/webusb/usbDevice-iframe.https.html
parentInitial commit. (diff)
downloadfirefox-upstream.tar.xz
firefox-upstream.zip
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/webusb/usbDevice-iframe.https.html')
-rw-r--r--testing/web-platform/tests/webusb/usbDevice-iframe.https.html45
1 files changed, 45 insertions, 0 deletions
diff --git a/testing/web-platform/tests/webusb/usbDevice-iframe.https.html b/testing/web-platform/tests/webusb/usbDevice-iframe.https.html
new file mode 100644
index 0000000000..5a6dd0565f
--- /dev/null
+++ b/testing/web-platform/tests/webusb/usbDevice-iframe.https.html
@@ -0,0 +1,45 @@
+<!DOCTYPE html>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="/resources/test-only-api.js"></script>
+<script src="resources/fake-devices.js"></script>
+<script src="resources/usb-helpers.js"></script>
+<script>
+'use strict';
+
+async function connectInIframe() {
+ let iframe = document.createElement('iframe');
+ let opened = false;
+
+ iframe.src = 'resources/open-in-iframe.html';
+ document.body.appendChild(iframe);
+
+ await navigator.usb.test.attachToContext(iframe);
+ function nextIFrameMessage() {
+ return new Promise(resolve => window.addEventListener(
+ 'message', e => resolve(e.data)));
+ }
+ iframe.contentWindow.postMessage('Ready', '*');
+
+ assert_equals('Ready', (await nextIFrameMessage()));
+ let fakeDevice = navigator.usb.test.addFakeDevice(fakeDeviceInit);
+ let closedPromise = new Promise(resolve => fakeDevice.onclose = resolve)
+ .then(() => assert_true(opened));
+
+ assert_equals('Success', (await nextIFrameMessage()));
+ opened = true;
+ return { iframe, closedPromise };
+}
+
+usb_test(async () => {
+ let { iframe, closedPromise } = await connectInIframe();
+ document.body.removeChild(iframe);
+ await closedPromise;
+}, 'detaching iframe disconnects device.');
+
+usb_test(async () => {
+ let { iframe, closedPromise } = await connectInIframe();
+ iframe.src = 'about:blank';
+ await closedPromise;
+}, 'navigating iframe disconnects device.');
+</script>