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

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

Issue 2803913003: Add options.omitErrorMessage for should.throw() (Closed)
Patch Set: Add [error message omitted] Created 3 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
OLDNEW
1 CONSOLE WARNING: line 308: The provided value 'fancy' is not a valid enum value of type ChannelCountMode. 1 CONSOLE WARNING: line 308: The provided value 'fancy' is not a valid enum value of type ChannelCountMode.
2 CONSOLE WARNING: line 314: The provided value 'undefined' is not a valid enum va lue of type ChannelInterpretation. 2 CONSOLE WARNING: line 314: The provided value 'undefined' is not a valid enum va lue of type ChannelInterpretation.
3 CONSOLE WARNING: line 444: The provided value '9x' is not a valid enum value of type OverSampleType. 3 CONSOLE WARNING: line 444: The provided value '9x' is not a valid enum value of type OverSampleType.
4 CONSOLE WARNING: line 659: The provided value 'junk' is not a valid enum value o f type ChannelCountMode. 4 CONSOLE WARNING: line 659: The provided value 'junk' is not a valid enum value o f type ChannelCountMode.
5 CONSOLE WARNING: line 688: The provided value 'junk' is not a valid enum value o f type ChannelCountMode. 5 CONSOLE WARNING: line 688: 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 PASS node.disconnect(99) threw IndexSizeError: "Failed to execute 'disconnect' on 'AudioNode': The output index provided (99) is outside the range [0, 0].". 89 PASS node.disconnect(99) threw IndexSizeError: "Failed to execute 'disconnect' on 'AudioNode': The output index provided (99) is outside the range [0, 0].".
90 PASS node.connect(otherContext.destination) threw InvalidAccessError: "Failed to execute 'connect' on 'AudioNode': cannot connect to a destination belonging t o a different audio context.". 90 PASS node.connect(otherContext.destination) threw InvalidAccessError: "Failed to execute 'connect' on 'AudioNode': cannot connect to a destination belonging t o a different audio context.".
91 PASS < [connections] All assertions passed. (total 6 assertions) 91 PASS < [connections] All assertions passed. (total 6 assertions)
92 PASS > [channel-stuff] channelCount, channelCountMode, channelInterpretation 92 PASS > [channel-stuff] channelCount, channelCountMode, channelInterpretation
93 PASS GainNode.channelCount = 99 threw NotSupportedError: "Failed to set the 'c hannelCount' property on 'AudioNode': The channel count provided (99) is outside the range [1, 32].". 93 PASS GainNode.channelCount = 99 threw NotSupportedError: "Failed to set the 'c hannelCount' property on 'AudioNode': The channel count provided (99) is outside the range [1, 32].".
94 PASS GainNode.channelCount is not equal to 99. 94 PASS GainNode.channelCount is not equal to 99.
95 PASS node.channelCountMode = "fancy" did not throw an exception. 95 PASS node.channelCountMode = "fancy" did not throw an exception.
96 PASS node.channelCountMode is equal to max. 96 PASS node.channelCountMode is equal to max.
97 PASS node.channelInterpretation = mode did not throw an exception. 97 PASS node.channelInterpretation = mode did not throw an exception.
98 PASS node.channelInterpretation is equal to speakers. 98 PASS node.channelInterpretation is equal to speakers.
99 PASS context.destination.channelCount = 99 threw IndexSizeError: "Failed to se t the 'channelCount' property on 'AudioNode': The channel count provided (99) is outside the range [1, 2].". 99 PASS context.destination.channelCount = 99 threw IndexSizeError: [error messag e omitted].
100 PASS < [channel-stuff] All assertions passed. (total 7 assertions) 100 PASS < [channel-stuff] All assertions passed. (total 7 assertions)
101 PASS > [audioparam] 101 PASS > [audioparam]
102 PASS param.setValueCurveAtTime(null, 0, 0) threw TypeError: "Failed to execute 'setValueCurveAtTime' on 'AudioParam': parameter 1 is not of type 'Float32Array '.". 102 PASS param.setValueCurveAtTime(null, 0, 0) threw TypeError: "Failed to execute 'setValueCurveAtTime' on 'AudioParam': parameter 1 is not of type 'Float32Array '.".
103 PASS node.gain.exponentialRampToValueAtTime(-1, 0.1) did not throw an exceptio n. 103 PASS node.gain.exponentialRampToValueAtTime(-1, 0.1) did not throw an exceptio n.
104 PASS node.gain.exponentialRampToValueAtTime(0, 0.1) threw InvalidAccessError: "Failed to execute 'exponentialRampToValueAtTime' on 'AudioParam': The float tar get value provided (0) should not be in the range (-1.40130e-45, 1.40130e-45).". 104 PASS node.gain.exponentialRampToValueAtTime(0, 0.1) threw InvalidAccessError: "Failed to execute 'exponentialRampToValueAtTime' on 'AudioParam': The float tar get value provided (0) should not be in the range (-1.40130e-45, 1.40130e-45).".
105 PASS node.gain.exponentialRampToValueAtTime(1e-100, 0.1) threw InvalidAccessEr ror: "Failed to execute 'exponentialRampToValueAtTime' on 'AudioParam': The floa t target value provided (0) should not be in the range (-1.40130e-45, 1.40130e-4 5).". 105 PASS node.gain.exponentialRampToValueAtTime(1e-100, 0.1) threw InvalidAccessEr ror: "Failed to execute 'exponentialRampToValueAtTime' on 'AudioParam': The floa t target value provided (0) should not be in the range (-1.40130e-45, 1.40130e-4 5).".
106 PASS node.gain.exponentialRampToValueAtTime(Math.pow(2, -149), 0.1) did not th row an exception. 106 PASS node.gain.exponentialRampToValueAtTime(Math.pow(2, -149), 0.1) did not th row an exception.
107 PASS node.gain.exponentialRampToValueAtTime(Math.pow(2, -150), 0.1) threw Inva lidAccessError: "Failed to execute 'exponentialRampToValueAtTime' on 'AudioParam ': The float target value provided (0) should not be in the range (-1.40130e-45, 1.40130e-45).". 107 PASS node.gain.exponentialRampToValueAtTime(Math.pow(2, -150), 0.1) threw Inva lidAccessError: "Failed to execute 'exponentialRampToValueAtTime' on 'AudioParam ': The float target value provided (0) should not be in the range (-1.40130e-45, 1.40130e-45).".
108 PASS < [audioparam] All assertions passed. (total 6 assertions) 108 PASS < [audioparam] All assertions passed. (total 6 assertions)
109 PASS > [biquad] 109 PASS > [biquad]
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 PASS < [script-processor] All assertions passed. (total 14 assertions) 231 PASS < [script-processor] All assertions passed. (total 14 assertions)
232 PASS > [misc] Miscellaneous tests 232 PASS > [misc] Miscellaneous tests
233 PASS osc.noteOn is equal to undefined. 233 PASS osc.noteOn is equal to undefined.
234 PASS osc.noteOff is equal to undefined. 234 PASS osc.noteOff is equal to undefined.
235 PASS source.noteOn is equal to undefined. 235 PASS source.noteOn is equal to undefined.
236 PASS source.noteOff is equal to undefined. 236 PASS source.noteOff is equal to undefined.
237 PASS < [misc] All assertions passed. (total 4 assertions) 237 PASS < [misc] All assertions passed. (total 4 assertions)
238 PASS # AUDIT TASK RUNNER FINISHED: 22 tasks ran successfully. 238 PASS # AUDIT TASK RUNNER FINISHED: 22 tasks ran successfully.
239 Harness: the test ran to completion. 239 Harness: the test ran to completion.
240 240
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698