| Index: third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/gen-characteristic-garbage-collection-ran-during-success-with-uuid.html
|
| diff --git a/third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/gen-characteristic-garbage-collection-ran-during-success-with-uuid.html b/third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/gen-characteristic-garbage-collection-ran-during-success-with-uuid.html
|
| deleted file mode 100644
|
| index dd948a350bb5f8ab9ee12c3320ea4af4bb394874..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/gen-characteristic-garbage-collection-ran-during-success-with-uuid.html
|
| +++ /dev/null
|
| @@ -1,30 +0,0 @@
|
| -<!-- 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(() => {
|
| - let promise;
|
| - return setBluetoothFakeAdapter('DisconnectingHealthThermometerAdapter')
|
| - .then(() => requestDeviceWithKeyDown({
|
| - filters: [{services: ['health_thermometer']}]}))
|
| - .then(device => device.gatt.connect())
|
| - .then(gattServer => gattServer.getPrimaryService('health_thermometer'))
|
| - .then(service => {
|
| - promise = assert_promise_rejects_with_message(
|
| - service.getCharacteristics('measurement_interval'),
|
| - new DOMException(
|
| - 'GATT Server disconnected while retrieving characteristics.',
|
| - 'NetworkError'));
|
| - // Disconnect called to clear attributeInstanceMap and allow the
|
| - // object to get garbage collected.
|
| - service.device.gatt.disconnect();
|
| - })
|
| - .then(runGarbageCollection)
|
| - .then(() => promise);
|
| -}, 'Garbage Collection ran during a getCharacteristics call that succeeds. ' +
|
| - 'Should not crash.');
|
| -
|
| -</script>
|
|
|