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

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

Issue 1074463003: Return after throwing an exception when ConvolerNode.buffer rate is wrong. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 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') | Source/modules/webaudio/ConvolverNode.cpp » ('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: 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 enum value of type Cha nnelCountMode. 5 CONSOLE WARNING: The provided value 'junk' is not a valid enum value of type Cha nnelCountMode.
6 CONSOLE WARNING: The provided value 'junk' is not a valid enum value of type Cha nnelCountMode. 6 CONSOLE WARNING: The provided value 'junk' is not a valid enum value of type Cha nnelCountMode.
7 Tests DOM exception messages 7 Tests DOM exception messages
8 8
9 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 ".
10 10
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 PASS osc1 = context.createOscillator() did not throw exception. 129 PASS osc1 = context.createOscillator() did not throw exception.
130 PASS osc1.start() did not throw exception. 130 PASS osc1.start() did not throw exception.
131 PASS osc1.stop() did not throw exception. 131 PASS osc1.stop() did not throw exception.
132 PASS node.gain.exponentialRampToValueAtTime(-1, 0.1) threw exception InvalidAcce ssError: Failed to execute 'exponentialRampToValueAtTime' on 'AudioParam': The f loat target value provided (-1) is outside the range [1.40130e-45, Infinity).. 132 PASS node.gain.exponentialRampToValueAtTime(-1, 0.1) threw exception InvalidAcce ssError: Failed to execute 'exponentialRampToValueAtTime' on 'AudioParam': The f loat target value provided (-1) is outside the range [1.40130e-45, Infinity)..
133 PASS node.gain.exponentialRampToValueAtTime(0, 0.1) threw exception InvalidAcces sError: Failed to execute 'exponentialRampToValueAtTime' on 'AudioParam': The fl oat target value provided (0) is outside the range [1.40130e-45, Infinity).. 133 PASS node.gain.exponentialRampToValueAtTime(0, 0.1) threw exception InvalidAcces sError: Failed to execute 'exponentialRampToValueAtTime' on 'AudioParam': The fl oat target value provided (0) is outside the range [1.40130e-45, Infinity)..
134 PASS node.gain.exponentialRampToValueAtTime(Math.pow(2, -149), 0.1) did not thro w exception. 134 PASS node.gain.exponentialRampToValueAtTime(Math.pow(2, -149), 0.1) did not thro w exception.
135 PASS node.gain.exponentialRampToValueAtTime(Math.pow(2, -150), 0.1) threw except ion InvalidAccessError: Failed to execute 'exponentialRampToValueAtTime' on 'Aud ioParam': The float target value provided (0) is outside the range [1.40130e-45, Infinity).. 135 PASS node.gain.exponentialRampToValueAtTime(Math.pow(2, -150), 0.1) threw except ion InvalidAccessError: Failed to execute 'exponentialRampToValueAtTime' on 'Aud ioParam': The float target value provided (0) is outside the range [1.40130e-45, Infinity)..
136 PASS oc = new OfflineAudioContext(1, 44100, 44100) did not throw exception. 136 PASS oc = new OfflineAudioContext(1, 44100, 44100) did not throw exception.
137 PASS conv = oc.createConvolver() did not throw exception. 137 PASS conv = oc.createConvolver() did not throw exception.
138 PASS conv.buffer = oc.createBuffer(1, 100, 22050) threw exception NotSupportedEr ror: Failed to set the 'buffer' property on 'ConvolverNode': The buffer sample r ate of 22050 does not match the context rate of 44100 Hz.. 138 PASS conv.buffer = oc.createBuffer(1, 100, 22050) threw exception NotSupportedEr ror: Failed to set the 'buffer' property on 'ConvolverNode': The buffer sample r ate of 22050 does not match the context rate of 44100 Hz..
139 PASS conv.buffer is null
139 PASS panner.channelCount = 1 did not throw exception. 140 PASS panner.channelCount = 1 did not throw exception.
140 PASS panner.channelCount = 2 did not throw exception. 141 PASS panner.channelCount = 2 did not throw exception.
141 PASS panner.channelCount = 0 threw exception NotSupportedError: Failed to set th e 'channelCount' property on 'AudioNode': The channelCount provided (0) is outsi de the range [1, 2].. 142 PASS panner.channelCount = 0 threw exception NotSupportedError: Failed to set th e 'channelCount' property on 'AudioNode': The channelCount provided (0) is outsi de the range [1, 2]..
142 PASS panner.channelCount is not 0 143 PASS panner.channelCount is not 0
143 PASS panner.channelCount = 3 threw exception NotSupportedError: Failed to set th e 'channelCount' property on 'AudioNode': The channelCount provided (3) is outsi de the range [1, 2].. 144 PASS panner.channelCount = 3 threw exception NotSupportedError: Failed to set th e 'channelCount' property on 'AudioNode': The channelCount provided (3) is outsi de the range [1, 2]..
144 PASS panner.channelCount is not 3 145 PASS panner.channelCount is not 3
145 PASS panner.channelCountMode = 'max' threw exception NotSupportedError: Failed t o set the 'channelCountMode' property on 'AudioNode': Failed to set the 'channel CountMode' property on 'PannerNode': 'max' is not allowed. 146 PASS panner.channelCountMode = 'max' threw exception NotSupportedError: Failed t o set the 'channelCountMode' property on 'AudioNode': Failed to set the 'channel CountMode' property on 'PannerNode': 'max' is not allowed.
146 PASS panner.channelCountMode is not 'max' 147 PASS panner.channelCountMode is not 'max'
147 PASS panner.channelCountMode = 'explicit' did not throw exception. 148 PASS panner.channelCountMode = 'explicit' did not throw exception.
148 PASS panner.channelCountMode = 'clamped-max' did not throw exception. 149 PASS panner.channelCountMode = 'clamped-max' did not throw exception.
(...skipping 13 matching lines...) Expand all
162 PASS script.channelCountMode is not 'clamped-max' 163 PASS script.channelCountMode is not 'clamped-max'
163 PASS script.channelCountMode = 'junk' did not throw exception. 164 PASS script.channelCountMode = 'junk' did not throw exception.
164 PASS osc.noteOn is undefined. 165 PASS osc.noteOn is undefined.
165 PASS osc.noteOff is undefined. 166 PASS osc.noteOff is undefined.
166 PASS source.noteOn is undefined. 167 PASS source.noteOn is undefined.
167 PASS source.noteOff is undefined. 168 PASS source.noteOff is undefined.
168 PASS successfullyParsed is true 169 PASS successfullyParsed is true
169 170
170 TEST COMPLETE 171 TEST COMPLETE
171 172
OLDNEW
« no previous file with comments | « LayoutTests/webaudio/dom-exceptions.html ('k') | Source/modules/webaudio/ConvolverNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698