blob: 5b41a271cc5dc60c7bd03fb407057b4f0cba50f2 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="../resources/js-test.js"></script>
</head>
<body>
<script>
description("Test if requestMIDIAccess is available.");
shouldBeDefined("navigator.requestMIDIAccess");
var promise = navigator.requestMIDIAccess();
shouldBeDefined("promise");
shouldBeDefined("promise.then");
promise.then(function(){}, function(){});
</script>
</body>
</html>