Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / speech / scripted / speechrecognition-basics-expected.txt
blob66d0363bbd7c1c2f6645b7428ab39f89382c3692
1 Test basic interaction with the Speech JavaScript API
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
6 PASS 'webkitSpeechRecognition' in self is true
7 PASS webkitSpeechRecognition == null is false
9 oneMatchTest():
10 onstart
11 PASS count is 0
12 onaudiostart
13 PASS count is 1
14 onsoundstart
15 PASS count is 2
16 onspeechstart
17 PASS count is 3
18 onresult
19 PASS count is 4
20 PASS event.emma is null
21 PASS event.interpretation is null
22 PASS event.results.length is 1
23 PASS event.results.item(-1) is null
24 PASS event.results[0].length is 1
25 PASS event.results[0].isFinal is true
26 PASS event.results[0].item(0).transcript is "hello, world"
27 PASS event.results[0].item(0).confidence is within 0.001 of 0.42
28 PASS event.results[0].item(-1) is null
29 onspeechend
30 PASS count is 5
31 onsoundend
32 PASS count is 6
33 onaudioend
34 PASS count is 7
35 onend
36 PASS count is 8
38 noMatchTest():
39 onstart
40 PASS count is 0
41 onaudiostart
42 PASS count is 1
43 onsoundstart
44 PASS count is 2
45 onspeechstart
46 PASS count is 3
47 onnomatch
48 PASS count is 4
49 PASS event.results is null
50 onspeechend
51 PASS count is 5
52 onsoundend
53 PASS count is 6
54 onaudioend
55 PASS count is 7
56 onend
57 PASS count is 8
58 PASS successfullyParsed is true
60 TEST COMPLETE