https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 32b86b82958c2f48931274b26840a1a4a45a8857 authored by Adam Rice on 20 March 2018, 12:30:43 UTC
Correctly reject in-progress body methods with AbortError
Tip revision: 32b86b8
request-from-iframe.https.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>
<script>
'use strict';
const test_desc = 'Concurrent requestDevice calls in iframes work.';
const iframes = [];
for (let i = 0; i < 5; i++) {
  iframes.push(document.createElement('iframe'));
}

bluetooth_test(() => setUpHealthThermometerAndHeartRateDevices()
    // 1. Load the iframes.
    .then(() => {
      let promises = [];
      for (let iframe of iframes) {
        iframe.src = '/bluetooth/resources/health-thermometer-iframe.html';
        document.body.appendChild(iframe);
        promises.push(new Promise(resolve =>
            iframe.addEventListener('load', resolve)));
      }
      return Promise.all(promises);
    })
    // 2. Request the device from the iframes.
    .then(() => new Promise(async (resolve) => {
      let numMessages = 0;
      window.onmessage = messageEvent => {
        assert_equals(messageEvent.data, 'Success');
        if (++numMessages === iframes.length) {
          resolve();
        }
      }

      for (let iframe of iframes) {
        await callWithTrustedClick(() => iframe.contentWindow.postMessage({
            type: 'RequestDevice'
        }, '*'));
      }
    })), test_desc);
</script>
back to top