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

Unified Diff: third_party/WebKit/LayoutTests/bluetooth/startNotifications/gen-gatt-op-disconnect-called-before.html

Issue 2447593002: bluetooth: Require frame to be connected for startNotifications to succeed. (Closed)
Patch Set: Remove stopNotifications code 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/startNotifications/gen-gatt-op-disconnect-called-before.html
diff --git a/third_party/WebKit/LayoutTests/bluetooth/readValue/gen-gatt-op-disconnect-called-before.html b/third_party/WebKit/LayoutTests/bluetooth/startNotifications/gen-gatt-op-disconnect-called-before.html
similarity index 88%
copy from third_party/WebKit/LayoutTests/bluetooth/readValue/gen-gatt-op-disconnect-called-before.html
copy to third_party/WebKit/LayoutTests/bluetooth/startNotifications/gen-gatt-op-disconnect-called-before.html
index 06e3bfd547c5a374e4312b5556f920abadd6c38f..99b78532b4f39d6bfedb66151c50e395a12c6d99 100644
--- a/third_party/WebKit/LayoutTests/bluetooth/readValue/gen-gatt-op-disconnect-called-before.html
+++ b/third_party/WebKit/LayoutTests/bluetooth/startNotifications/gen-gatt-op-disconnect-called-before.html
@@ -17,12 +17,12 @@ promise_test(() => {
.then(measurement_interval => {
gattServer.disconnect();
return assert_promise_rejects_with_message(
- measurement_interval.readValue(),
+ measurement_interval.startNotifications(),
new DOMException(
'GATT Server is disconnected. Cannot perform GATT operations.',
'NetworkError'));
});
});
-}, 'disconnect() called before readValue. Reject with NetworkError.');
+}, 'disconnect() called before startNotifications. Reject with NetworkError.');
</script>

Powered by Google App Engine
This is Rietveld 408576698