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

Side by Side Diff: LayoutTests/fast/events/constructors/speech-recognition-error-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 SpeechRecognitionError DOM class. 1 This tests the constructor for the SpeechRecognitionError 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 webkitSpeechRecognitionError('eventType').bubbles is false 6 PASS new webkitSpeechRecognitionError('eventType').bubbles is false
7 PASS new webkitSpeechRecognitionError('eventType').cancelable is false 7 PASS new webkitSpeechRecognitionError('eventType').cancelable is false
8 PASS new webkitSpeechRecognitionError('eventType').error is "" 8 PASS new webkitSpeechRecognitionError('eventType').error is ""
9 PASS new webkitSpeechRecognitionError('eventType').message is "" 9 PASS new webkitSpeechRecognitionError('eventType').message is ""
10 PASS new webkitSpeechRecognitionError('eventType', { bubbles: false }).bubbles i s false 10 PASS new webkitSpeechRecognitionError('eventType', { bubbles: false }).bubbles i s false
11 PASS new webkitSpeechRecognitionError('eventType', { bubbles: true }).bubbles is true 11 PASS new webkitSpeechRecognitionError('eventType', { bubbles: true }).bubbles is true
12 PASS new webkitSpeechRecognitionError('eventType', { cancelable: false }).cancel able is false 12 PASS new webkitSpeechRecognitionError('eventType', { cancelable: false }).cancel able is false
13 PASS new webkitSpeechRecognitionError('eventType', { cancelable: true }).cancela ble is true 13 PASS new webkitSpeechRecognitionError('eventType', { cancelable: true }).cancela ble is true
14 PASS new webkitSpeechRecognitionError('eventType', { error: 'bar' }).error is "b ar" 14 PASS new webkitSpeechRecognitionError('eventType', { error: 'bar' }).error is "b ar"
15 PASS new webkitSpeechRecognitionError('eventType', { message: 'foo' }).message i s "foo" 15 PASS new webkitSpeechRecognitionError('eventType', { message: 'foo' }).message i s "foo"
16 PASS successfullyParsed is true
16 17
18 TEST COMPLETE
19
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698