| 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 58d9a77e814b605cb2e74c23502e1c7896866d1c..abf265ef5a01080d1a7586e2db0acb4d048971b2 100644
|
| --- a/third_party/WebKit/LayoutTests/bluetooth/idl-BluetoothDevice.html
|
| +++ b/third_party/WebKit/LayoutTests/bluetooth/idl-BluetoothDevice.html
|
| @@ -21,6 +21,7 @@ promise_test(() => {
|
|
|
| // Attempt (and fail) to overwrite all members, verifying they are
|
| // readonly.
|
| + var old_device_id = device.id;
|
| device.id = 'overwritten';
|
| device.name = 'overwritten';
|
| device.deviceClass = 'overwritten';
|
| @@ -30,7 +31,7 @@ promise_test(() => {
|
| device.productVersion = 'overwritten';
|
| device.paired = 'overwritten';
|
| device.uuids = 'overwritten';
|
| - assert_equals(device.id, '00:00:00:00:00:00');
|
| + assert_equals(device.id, old_device_id);
|
| assert_equals(device.name, 'Heart Rate Device');
|
| assert_equals(device.deviceClass, 0x1F00);
|
| assert_equals(device.vendorIDSource, 'bluetooth');
|
|
|