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

Side by Side Diff: LayoutTests/webaudio/dom-exceptions-expected.txt

Issue 955413002: Log in Binding code for invalid enum type. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 9 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 CONSOLE WARNING: The provided value 'fancy' is not a valid value of type 'Channe lCountMode'.
2 CONSOLE WARNING: The provided value 'undefined' is not a valid value of type 'Ch annelInterpretation'.
3 CONSOLE WARNING: The provided value '9x' is not a valid value of type 'OverSampl eType'.
1 CONSOLE WARNING: Setting AudioBufferSourceNode.buffer more than once is deprecat ed and will no longer work in Chrome 43. 4 CONSOLE WARNING: Setting AudioBufferSourceNode.buffer more than once is deprecat ed and will no longer work in Chrome 43.
5 CONSOLE WARNING: The provided value 'junk' is not a valid value of type 'Channel CountMode'.
6 CONSOLE WARNING: The provided value 'junk' is not a valid value of type 'Channel CountMode'.
2 Tests DOM exception messages 7 Tests DOM exception messages
3 8
4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 9 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
5 10
6 PASS context.createBuffer(99, 1, context.sampleRate) threw exception NotSupporte dError: Failed to execute 'createBuffer' on 'AudioContext': The number of channe ls provided (99) is outside the range [1, 32].. 11 PASS context.createBuffer(99, 1, context.sampleRate) threw exception NotSupporte dError: Failed to execute 'createBuffer' on 'AudioContext': The number of channe ls provided (99) is outside the range [1, 32]..
7 PASS context.createBuffer(0, 1, context.sampleRate) threw exception NotSupported Error: Failed to execute 'createBuffer' on 'AudioContext': The number of channel s provided (0) is outside the range [1, 32].. 12 PASS context.createBuffer(0, 1, context.sampleRate) threw exception NotSupported Error: Failed to execute 'createBuffer' on 'AudioContext': The number of channel s provided (0) is outside the range [1, 32]..
8 PASS context.createBuffer(1, 1, 1) threw exception NotSupportedError: Failed to execute 'createBuffer' on 'AudioContext': The sample rate provided (1) is outsid e the range [3000, 192000].. 13 PASS context.createBuffer(1, 1, 1) threw exception NotSupportedError: Failed to execute 'createBuffer' on 'AudioContext': The sample rate provided (1) is outsid e the range [3000, 192000]..
9 PASS context.createBuffer(1, 1, 1e6) threw exception NotSupportedError: Failed t o execute 'createBuffer' on 'AudioContext': The sample rate provided (1.00000e+6 ) is outside the range [3000, 192000].. 14 PASS context.createBuffer(1, 1, 1e6) threw exception NotSupportedError: Failed t o execute 'createBuffer' on 'AudioContext': The sample rate provided (1.00000e+6 ) is outside the range [3000, 192000]..
10 PASS context.createBuffer(1, 1, 3000) did not throw exception. 15 PASS context.createBuffer(1, 1, 3000) did not throw exception.
11 PASS context.createBuffer(1, 1, 192000) did not throw exception. 16 PASS context.createBuffer(1, 1, 192000) did not throw exception.
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 PASS script.channelCountMode is not 'clamped-max' 162 PASS script.channelCountMode is not 'clamped-max'
158 PASS script.channelCountMode = 'junk' did not throw exception. 163 PASS script.channelCountMode = 'junk' did not throw exception.
159 PASS osc.noteOn is undefined. 164 PASS osc.noteOn is undefined.
160 PASS osc.noteOff is undefined. 165 PASS osc.noteOff is undefined.
161 PASS source.noteOn is undefined. 166 PASS source.noteOn is undefined.
162 PASS source.noteOff is undefined. 167 PASS source.noteOff is undefined.
163 PASS successfullyParsed is true 168 PASS successfullyParsed is true
164 169
165 TEST COMPLETE 170 TEST COMPLETE
166 171
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698