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

Unified Diff: third_party/WebKit/LayoutTests/bluetooth/requestDevice/correct-uuids.html

Issue 2456613002: Remove BluetoothDevice.uuids attribute from WebBluetooth (Closed)
Patch Set: address more comments 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/requestDevice/correct-uuids.html
diff --git a/third_party/WebKit/LayoutTests/bluetooth/requestDevice/correct-uuids.html b/third_party/WebKit/LayoutTests/bluetooth/requestDevice/correct-uuids.html
deleted file mode 100644
index cebdaa4268a8c9e992754ff7a42397be4f934dc3..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/bluetooth/requestDevice/correct-uuids.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<!DOCTYPE html>
-<script src="../../resources/testharness.js"></script>
-<script src="../../resources/testharnessreport.js"></script>
-<script src="../../resources/bluetooth/bluetooth-helpers.js"></script>
-<script>
-'use strict';
-promise_test(() => {
- return setBluetoothFakeAdapter('GlucoseHeartRateAdapter')
- .then(() => requestDeviceWithKeyDown({
- filters: [{services: ['glucose']}],
- optionalServices: ['tx_power']}))
- .then(device => {
- assert_equals(device.uuids.length, 2);
- assert_in_array(BluetoothUUID.getService('glucose'), device.uuids);
- assert_in_array(BluetoothUUID.getService('tx_power'), device.uuids);
- });
-}, 'We should only see UUID\'s that we\'ve been given permission for.')
-</script>

Powered by Google App Engine
This is Rietveld 408576698