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

Side by Side Diff: LayoutTests/fast/events/constructors/speech-recognition-event-constructor-expected.txt

Issue 54473004: Make js-test-post a noop. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add mac NeedsRebaselines Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 This tests the constructor for the SpeechRecognitionEvent DOM class. 1 This tests the constructor for the SpeechRecognitionEvent DOM class.
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 new webkitSpeechRecognitionEvent('eventType').bubbles is false 6 PASS new webkitSpeechRecognitionEvent('eventType').bubbles is false
7 PASS new webkitSpeechRecognitionEvent('eventType').cancelable is false 7 PASS new webkitSpeechRecognitionEvent('eventType').cancelable is false
8 PASS new webkitSpeechRecognitionEvent('eventType').results is null 8 PASS new webkitSpeechRecognitionEvent('eventType').results is null
9 PASS new webkitSpeechRecognitionEvent('eventType').resultIndex is 0 9 PASS new webkitSpeechRecognitionEvent('eventType').resultIndex is 0
10 PASS new webkitSpeechRecognitionEvent('eventType', { bubbles: false }).bubbles i s false 10 PASS new webkitSpeechRecognitionEvent('eventType', { bubbles: false }).bubbles i s false
11 PASS new webkitSpeechRecognitionEvent('eventType', { bubbles: true }).bubbles is true 11 PASS new webkitSpeechRecognitionEvent('eventType', { bubbles: true }).bubbles is true
12 PASS new webkitSpeechRecognitionEvent('eventType', { cancelable: false }).cancel able is false 12 PASS new webkitSpeechRecognitionEvent('eventType', { cancelable: false }).cancel able is false
13 PASS new webkitSpeechRecognitionEvent('eventType', { cancelable: true }).cancela ble is true 13 PASS new webkitSpeechRecognitionEvent('eventType', { cancelable: true }).cancela ble is true
14 PASS new webkitSpeechRecognitionEvent('eventType', { resultIndex: 42 }).resultIn dex is 42 14 PASS new webkitSpeechRecognitionEvent('eventType', { resultIndex: 42 }).resultIn dex is 42
15 PASS successfullyParsed is true
15 16
17 TEST COMPLETE
18
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698