| Index: third_party/WebKit/LayoutTests/bluetooth/getPrimaryService/device-reconnects-during-success.html
|
| diff --git a/third_party/WebKit/LayoutTests/bluetooth/getPrimaryService/device-reconnects-during-success.html b/third_party/WebKit/LayoutTests/bluetooth/getPrimaryService/device-reconnects-during-success.html
|
| deleted file mode 100644
|
| index 5af6b47f57efea59cd7434a21ef2e55878bf7c2d..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/bluetooth/getPrimaryService/device-reconnects-during-success.html
|
| +++ /dev/null
|
| @@ -1,23 +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('DisconnectingDuringServiceRetrievalAdapter')
|
| - .then(() => requestDeviceWithKeyDown({
|
| - filters: [{services: ['heart_rate']}]}
|
| - ))
|
| - .then(device => device.gatt.connect())
|
| - .then(gatt => {
|
| - let disconnected = eventPromise(gatt.device, 'gattserverdisconnected');
|
| - let promise = assert_promise_rejects_with_message(
|
| - gatt.getPrimaryService('heart_rate'),
|
| - new DOMException('GATT Server disconnected while retrieving services.',
|
| - 'NetworkError'));
|
| - return disconnected.then(() => gatt.connect()).then(() => promise);
|
| - });
|
| -}, 'Device disconnects during a getPrimaryService call that succeeds. Reject ' +
|
| - 'with NetworkError.');
|
| -</script>
|
|
|