| Index: third_party/WebKit/LayoutTests/bluetooth/descriptor/readValue/gen-descriptor-is-blocklisted.html
|
| diff --git a/third_party/WebKit/LayoutTests/bluetooth/descriptor/readValue/gen-descriptor-is-blocklisted.html b/third_party/WebKit/LayoutTests/bluetooth/descriptor/readValue/gen-descriptor-is-blocklisted.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f33cf803a7747db2b9380680c20dc728a268f4a8
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/bluetooth/descriptor/readValue/gen-descriptor-is-blocklisted.html
|
| @@ -0,0 +1,32 @@
|
| +<!-- Generated by //third_party/WebKit/LayoutTests/bluetooth/generate.py -->
|
| +<!DOCTYPE html>
|
| +<script src="../../../resources/testharness.js"></script>
|
| +<script src="../../../resources/testharnessreport.js"></script>
|
| +<script src="../../../resources/bluetooth/bluetooth-helpers.js"></script>
|
| +<script>
|
| +'use strict';
|
| +promise_test(
|
| + () => {
|
| + return setBluetoothFakeAdapter('DisconnectingHealthThermometerAdapter')
|
| + .then(
|
| + () => requestDeviceWithKeyDown(
|
| + {filters: [{services: ['health_thermometer']}]}))
|
| + .then(device => device.gatt.connect())
|
| + .then(
|
| + gattServer =>
|
| + gattServer.getPrimaryService('health_thermometer'))
|
| + .then(service => service.getCharacteristic('measurement_interval'))
|
| + .then(
|
| + characteristic => characteristic.getDescriptor(
|
| + 'bad3ec61-3cc3-4954-9702-7977df514114'))
|
| + .then(descriptor => {
|
| + return assert_promise_rejects_with_message(
|
| + descriptor.readValue(),
|
| + new DOMException(
|
| + 'readValue() called on blocklisted object marked exclude-reads. ' +
|
| + 'https://goo.gl/4NeimX',
|
| + 'SecurityError'));
|
| + })},
|
| + 'Attempt to call readValue on a blocked descriptor must generate a SecurityError');
|
| +
|
| +</script>
|
|
|