Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / speech / scripted / speechrecognitionerror-basics.html
blob2ed03b086619c7a9c901cbb32f52e07cae3aecec
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html>
3 <head>
4 <script src="../../../resources/js-test.js"></script>
5 </head>
6 <body>
7 <script type="text/javascript">
8 description('Tests the basics of the SpeechRecognitionError interface');
10 function run() {
11 // Check availability of constructor.
12 shouldBeTrue("'webkitSpeechRecognitionError' in window");
13 shouldBeFalse("webkitSpeechRecognitionError == null");
15 finishJSTest();
18 window.onload = run;
19 window.jsTestIsAsync = true;
20 </script>
21 </body>
22 </html>