| Index: android_webview/tools/WebViewShell/test/blink-apis/webmidi/requestmidiaccess.html
|
| diff --git a/android_webview/tools/WebViewShell/test/blink-apis/webmidi/requestmidiaccess.html b/android_webview/tools/WebViewShell/test/blink-apis/webmidi/requestmidiaccess.html
|
| deleted file mode 100644
|
| index 58258bed83369f7ea27a10c479dfeff3a2fe2173..0000000000000000000000000000000000000000
|
| --- a/android_webview/tools/WebViewShell/test/blink-apis/webmidi/requestmidiaccess.html
|
| +++ /dev/null
|
| @@ -1,25 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<html>
|
| - <script src="../../resources/js-test.js"></script>
|
| - <body>
|
| - <script type="text/javascript">
|
| - description("Test navigator.requestMIDIAccess API in WebView");
|
| - window.jsTestIsAsync = true;
|
| -
|
| - function onMIDIError(errorMessage) {
|
| - testFailed('requestMIDIAccess error callback, reason: ' + errorMessage);
|
| - finishJSTest();
|
| - }
|
| -
|
| - function onMIDISuccess(access) {
|
| - window.access = access;
|
| - shouldBeTrue('access.sysexEnabled');
|
| - testPassed('requestMIDIAccess with option sysex:true succeeded.');
|
| - finishJSTest();
|
| - }
|
| -
|
| - navigator.requestMIDIAccess({sysex:true}).then(
|
| - onMIDISuccess, onMIDIError);
|
| - </script>
|
| - </body>
|
| -</html>
|
|
|