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

Unified Diff: android_webview/tools/WebViewShell/test/blink-apis/webmidi/requestmidiaccess.html

Issue 1785283005: [WebView] Reorganize all of the WebView Shell apks into their own dir. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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: 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>

Powered by Google App Engine
This is Rietveld 408576698