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

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

Issue 2842003003: Make AudioBufferSourceNode.buffer setter conforming (Closed)
Patch Set: Update expected result Created 3 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
OLDNEW
1 CONSOLE WARNING: line 347: The provided value 'fancy' is not a valid enum value of type ChannelCountMode. 1 CONSOLE WARNING: line 347: The provided value 'fancy' is not a valid enum value of type ChannelCountMode.
2 CONSOLE WARNING: line 353: The provided value 'undefined' is not a valid enum va lue of type ChannelInterpretation. 2 CONSOLE WARNING: line 353: The provided value 'undefined' is not a valid enum va lue of type ChannelInterpretation.
3 CONSOLE WARNING: line 504: The provided value '9x' is not a valid enum value of type OverSampleType. 3 CONSOLE WARNING: line 504: The provided value '9x' is not a valid enum value of type OverSampleType.
4 CONSOLE WARNING: line 748: The provided value 'junk' is not a valid enum value o f type ChannelCountMode. 4 CONSOLE WARNING: line 748: The provided value 'junk' is not a valid enum value o f type ChannelCountMode.
5 CONSOLE WARNING: line 779: The provided value 'junk' is not a valid enum value o f type ChannelCountMode. 5 CONSOLE WARNING: line 779: The provided value 'junk' is not a valid enum value o f type ChannelCountMode.
6 This is a testharness.js-based test. 6 This is a testharness.js-based test.
7 PASS # AUDIT TASK RUNNER STARTED. 7 PASS # AUDIT TASK RUNNER STARTED.
8 PASS > [initialize] Initialize contexts for testing 8 PASS > [initialize] Initialize contexts for testing
9 PASS context = new AudioContext() did not throw an exception. 9 PASS context = new AudioContext() did not throw an exception.
10 PASS otherContext = new AudioContext() did not throw an exception. 10 PASS otherContext = new AudioContext() did not throw an exception.
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 PASS node.oversample is equal to none. 133 PASS node.oversample is equal to none.
134 PASS node.curve = {} threw TypeError: "Failed to set the 'curve' property on ' WaveShaperNode': The provided value is not of type 'Float32Array'.". 134 PASS node.curve = {} threw TypeError: "Failed to set the 'curve' property on ' WaveShaperNode': The provided value is not of type 'Float32Array'.".
135 PASS node.curve = new Float32Array(1) threw InvalidAccessError: "Failed to set the 'curve' property on 'WaveShaperNode': The curve length provided (1) is less than the minimum bound (2).". 135 PASS node.curve = new Float32Array(1) threw InvalidAccessError: "Failed to set the 'curve' property on 'WaveShaperNode': The curve length provided (1) is less than the minimum bound (2).".
136 PASS node.curve is equal to ${expected}. 136 PASS node.curve is equal to ${expected}.
137 PASS node.curve = new Float32Array(2) did not throw an exception. 137 PASS node.curve = new Float32Array(2) did not throw an exception.
138 PASS node.curve = null did not throw an exception. 138 PASS node.curve = null did not throw an exception.
139 PASS < [waveshaper] All assertions passed. (total 7 assertions) 139 PASS < [waveshaper] All assertions passed. (total 7 assertions)
140 PASS > [audio-buffer-source] AudioBufferSource start/stop 140 PASS > [audio-buffer-source] AudioBufferSource start/stop
141 PASS source = context.createBufferSource() did not throw an exception. 141 PASS source = context.createBufferSource() did not throw an exception.
142 PASS source.buffer = buffer did not throw an exception. 142 PASS source.buffer = buffer did not throw an exception.
143 PASS source.buffer = context.createBuffer(1, 10, context.sampleRate) threw Inv alidStateError: "Failed to set the 'buffer' property on 'AudioBufferSourceNode': Cannot set buffer after it has been already been set". 143 PASS source.buffer = context.createBuffer(1, 10, context.sampleRate) threw Inv alidStateError: "Failed to set the 'buffer' property on 'AudioBufferSourceNode': Cannot set buffer to non-null after it has been already been set to a non-null buffer".
144 PASS source.start(-1) threw RangeError: "Failed to execute 'start' on 'AudioBu fferSourceNode': The start time provided (-1) is less than the minimum bound (0) .". 144 PASS source.start(-1) threw RangeError: "Failed to execute 'start' on 'AudioBu fferSourceNode': The start time provided (-1) is less than the minimum bound (0) .".
145 PASS source.start(Infinity) threw TypeError: "Failed to execute 'start' on 'Au dioBufferSourceNode': The provided double value is non-finite.". 145 PASS source.start(Infinity) threw TypeError: "Failed to execute 'start' on 'Au dioBufferSourceNode': The provided double value is non-finite.".
146 PASS source.start(-Infinity) threw TypeError: "Failed to execute 'start' on 'A udioBufferSourceNode': The provided double value is non-finite.". 146 PASS source.start(-Infinity) threw TypeError: "Failed to execute 'start' on 'A udioBufferSourceNode': The provided double value is non-finite.".
147 PASS source.start(NaN) threw TypeError: "Failed to execute 'start' on 'AudioBu fferSourceNode': The provided double value is non-finite.". 147 PASS source.start(NaN) threw TypeError: "Failed to execute 'start' on 'AudioBu fferSourceNode': The provided double value is non-finite.".
148 PASS source.start(1, Infinity) threw TypeError: "Failed to execute 'start' on 'AudioBufferSourceNode': The provided double value is non-finite.". 148 PASS source.start(1, Infinity) threw TypeError: "Failed to execute 'start' on 'AudioBufferSourceNode': The provided double value is non-finite.".
149 PASS source.start(1, -Infinity) threw TypeError: "Failed to execute 'start' on 'AudioBufferSourceNode': The provided double value is non-finite.". 149 PASS source.start(1, -Infinity) threw TypeError: "Failed to execute 'start' on 'AudioBufferSourceNode': The provided double value is non-finite.".
150 PASS source.start(1, NaN) threw TypeError: "Failed to execute 'start' on 'Audi oBufferSourceNode': The provided double value is non-finite.". 150 PASS source.start(1, NaN) threw TypeError: "Failed to execute 'start' on 'Audi oBufferSourceNode': The provided double value is non-finite.".
151 PASS source.start(1, -1) threw RangeError: "Failed to execute 'start' on 'Audi oBufferSourceNode': The offset provided (-1) is less than the minimum bound (0). ". 151 PASS source.start(1, -1) threw RangeError: "Failed to execute 'start' on 'Audi oBufferSourceNode': The offset provided (-1) is less than the minimum bound (0). ".
152 PASS source.start(1, -Number.MIN_VALUE) threw RangeError: "Failed to execute ' start' on 'AudioBufferSourceNode': The offset provided (-4.94066e-324) is less t han the minimum bound (0).". 152 PASS source.start(1, -Number.MIN_VALUE) threw RangeError: "Failed to execute ' start' on 'AudioBufferSourceNode': The offset provided (-4.94066e-324) is less t han the minimum bound (0).".
153 PASS source.start(1, 1, Infinity) threw TypeError: "Failed to execute 'start' on 'AudioBufferSourceNode': The provided double value is non-finite.". 153 PASS source.start(1, 1, Infinity) threw TypeError: "Failed to execute 'start' on 'AudioBufferSourceNode': The provided double value is non-finite.".
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 PASS < [script-processor] All assertions passed. (total 14 assertions) 238 PASS < [script-processor] All assertions passed. (total 14 assertions)
239 PASS > [misc] Miscellaneous tests 239 PASS > [misc] Miscellaneous tests
240 PASS osc.noteOn is equal to undefined. 240 PASS osc.noteOn is equal to undefined.
241 PASS osc.noteOff is equal to undefined. 241 PASS osc.noteOff is equal to undefined.
242 PASS source.noteOn is equal to undefined. 242 PASS source.noteOn is equal to undefined.
243 PASS source.noteOff is equal to undefined. 243 PASS source.noteOff is equal to undefined.
244 PASS < [misc] All assertions passed. (total 4 assertions) 244 PASS < [misc] All assertions passed. (total 4 assertions)
245 PASS # AUDIT TASK RUNNER FINISHED: 22 tasks ran successfully. 245 PASS # AUDIT TASK RUNNER FINISHED: 22 tasks ran successfully.
246 Harness: the test ran to completion. 246 Harness: the test ran to completion.
247 247
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698