| Index: third_party/WebKit/LayoutTests/bluetooth/resources/requestDevice-in-iframe.html
|
| diff --git a/third_party/WebKit/LayoutTests/bluetooth/resources/requestDevice-in-iframe.html b/third_party/WebKit/LayoutTests/bluetooth/resources/requestDevice-in-iframe.html
|
| deleted file mode 100644
|
| index ac51b07440dd895f2b8494d6aee43a5293b1fadc..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/bluetooth/resources/requestDevice-in-iframe.html
|
| +++ /dev/null
|
| @@ -1,20 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<script>
|
| - window.onmessage = messageEvent => {
|
| - if (messageEvent.data === 'Go') {
|
| - navigator.bluetooth.requestDevice({
|
| - filters: [{services: ['generic_access']}]
|
| - }).then(device => {
|
| - if (device.constructor.name === "BluetoothDevice") {
|
| - parent.postMessage('Success', '*');
|
| - } else {
|
| - parent.postMessage('FAIL: requestDevice in iframe returned ' + device, '*');
|
| - }
|
| - }).catch(err => {
|
| - console.error(err);
|
| - parent.postMessage('FAIL: ' + err, '*');
|
| - });
|
| - }
|
| - };
|
| - parent.postMessage("Ready", "*");
|
| -</script>
|
|
|