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

Side by Side Diff: third_party/WebKit/LayoutTests/webaudio/AudioNode/audionode-connect-method-chaining-expected.txt

Issue 2632373003: Throw correct error when connecting to different context. (Closed)
Patch Set: Update tests Created 3 years, 11 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 Test method chaining feature of AudioNode.connect() method. 1 Test method chaining feature of AudioNode.connect() method.
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 PASS The return value of AnalyserNode.connect(GainNode) matches the destination GainNode. 6 PASS The return value of AnalyserNode.connect(GainNode) matches the destination GainNode.
7 PASS The return value of AnalyserNode.connect(BiquadFilterNode, 0) matches the d estination BiquadFilterNode. 7 PASS The return value of AnalyserNode.connect(BiquadFilterNode, 0) matches the d estination BiquadFilterNode.
8 PASS The return value of AnalyserNode.connect(ChannelMergerNode, 0, 1) matches t he destination ChannelMergerNode. 8 PASS The return value of AnalyserNode.connect(ChannelMergerNode, 0, 1) matches t he destination ChannelMergerNode.
9 PASS The return value of BiquadFilterNode.connect(GainNode) matches the destinat ion GainNode. 9 PASS The return value of BiquadFilterNode.connect(GainNode) matches the destinat ion GainNode.
10 PASS The return value of BiquadFilterNode.connect(BiquadFilterNode, 0) matches t he destination BiquadFilterNode. 10 PASS The return value of BiquadFilterNode.connect(BiquadFilterNode, 0) matches t he destination BiquadFilterNode.
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 PASS The return value of MediaElementAudioSourceNode.connect(GainNode) matches t he destination GainNode. 48 PASS The return value of MediaElementAudioSourceNode.connect(GainNode) matches t he destination GainNode.
49 PASS The return value of MediaElementAudioSourceNode.connect(BiquadFilterNode, 0 ) matches the destination BiquadFilterNode. 49 PASS The return value of MediaElementAudioSourceNode.connect(BiquadFilterNode, 0 ) matches the destination BiquadFilterNode.
50 PASS The return value of MediaElementAudioSourceNode.connect(ChannelMergerNode, 0, 1) matches the destination ChannelMergerNode. 50 PASS The return value of MediaElementAudioSourceNode.connect(ChannelMergerNode, 0, 1) matches the destination ChannelMergerNode.
51 PASS The return value of MediaStreamAudioDestinationNode.connect(GainNode) match es the destination GainNode. 51 PASS The return value of MediaStreamAudioDestinationNode.connect(GainNode) match es the destination GainNode.
52 PASS The return value of MediaStreamAudioDestinationNode.connect(BiquadFilterNod e, 0) matches the destination BiquadFilterNode. 52 PASS The return value of MediaStreamAudioDestinationNode.connect(BiquadFilterNod e, 0) matches the destination BiquadFilterNode.
53 PASS The return value of MediaStreamAudioDestinationNode.connect(ChannelMergerNo de, 0, 1) matches the destination ChannelMergerNode. 53 PASS The return value of MediaStreamAudioDestinationNode.connect(ChannelMergerNo de, 0, 1) matches the destination ChannelMergerNode.
54 PASS The return value of MediaStreamAudioSourceNode.connect(GainNode) matches th e destination GainNode. 54 PASS The return value of MediaStreamAudioSourceNode.connect(GainNode) matches th e destination GainNode.
55 PASS The return value of MediaStreamAudioSourceNode.connect(BiquadFilterNode, 0) matches the destination BiquadFilterNode. 55 PASS The return value of MediaStreamAudioSourceNode.connect(BiquadFilterNode, 0) matches the destination BiquadFilterNode.
56 PASS The return value of MediaStreamAudioSourceNode.connect(ChannelMergerNode, 0 , 1) matches the destination ChannelMergerNode. 56 PASS The return value of MediaStreamAudioSourceNode.connect(ChannelMergerNode, 0 , 1) matches the destination ChannelMergerNode.
57 PASS Connecting with an invalid output threw IndexSizeError: Failed to execute ' connect' on 'AudioNode': output index (1) exceeds number of outputs (1).. 57 PASS Connecting with an invalid output threw IndexSizeError: Failed to execute ' connect' on 'AudioNode': output index (1) exceeds number of outputs (1)..
58 PASS Connecting to a node from the different context threw SyntaxError: Failed t o execute 'connect' on 'AudioNode': cannot connect to a destination belonging to a different audio context.. 58 PASS Connecting to a node from the different context threw InvalidAccessError: F ailed to execute 'connect' on 'AudioNode': cannot connect to a destination belon ging to a different audio context..
59 PASS The output of chained connection of gain nodes contains only the constant 0 .125. 59 PASS The output of chained connection of gain nodes contains only the constant 0 .125.
60 PASS successfullyParsed is true 60 PASS successfullyParsed is true
61 61
62 TEST COMPLETE 62 TEST COMPLETE
63 63
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698