| Index: third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/blacklisted-characteristics-with-uuid.html
|
| diff --git a/third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/blacklisted-characteristics-with-uuid.html b/third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/blacklisted-characteristics-with-uuid.html
|
| deleted file mode 100644
|
| index a6b92881d21ccd09475258f07d8007d5924becc0..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/blacklisted-characteristics-with-uuid.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('BlacklistTestAdapter')
|
| - .then(() => requestDeviceWithKeyDown({
|
| - filters: [{services: ['device_information']}]}))
|
| - .then(device => device.gatt.connect())
|
| - .then(gattServer => gattServer.getPrimaryService('device_information'))
|
| - .then(service => {
|
| - return assert_promise_rejects_with_message(
|
| - service.getCharacteristics('serial_number_string'),
|
| - new DOMException('getCharacteristic(s) called with blacklisted UUID. ' +
|
| - 'https://goo.gl/4NeimX',
|
| - 'SecurityError'),
|
| - 'Serial Number String characteristic is blacklisted.');
|
| - });
|
| -}, 'Serial Number String characteristic is blacklisted. Should reject with ' +
|
| - 'SecurityError.');
|
| -</script>
|
|
|