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

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: Removing the exception on invalid urls, adding chromium to client param of serviceURI, and changing… Created 5 years, 6 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 invalidServiceURI():
15 window.r = new webkitSpeechRecognition()
16 r.serviceURI = 'http:/:/:/badurl'
17 PASS r.start() did not throw exception.
18 onend
19
20 validServiceURI():
21 window.r = new webkitSpeechRecognition()
22 r.serviceURI = 'chrome://speech-recognition?foo=bar&client=com.example'
23 PASS r.start() did not throw exception.
24 onend
25
9 oneMatchTest(): 26 oneMatchTest():
10 onstart 27 onstart
11 PASS count is 0 28 PASS count is 0
12 onaudiostart 29 onaudiostart
13 PASS count is 1 30 PASS count is 1
14 onsoundstart 31 onsoundstart
15 PASS count is 2 32 PASS count is 2
16 onspeechstart 33 onspeechstart
17 PASS count is 3 34 PASS count is 3
18 onresult 35 onresult
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 onsoundend 69 onsoundend
53 PASS count is 6 70 PASS count is 6
54 onaudioend 71 onaudioend
55 PASS count is 7 72 PASS count is 7
56 onend 73 onend
57 PASS count is 8 74 PASS count is 8
58 PASS successfullyParsed is true 75 PASS successfullyParsed is true
59 76
60 TEST COMPLETE 77 TEST COMPLETE
61 78
OLDNEW
« no previous file with comments | « LayoutTests/fast/speech/scripted/speechrecognition-basics.html ('k') | LayoutTests/fast/speech/scripted/start-exception.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698