1
0
Fork 0
firefox/testing/web-platform/tests/webusb/getDevices/sandboxed_iframe.https.window.js
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

19 lines
630 B
JavaScript

'use strict';
promise_test(async (t) => {
let iframe = document.createElement('iframe');
await new Promise(resolve => {
iframe.src = '../resources/open-in-iframe.html';
iframe.sandbox.add('allow-scripts');
iframe.allow = 'usb';
document.body.appendChild(iframe);
iframe.addEventListener('load', resolve);
});
await new Promise(resolve => {
window.addEventListener('message', t.step_func(messageEvent => {
assert_equals(messageEvent.data, 'Success');
resolve();
}));
iframe.contentWindow.postMessage('GetDevices', '*');
});
}, 'GetDevices from a sandboxed iframe is valid.');