https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 9c167f6b27d42431d4c91ca181dcbe83e7fd7759 authored by Han Leon on 23 April 2018, 07:28:33 UTC
[ServiceWorker] Let Client.url be the creation url of the window client
Tip revision: 9c167f6
same-device.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 = 'Returned device should always be the same.';
let devices = [];
let push = device => devices.push(device);

bluetooth_test(() => setUpHealthThermometerAndHeartRateDevices()
    .then(() => requestDeviceWithTrustedClick({
      filters: [{services: [heart_rate.alias]}]
    }))
    .then(push)
    .then(() => requestDeviceWithTrustedClick({
      filters: [{services: [heart_rate.name]}]
    }))
    .then(push)
    .then(() => requestDeviceWithTrustedClick({
      filters: [{services: [heart_rate.uuid]}]
    }))
    .then(push)
    .then(() => {
      assert_equals(devices[0], devices[1]);
      assert_equals(devices[1], devices[2]);
    }), test_desc);
</script>
back to top