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

Unified Diff: third_party/WebKit/LayoutTests/bluetooth/idl-BluetoothDevice.html

Issue 2456613002: Remove BluetoothDevice.uuids attribute from WebBluetooth (Closed)
Patch Set: address more comments Created 4 years, 2 months 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/idl-BluetoothDevice.html
diff --git a/third_party/WebKit/LayoutTests/bluetooth/idl-BluetoothDevice.html b/third_party/WebKit/LayoutTests/bluetooth/idl-BluetoothDevice.html
index c16752b0792699c4a59ede0478e774c893fdeed9..70c8c35ca6e6ad75354c7f783863bb5522392876 100644
--- a/third_party/WebKit/LayoutTests/bluetooth/idl-BluetoothDevice.html
+++ b/third_party/WebKit/LayoutTests/bluetooth/idl-BluetoothDevice.html
@@ -25,11 +25,8 @@ promise_test(() => {
var old_device_id = device.id;
device.id = 'overwritten';
device.name = 'overwritten';
- device.uuids = 'overwritten';
assert_equals(device.id, old_device_id);
assert_equals(device.name, 'Heart Rate Device');
- assert_equals(device.uuids.length, 1);
- assert_equals(device.uuids[0], heart_rate.uuid);
});
}, 'BluetoothDevice attributes.');
</script>

Powered by Google App Engine
This is Rietveld 408576698