| Index: LayoutTests/fast/speech/scripted/speechrecognition-basics-expected.txt
|
| diff --git a/LayoutTests/fast/speech/scripted/speechrecognition-basics-expected.txt b/LayoutTests/fast/speech/scripted/speechrecognition-basics-expected.txt
|
| index 66d0363bbd7c1c2f6645b7428ab39f89382c3692..422621b412c5dec708de17c3150ce252823b725c 100644
|
| --- a/LayoutTests/fast/speech/scripted/speechrecognition-basics-expected.txt
|
| +++ b/LayoutTests/fast/speech/scripted/speechrecognition-basics-expected.txt
|
| @@ -6,6 +6,23 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
|
| PASS 'webkitSpeechRecognition' in self is true
|
| PASS webkitSpeechRecognition == null is false
|
|
|
| +nullServiceURI():
|
| +window.r = new webkitSpeechRecognition()
|
| +PASS r.start() did not throw exception.
|
| +onend
|
| +
|
| +invalidServiceURI():
|
| +window.r = new webkitSpeechRecognition()
|
| +r.serviceURI = 'http:/:/:/badurl'
|
| +PASS r.start() did not throw exception.
|
| +onend
|
| +
|
| +validServiceURI():
|
| +window.r = new webkitSpeechRecognition()
|
| +r.serviceURI = 'chrome://speech-recognition?foo=bar&client=com.example'
|
| +PASS r.start() did not throw exception.
|
| +onend
|
| +
|
| oneMatchTest():
|
| onstart
|
| PASS count is 0
|
|
|