| Index: third_party/WebKit/LayoutTests/bluetooth/getCharacteristic/blocklisted-characteristic.html
|
| diff --git a/third_party/WebKit/LayoutTests/bluetooth/getCharacteristic/blacklisted-characteristic.html b/third_party/WebKit/LayoutTests/bluetooth/getCharacteristic/blocklisted-characteristic.html
|
| similarity index 74%
|
| rename from third_party/WebKit/LayoutTests/bluetooth/getCharacteristic/blacklisted-characteristic.html
|
| rename to third_party/WebKit/LayoutTests/bluetooth/getCharacteristic/blocklisted-characteristic.html
|
| index 161fb3a1d779b19390d3c643fb98576f15b6afad..8cc9fbc7c8a217fb33bf972a34f5a42d2cdea216 100644
|
| --- a/third_party/WebKit/LayoutTests/bluetooth/getCharacteristic/blacklisted-characteristic.html
|
| +++ b/third_party/WebKit/LayoutTests/bluetooth/getCharacteristic/blocklisted-characteristic.html
|
| @@ -5,7 +5,7 @@
|
| <script>
|
| 'use strict';
|
| promise_test(() => {
|
| - return setBluetoothFakeAdapter('BlacklistTestAdapter')
|
| + return setBluetoothFakeAdapter('BlocklistTestAdapter')
|
| .then(() => requestDeviceWithKeyDown({
|
| filters: [{services: ['device_information']}]}))
|
| .then(device => device.gatt.connect())
|
| @@ -13,10 +13,10 @@ promise_test(() => {
|
| .then(service => {
|
| return assert_promise_rejects_with_message(
|
| service.getCharacteristic('serial_number_string'),
|
| - new DOMException('getCharacteristic(s) called with blacklisted UUID. ' +
|
| + new DOMException('getCharacteristic(s) called with blocklisted UUID. ' +
|
| 'https://goo.gl/4NeimX',
|
| 'SecurityError'),
|
| - 'Serial Number String characteristic is blacklisted.');
|
| + 'Serial Number String characteristic is blocklisted.');
|
| });
|
| -}, 'Serial Number String characteristic is blacklisted.');
|
| +}, 'Serial Number String characteristic is blocklisted.');
|
| </script>
|
|
|