OLD | NEW |
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 Loading... |
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 |
OLD | NEW |