Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Side by Side Diff: LayoutTests/fast/speech/scripted/speechrecognition-basics-expected.txt

Issue 1117383002: Changing serviceuri param to be url from string in Blink and tagging requests to speech recognizer Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Modifying tests to add better examples and removing the unnecessary comment Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 Test basic interaction with the Speech JavaScript API 1 Test basic interaction with the Speech JavaScript API
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 PASS 'webkitSpeechRecognition' in self is true 6 PASS 'webkitSpeechRecognition' in self is true
7 PASS webkitSpeechRecognition == null is false 7 PASS webkitSpeechRecognition == null is false
8 8
9 nullServiceURI():
10 window.r = new webkitSpeechRecognition()
11 PASS r.start() did not throw exception.
12 onend
13
14 validServiceURI():
15 window.r = new webkitSpeechRecognition()
16 r.serviceURI = 'vendor://com.google?foo=bar&client=chromium/com.example'
17 PASS r.start() did not throw exception.
18 onend
19
9 oneMatchTest(): 20 oneMatchTest():
10 onstart 21 onstart
11 PASS count is 0 22 PASS count is 0
12 onaudiostart 23 onaudiostart
13 PASS count is 1 24 PASS count is 1
14 onsoundstart 25 onsoundstart
15 PASS count is 2 26 PASS count is 2
16 onspeechstart 27 onspeechstart
17 PASS count is 3 28 PASS count is 3
18 onresult 29 onresult
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 onsoundend 63 onsoundend
53 PASS count is 6 64 PASS count is 6
54 onaudioend 65 onaudioend
55 PASS count is 7 66 PASS count is 7
56 onend 67 onend
57 PASS count is 8 68 PASS count is 8
58 PASS successfullyParsed is true 69 PASS successfullyParsed is true
59 70
60 TEST COMPLETE 71 TEST COMPLETE
61 72
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698