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

Unified Diff: third_party/WebKit/LayoutTests/bluetooth/requestDevice/stop-discovery-adapter-discovering-changed.html

Issue 2762023002: work in progress 2
Patch Set: Created 3 years, 9 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
« no previous file with comments | « third_party/WebKit/LayoutTests/bluetooth/requestDevice/chooser/stop-discovery-adapter-discovering-changed.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/bluetooth/requestDevice/stop-discovery-adapter-discovering-changed.html
diff --git a/third_party/WebKit/LayoutTests/bluetooth/requestDevice/chooser/new-scan-services-discovered.html b/third_party/WebKit/LayoutTests/bluetooth/requestDevice/stop-discovery-adapter-discovering-changed.html
similarity index 81%
copy from third_party/WebKit/LayoutTests/bluetooth/requestDevice/chooser/new-scan-services-discovered.html
copy to third_party/WebKit/LayoutTests/bluetooth/requestDevice/stop-discovery-adapter-discovering-changed.html
index fbe2af4d2b05b9d7130209ea984c54790e65c240..e63429d5694acd77b0cf3e4782cc1cb18d8ab312 100644
--- a/third_party/WebKit/LayoutTests/bluetooth/requestDevice/chooser/new-scan-services-discovered.html
+++ b/third_party/WebKit/LayoutTests/bluetooth/requestDevice/stop-discovery-adapter-discovering-changed.html
@@ -10,16 +10,16 @@ promise_test(() => {
let requestDevicePromise =
setBluetoothFakeAdapter('DeviceEventAdapter')
.then(() => requestDeviceWithKeyDown({
- filters: [{services: ['generic_access']}]}));
+ filters: [{services: ['glucose']}]}));
return getBluetoothManualChooserEvents(4).then(events => {
assert_equals(events[0], 'chooser-opened(file://)');
assert_equals(events[1], 'discovering');
let idsByName = new AddDeviceEventSet();
idsByName.assert_add_device_event(events[2]);
- assert_true(idsByName.has('Discovery Generic Access Device'));
+ assert_true(idsByName.has('New Glucose Device'));
assert_equals(events[3], 'discovery-idle');
testRunner.sendBluetoothManualChooserEvent(
- 'selected', idsByName.get('Discovery Generic Access Device'));
+ 'selected', idsByName.get('New Glucose Device'));
return requestDevicePromise;
});
});
« no previous file with comments | « third_party/WebKit/LayoutTests/bluetooth/requestDevice/chooser/stop-discovery-adapter-discovering-changed.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698