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

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

Issue 1180613007: Allow larger arrays up to size 8192 for PeriodicWave (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase and use Audit.runTasks() Created 5 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « LayoutTests/webaudio/dom-exceptions.html ('k') | LayoutTests/webaudio/osc-low-freq.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 CONSOLE WARNING: The provided value 'fancy' is not a valid enum value of type Ch annelCountMode. 1 CONSOLE WARNING: The provided value 'fancy' is not a valid enum value of type Ch annelCountMode.
2 CONSOLE WARNING: The provided value 'undefined' is not a valid enum value of typ e ChannelInterpretation. 2 CONSOLE WARNING: The provided value 'undefined' is not a valid enum value of typ e ChannelInterpretation.
3 CONSOLE WARNING: The provided value '9x' is not a valid enum value of type OverS ampleType. 3 CONSOLE WARNING: The provided value '9x' is not a valid enum value of type OverS ampleType.
4 CONSOLE WARNING: The provided value 'junk' is not a valid enum value of type Cha nnelCountMode. 4 CONSOLE WARNING: The provided value 'junk' is not a valid enum value of type Cha nnelCountMode.
5 CONSOLE WARNING: The provided value 'junk' is not a valid enum value of type Cha nnelCountMode. 5 CONSOLE WARNING: The provided value 'junk' is not a valid enum value of type Cha nnelCountMode.
6 Tests DOM exception messages 6 Tests DOM exception messages
7 7
8 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 8 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
9 9
10 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].. 10 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]..
(...skipping 11 matching lines...) Expand all
22 PASS context.createScriptProcessor(4096, 100, 1) threw exception IndexSizeError: Failed to execute 'createScriptProcessor' on 'AudioContext': number of input ch annels (100) exceeds maximum (32).. 22 PASS context.createScriptProcessor(4096, 100, 1) threw exception IndexSizeError: Failed to execute 'createScriptProcessor' on 'AudioContext': number of input ch annels (100) exceeds maximum (32)..
23 PASS context.createScriptProcessor(4096, 1, 100) threw exception IndexSizeError: Failed to execute 'createScriptProcessor' on 'AudioContext': number of output c hannels (1) exceeds maximum (32).. 23 PASS context.createScriptProcessor(4096, 1, 100) threw exception IndexSizeError: Failed to execute 'createScriptProcessor' on 'AudioContext': number of output c hannels (1) exceeds maximum (32)..
24 PASS context.createScriptProcessor() did not throw exception. 24 PASS context.createScriptProcessor() did not throw exception.
25 PASS context.createScriptProcessor(0) did not throw exception. 25 PASS context.createScriptProcessor(0) did not throw exception.
26 PASS context.createChannelSplitter(0) threw exception IndexSizeError: Failed to execute 'createChannelSplitter' on 'AudioContext': number of outputs (0) must be between 1 and 32.. 26 PASS context.createChannelSplitter(0) threw exception IndexSizeError: Failed to execute 'createChannelSplitter' on 'AudioContext': number of outputs (0) must be between 1 and 32..
27 PASS context.createChannelSplitter(99) threw exception IndexSizeError: Failed to execute 'createChannelSplitter' on 'AudioContext': number of outputs (99) must be between 1 and 32.. 27 PASS context.createChannelSplitter(99) threw exception IndexSizeError: Failed to execute 'createChannelSplitter' on 'AudioContext': number of outputs (99) must be between 1 and 32..
28 PASS context.createChannelMerger(0) threw exception IndexSizeError: Failed to ex ecute 'createChannelMerger' on 'AudioContext': The number of inputs provided (0) is outside the range [1, 32].. 28 PASS context.createChannelMerger(0) threw exception IndexSizeError: Failed to ex ecute 'createChannelMerger' on 'AudioContext': The number of inputs provided (0) is outside the range [1, 32]..
29 PASS context.createChannelMerger(99) threw exception IndexSizeError: Failed to e xecute 'createChannelMerger' on 'AudioContext': The number of inputs provided (9 9) is outside the range [1, 32].. 29 PASS context.createChannelMerger(99) threw exception IndexSizeError: Failed to e xecute 'createChannelMerger' on 'AudioContext': The number of inputs provided (9 9) is outside the range [1, 32]..
30 PASS context.createPeriodicWave(null, null) threw exception SyntaxError: Failed to execute 'createPeriodicWave' on 'AudioContext': invalid real array. 30 PASS context.createPeriodicWave(null, null) threw exception SyntaxError: Failed to execute 'createPeriodicWave' on 'AudioContext': invalid real array.
31 PASS context.createPeriodicWave(new Float32Array(10), null) threw exception Synt axError: Failed to execute 'createPeriodicWave' on 'AudioContext': invalid imagi nary array. 31 PASS context.createPeriodicWave(new Float32Array(10), null) threw exception Synt axError: Failed to execute 'createPeriodicWave' on 'AudioContext': invalid imagi nary array.
32 PASS context.createPeriodicWave(new Float32Array(4100), new Float32Array(4100)) threw exception IndexSizeError: Failed to execute 'createPeriodicWave' on 'Audio Context': The length of the real part array provided (4100) is outside the range [1, 2048].. 32 PASS context.createPeriodicWave(new Float32Array(4100), new Float32Array(4100)) did not throw exception.
33 PASS context.createPeriodicWave(new Float32Array(100), new Float32Array(4100)) t hrew exception IndexSizeError: Failed to execute 'createPeriodicWave' on 'AudioC ontext': The length of the imaginary part array provided (4100) is outside the r ange [1, 2048].. 33 PASS context.createPeriodicWave(new Float32Array(8192), new Float32Array(8192)) did not throw exception.
34 PASS context.createPeriodicWave(new Float32Array(10000), new Float32Array(10000) ) did not throw exception.
34 PASS context.createPeriodicWave(new Float32Array(10), new Float32Array(7)) threw exception IndexSizeError: Failed to execute 'createPeriodicWave' on 'AudioConte xt': length of real array (10) and length of imaginary array (7) must match.. 35 PASS context.createPeriodicWave(new Float32Array(10), new Float32Array(7)) threw exception IndexSizeError: Failed to execute 'createPeriodicWave' on 'AudioConte xt': length of real array (10) and length of imaginary array (7) must match..
35 PASS context.createPeriodicWave(new Float32Array(2048), new Float32Array(2048)) did not throw exception.
36 PASS context.createPeriodicWave(new Float32Array(2049), new Float32Array(2049)) threw exception IndexSizeError: Failed to execute 'createPeriodicWave' on 'Audio Context': The length of the real part array provided (2049) is outside the range [1, 2048]..
37 PASS node.fftSize = 42 threw exception IndexSizeError: Failed to set the 'fftSiz e' property on 'AnalyserNode': The value provided (42) is not a power of two.. 36 PASS node.fftSize = 42 threw exception IndexSizeError: Failed to set the 'fftSiz e' property on 'AnalyserNode': The value provided (42) is not a power of two..
38 PASS node.fftSize is not 42 37 PASS node.fftSize is not 42
39 PASS node.fftSize = 16 threw exception IndexSizeError: Failed to set the 'fftSiz e' property on 'AnalyserNode': The FFT size provided (16) is outside the range [ 32, 32768].. 38 PASS node.fftSize = 16 threw exception IndexSizeError: Failed to set the 'fftSiz e' property on 'AnalyserNode': The FFT size provided (16) is outside the range [ 32, 32768]..
40 PASS node.fftSize is not 16 39 PASS node.fftSize is not 16
41 PASS node.fftSize = 32768 did not throw exception. 40 PASS node.fftSize = 32768 did not throw exception.
42 PASS node.fftSize = 65536 threw exception IndexSizeError: Failed to set the 'fft Size' property on 'AnalyserNode': The FFT size provided (65536) is outside the r ange [32, 32768].. 41 PASS node.fftSize = 65536 threw exception IndexSizeError: Failed to set the 'fft Size' property on 'AnalyserNode': The FFT size provided (65536) is outside the r ange [32, 32768]..
43 PASS node.fftSize is not 65536 42 PASS node.fftSize is not 65536
44 PASS node.minDecibels = -10 threw exception IndexSizeError: Failed to set the 'm inDecibels' property on 'AnalyserNode': The minDecibels provided (-10) is greate r than the maximum bound (-30).. 43 PASS node.minDecibels = -10 threw exception IndexSizeError: Failed to set the 'm inDecibels' property on 'AnalyserNode': The minDecibels provided (-10) is greate r than the maximum bound (-30)..
45 PASS node.minDecibels is not -10 44 PASS node.minDecibels is not -10
46 PASS node.maxDecibels = -150 threw exception IndexSizeError: Failed to set the ' maxDecibels' property on 'AnalyserNode': The maxDecibels provided (-150) is less than the minimum bound (-100).. 45 PASS node.maxDecibels = -150 threw exception IndexSizeError: Failed to set the ' maxDecibels' property on 'AnalyserNode': The maxDecibels provided (-150) is less than the minimum bound (-100)..
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 PASS script.channelCountMode is not 'clamped-max' 169 PASS script.channelCountMode is not 'clamped-max'
171 PASS script.channelCountMode = 'junk' did not throw exception. 170 PASS script.channelCountMode = 'junk' did not throw exception.
172 PASS osc.noteOn is undefined. 171 PASS osc.noteOn is undefined.
173 PASS osc.noteOff is undefined. 172 PASS osc.noteOff is undefined.
174 PASS source.noteOn is undefined. 173 PASS source.noteOn is undefined.
175 PASS source.noteOff is undefined. 174 PASS source.noteOff is undefined.
176 PASS successfullyParsed is true 175 PASS successfullyParsed is true
177 176
178 TEST COMPLETE 177 TEST COMPLETE
179 178
OLDNEW
« no previous file with comments | « LayoutTests/webaudio/dom-exceptions.html ('k') | LayoutTests/webaudio/osc-low-freq.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698