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

Unified 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, 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 side-by-side diff with in-line comments
Download patch
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
« 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