mirror of
https://github.com/servo/servo.git
synced 2025-07-03 05:23:38 +01:00
38 lines
1.3 KiB
HTML
38 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<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="/bluetooth/resources/bluetooth-helpers.js"></script>
|
|
<body>
|
|
<script>
|
|
'use strict';
|
|
const test_desc = 'Garbage collect then detach frame. We shouldn\'t crash.';
|
|
let iframe = document.createElement('iframe');
|
|
|
|
bluetooth_test(() => setUpConnectableHealthThermometerDevice()
|
|
// 1. Load the iframe.
|
|
.then((f) => new Promise(resolve => {
|
|
iframe.src = '/bluetooth/resources/health-thermometer-iframe.html';
|
|
document.body.appendChild(iframe);
|
|
iframe.addEventListener('load', resolve);
|
|
}))
|
|
// 2. Connect device, run garbage collection, and detach iframe.
|
|
.then(() => new Promise(resolve => {
|
|
callWithTrustedClick(() => {
|
|
iframe.contentWindow.postMessage({
|
|
type: 'RequestAndConnect',
|
|
options: {filters: [{services: ['health_thermometer']}]}
|
|
}, '*');
|
|
});
|
|
|
|
window.onmessage = messageEvent => {
|
|
assert_equals(messageEvent.data, 'Connected');
|
|
runGarbageCollection().then(() => {
|
|
iframe.remove();
|
|
resolve();
|
|
});
|
|
}
|
|
})), test_desc)
|
|
</script>
|
|
</body>
|