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

Unified Diff: third_party/WebKit/LayoutTests/bluetooth/requestDevice/canonicalizeFilter/filters-and-acceptAllDevices.html

Issue 2510323002: bluetooth: Implement acceptAllDevices (Closed)
Patch Set: Clean up Created 4 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/canonicalizeFilter/filters-and-acceptAllDevices.html
diff --git a/third_party/WebKit/LayoutTests/bluetooth/requestDevice/canonicalizeFilter/filters-and-acceptAllDevices.html b/third_party/WebKit/LayoutTests/bluetooth/requestDevice/canonicalizeFilter/filters-and-acceptAllDevices.html
new file mode 100644
index 0000000000000000000000000000000000000000..fc817ee0420d2b154268afc4ef9c5860c71fce6c
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/bluetooth/requestDevice/canonicalizeFilter/filters-and-acceptAllDevices.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html>
scheib 2016/11/22 21:22:44 filename maybe: filters-xor-acceptAllDevices.html
ortuno 2016/11/23 06:03:08 Done.
+<script src="../../../resources/testharness.js"></script>
+<script src="../../../resources/testharnessreport.js"></script>
+<script src="../../../resources/bluetooth/bluetooth-helpers.js"></script>
+<script>
+'use strict';
+let test_specs = [
+ {},
+ {optionalServices: ['heart_rate']},
+ {filters: [], acceptAllDevices: true},
+ {filters: [], acceptAllDevices: true, optionalServices: ['heart_rate']}
+];
+
+promise_test(t => {
+ let test_promises = Promise.resolve();
+ test_specs.forEach(args => {
+ test_promises = test_promises
+ .then(() => assert_promise_rejects_with_message(
+ requestDeviceWithKeyDown(args),
+ new TypeError(
+ 'Failed to execute \'requestDevice\' on \'Bluetooth\': ' +
+ 'Either \'filters\' should be present or ' +
+ '\'acceptAllDevices\' should be true, but not both.')));
+ });
+ return test_promises;
+}, 'RequestDeviceOptions should have exactly one of \'filters\' or ' +
+ '\'acceptAllDevices:true\'. Reject with TypeError if not.')
+</script>

Powered by Google App Engine
This is Rietveld 408576698