https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 1b0260abb6c79e5105339cf104b6e99f48f521d3 authored by Kent Tamura on 16 March 2018, 05:45:42 UTC
HTML parser: Fix "HTML integration point" implementation in HTMLTreeBuilderSimulator.
Tip revision: 1b0260a
optional-services-present.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 = 'requestDevice called with acceptAllDevices: true and with ' +
   'optionalServices. Should get access to services.';

bluetooth_test(() => getTwoHealthThermometerServicesDevice()
    .then(() => requestDeviceWithTrustedClick({
      acceptAllDevices: true,
      optionalServices: ['health_thermometer']
    }))
    .then(device => device.gatt.connect())
    .then(gattServer => gattServer.getPrimaryServices())
    .then(services => {
      assert_equals(services.length, 2);
      services.forEach(service => {
        assert_equals(service.uuid,
          BluetoothUUID.getService('health_thermometer'));
      });
    }), test_desc);
</script>
back to top