diff options
Diffstat (limited to 'testing/web-platform/tests/bluetooth/service/detachedIframe.https.window.js')
-rw-r--r-- | testing/web-platform/tests/bluetooth/service/detachedIframe.https.window.js | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/testing/web-platform/tests/bluetooth/service/detachedIframe.https.window.js b/testing/web-platform/tests/bluetooth/service/detachedIframe.https.window.js new file mode 100644 index 0000000000..f75fc225a7 --- /dev/null +++ b/testing/web-platform/tests/bluetooth/service/detachedIframe.https.window.js @@ -0,0 +1,26 @@ +// META: script=/resources/testdriver.js +// META: script=/resources/testdriver-vendor.js +// META: script=/common/gc.js +// META: script=/bluetooth/resources/bluetooth-test.js +// META: script=/bluetooth/resources/bluetooth-fake-devices.js + +bluetooth_test(async () => { + let iframe = document.createElement('iframe'); + const {device} = await getHealthThermometerDeviceFromIframe(iframe); + let error; + + iframe.remove(); + // Set iframe to null to ensure that the GC cleans up as much as possible. + iframe = null; + await garbageCollect(); + + try { + await device.gatt.getPrimaryService(health_thermometer.name); + } catch (e) { + // Cannot use promise_rejects_dom() because |e| is thrown from a different + // global. + error = e; + } + assert_not_equals(error, undefined); + assert_equals(error.name, 'NetworkError'); +}, 'getPrimaryService() rejects in a detached context'); |