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

Unified Diff: third_party/WebKit/LayoutTests/bluetooth/requestDevice.html

Issue 1415533006: bluetooth: Implement requestDevice by name or name prefix (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bluetooth-characteristic-properties
Patch Set: Merge with ToT and fix histograms conflict Created 5 years, 1 month 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/requestDevice.html
diff --git a/third_party/WebKit/LayoutTests/bluetooth/requestDevice.html b/third_party/WebKit/LayoutTests/bluetooth/requestDevice.html
index b15528c52bd5b77131956edf6fcd3be6faabf749..258e10b2b41746c866eac9c732780f58d246ddf6 100644
--- a/third_party/WebKit/LayoutTests/bluetooth/requestDevice.html
+++ b/third_party/WebKit/LayoutTests/bluetooth/requestDevice.html
@@ -10,18 +10,6 @@ test(function(t) { assert_true(window.testRunner instanceof Object); t.done(); }
'window.testRunner is required for the following tests.');
promise_test(() => {
- testRunner.setBluetoothMockDataSet('EmptyAdapter');
- return assert_promise_rejects(requestDeviceWithKeyDown(),
- new TypeError());
-}, 'Requires an argument.');
-
-promise_test(() => {
- testRunner.setBluetoothMockDataSet('EmptyAdapter');
- return assert_promise_rejects(requestDeviceWithKeyDown({}),
- new TypeError());
-}, 'RequestDeviceOptions requires a |filters| member.');
-
-promise_test(() => {
testRunner.setBluetoothMockDataSet('FailStartDiscoveryAdapter');
testRunner.setBluetoothManualChooser();
let requestDevicePromise =

Powered by Google App Engine
This is Rietveld 408576698