Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / webmidi / requestmidiaccess-basic.html
blob5b41a271cc5dc60c7bd03fb407057b4f0cba50f2
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script src="../resources/js-test.js"></script>
5 </head>
6 <body>
7 <script>
8 description("Test if requestMIDIAccess is available.");
10 shouldBeDefined("navigator.requestMIDIAccess");
12 var promise = navigator.requestMIDIAccess();
13 shouldBeDefined("promise");
15 shouldBeDefined("promise.then");
17 promise.then(function(){}, function(){});
19 </script>
20 </body>
21 </html>