| Index: android_webview/tools/WebViewShell/test/blink-apis/webmidi/requestmidiaccess-permission-denied.html
|
| diff --git a/android_webview/tools/WebViewShell/test/blink-apis/webmidi/requestmidiaccess-permission-denied.html b/android_webview/tools/WebViewShell/test/blink-apis/webmidi/requestmidiaccess-permission-denied.html
|
| deleted file mode 100644
|
| index aabd8c1d37b765f9f6e3dc545b0376352518e03b..0000000000000000000000000000000000000000
|
| --- a/android_webview/tools/WebViewShell/test/blink-apis/webmidi/requestmidiaccess-permission-denied.html
|
| +++ /dev/null
|
| @@ -1,23 +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) {
|
| - testPassed('requestMIDIAccess error, reason: ' + errorMessage);
|
| - finishJSTest();
|
| - }
|
| -
|
| - function onMIDISuccess(stream) {
|
| - testFail('access was granted but should not have been.');
|
| - finishJSTest();
|
| - }
|
| -
|
| - navigator.requestMIDIAccess({sysex:true}).then(
|
| - onMIDISuccess, onMIDIError);
|
| - </script>
|
| - </body>
|
| -</html>
|
|
|