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

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

Issue 2581463002: Refactor WebAudio test directory (Closed)
Patch Set: Use correct path for wav result files Created 3 years, 12 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 SyntaxError: Failed t o execute 'connect' on 'AudioNode': cannot connect to a destination belonging 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