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

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

Issue 2116763002: Reland: Web MIDI: use mojom::blink::PermissionService directly to ask permission (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: for second attempt Created 4 years, 5 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/system_webview_shell/test/data/blink-apis/webmidi/requestmidiaccess.html
diff --git a/android_webview/tools/system_webview_shell/test/data/blink-apis/webmidi/requestmidiaccess.html b/android_webview/tools/system_webview_shell/test/data/blink-apis/webmidi/requestmidiaccess.html
index 58258bed83369f7ea27a10c479dfeff3a2fe2173..f656b824bb75fabf8c9e3fa7cb3d210b6c1d47f9 100644
--- a/android_webview/tools/system_webview_shell/test/data/blink-apis/webmidi/requestmidiaccess.html
+++ b/android_webview/tools/system_webview_shell/test/data/blink-apis/webmidi/requestmidiaccess.html
@@ -13,13 +13,13 @@
function onMIDISuccess(access) {
window.access = access;
- shouldBeTrue('access.sysexEnabled');
- testPassed('requestMIDIAccess with option sysex:true succeeded.');
+ shouldBeFalse('access.sysexEnabled');
+ testPassed('requestMIDIAccess without option succeeded.');
finishJSTest();
}
- navigator.requestMIDIAccess({sysex:true}).then(
+ navigator.requestMIDIAccess().then(
onMIDISuccess, onMIDIError);
</script>
</body>
-</html>
+</html>

Powered by Google App Engine
This is Rietveld 408576698