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

Unified Diff: third_party/WebKit/LayoutTests/bluetooth/characteristic/notifications/event-after-starting.html

Issue 2565913002: [Onion Soup] Move WebBluetoothImpl from //content/renderer/bluetooth to Blink's bluetooth module (Closed)
Patch Set: renamed BluetoothUUID.typemap to Bluetooth.typemap Created 3 years, 12 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/characteristic/notifications/event-after-starting.html
diff --git a/third_party/WebKit/LayoutTests/bluetooth/characteristic/notifications/event-after-starting.html b/third_party/WebKit/LayoutTests/bluetooth/characteristic/notifications/event-after-starting.html
index 246784c52a22e1749e87127d514faf841391a290..eaae9fd549928907a1527fb11a4ee6dd827c8c2b 100644
--- a/third_party/WebKit/LayoutTests/bluetooth/characteristic/notifications/event-after-starting.html
+++ b/third_party/WebKit/LayoutTests/bluetooth/characteristic/notifications/event-after-starting.html
@@ -13,7 +13,8 @@ promise_test(() => {
.then(service => service.getCharacteristic('heart_rate_measurement'))
.then(characteristic => {
return assert_event_fires_after_promise(
- characteristic, 'startNotifications', 'characteristicvaluechanged')
+ characteristic, 'startNotifications', 'characteristicvaluechanged',
+ 1 /* attach 1 listener */, false /* ignore_event_promise_order */)
.then(() => characteristic.stopNotifications())
.then(() => assert_no_events(characteristic,
'characteristicvaluechanged'));

Powered by Google App Engine
This is Rietveld 408576698