| Index: third_party/WebKit/LayoutTests/bluetooth/writeValue/write-updates-value.html
|
| diff --git a/third_party/WebKit/LayoutTests/bluetooth/writeValue/write-updates-value.html b/third_party/WebKit/LayoutTests/bluetooth/writeValue/write-updates-value.html
|
| deleted file mode 100644
|
| index 8746df7e2425bcd35a80bbcacf1964db9e99cc81..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/bluetooth/writeValue/write-updates-value.html
|
| +++ /dev/null
|
| @@ -1,24 +0,0 @@
|
| -<!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('HeartRateAdapter')
|
| - .then(() => requestDeviceWithKeyDown({
|
| - filters: [{services: ['heart_rate']}],
|
| - optionalServices: ['generic_access']}))
|
| - .then(device => device.gatt.connect())
|
| - .then(gattServer => gattServer.getPrimaryService('generic_access'))
|
| - .then(service => service.getCharacteristic('gap.device_name'))
|
| - .then(characteristic => {
|
| - assert_equals(characteristic.value, null);
|
| - let textEncoder = new TextEncoder();
|
| - let newValue = textEncoder.encode('foo');
|
| - return characteristic.writeValue(newValue).then(() => {
|
| - assert_array_equals(characteristic.value.buffer, newValue.buffer);
|
| - });
|
| - });
|
| -}, 'A regular write request to a writable characteristic should update value.');
|
| -</script>
|
|
|