summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/bluetooth/getDevices/sandboxed_iframe.https.window.js
blob: b9b0ac93c27a054433d9853b3dced0fa1e6a9d13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// META: script=/resources/testdriver.js
// META: script=/resources/testdriver-vendor.js
// META: script=/bluetooth/resources/bluetooth-test.js
// META: script=/bluetooth/resources/bluetooth-fake-devices.js

'use strict';

let iframe = document.createElement('iframe');

bluetooth_test(async () => {
  await new Promise(resolve => {
    iframe.src = '/bluetooth/resources/health-thermometer-iframe.html';
    iframe.sandbox.add('allow-scripts');
    iframe.allow = 'bluetooth';
    document.body.appendChild(iframe);
    iframe.addEventListener('load', resolve);
  });
  await new Promise(resolve => {
    iframe.contentWindow.postMessage({type: 'GetDevices'}, '*');

    window.addEventListener('message', (messageEvent) => {
      assert_false(/^FAIL: .*/.test(messageEvent.data));
      resolve();
    });
  });
}, 'Calls to Bluetooth APIs from a sandboxed iframe are valid.');