Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(57)

Unified Diff: third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/blocklisted-characteristics-with-uuid.html

Issue 2554253002: bluetooth: web: Rename Blacklist to Blocklist (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/blocklisted-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/blocklisted-characteristics-with-uuid.html
similarity index 75%
rename from third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/blacklisted-characteristics-with-uuid.html
rename to third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/blocklisted-characteristics-with-uuid.html
index a6b92881d21ccd09475258f07d8007d5924becc0..11b46ff8d2a4e26e55996c968690f9f95b50e804 100644
--- a/third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/blacklisted-characteristics-with-uuid.html
+++ b/third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/blocklisted-characteristics-with-uuid.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,11 +13,11 @@ promise_test(() => {
.then(service => {
return assert_promise_rejects_with_message(
service.getCharacteristics('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. Should reject with ' +
+}, 'Serial Number String characteristic is blocklisted. Should reject with ' +
'SecurityError.');
</script>

Powered by Google App Engine
This is Rietveld 408576698