| 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>
|
|
|