| Index: third_party/WebKit/LayoutTests/bluetooth/requestDevice/chooser/multiple-matching-devices.html
|
| diff --git a/third_party/WebKit/LayoutTests/bluetooth/requestDevice/multiple-matching-devices.html b/third_party/WebKit/LayoutTests/bluetooth/requestDevice/chooser/multiple-matching-devices.html
|
| similarity index 63%
|
| rename from third_party/WebKit/LayoutTests/bluetooth/requestDevice/multiple-matching-devices.html
|
| rename to third_party/WebKit/LayoutTests/bluetooth/requestDevice/chooser/multiple-matching-devices.html
|
| index 435feb2044e4a1ba2a3d8bbe409c3aa77473daf0..58ed1ace3f24cca5cd2ae1f28a77dff49faf8ed8 100644
|
| --- a/third_party/WebKit/LayoutTests/bluetooth/requestDevice/multiple-matching-devices.html
|
| +++ b/third_party/WebKit/LayoutTests/bluetooth/requestDevice/chooser/multiple-matching-devices.html
|
| @@ -1,7 +1,7 @@
|
| <!DOCTYPE html>
|
| -<script src="../../resources/testharness.js"></script>
|
| -<script src="../../resources/testharnessreport.js"></script>
|
| -<script src="../../resources/bluetooth/bluetooth-helpers.js"></script>
|
| +<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(() => {
|
| @@ -15,17 +15,17 @@ promise_test(() => {
|
| return getBluetoothManualChooserEvents(5)
|
| .then(events => {
|
| assert_equals(events.length, 5, events);
|
| - assert_equals(events[0], 'chooser-opened(file://)', 'events[0]');
|
| + assert_equals(events[0], 'chooser-opened(file://)');
|
| + assert_equals(events[1], 'discovering');
|
| let idsByName = new AddDeviceEventSet();
|
| - for (let addedDevice of [events[1], events[2]]) {
|
| + for (let addedDevice of [events[2], events[3]]) {
|
| idsByName.assert_add_device_event(addedDevice);
|
| }
|
| assert_true(idsByName.has('Heart Rate Device'));
|
| assert_true(idsByName.has('Glucose Device'));
|
| - assert_equals(events[3], 'discovering');
|
| assert_equals(events[4], 'discovery-idle');
|
| - testRunner.sendBluetoothManualChooserEvent('selected',
|
| - idsByName.get('Glucose Device'));
|
| + testRunner.sendBluetoothManualChooserEvent(
|
| + 'selected', idsByName.get('Glucose Device'));
|
| return requestDevicePromise;
|
| }).then(device => assert_equals(device.name, 'Glucose Device'));
|
| }, 'The chooser includes all devices.');
|
|
|