OLD | NEW |
1 CONSOLE WARNING: Deprecated AudioContext constructor: use OfflineAudioContext in
stead | 1 CONSOLE WARNING: Deprecated AudioContext constructor: use OfflineAudioContext in
stead |
2 Basic tests for AudioNode API. | 2 Basic tests for AudioNode API. |
3 | 3 |
4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
5 | 5 |
6 PASS audioNode.noteOn() threw exception TypeError: Failed to execute 'noteOn' on
'AudioBufferSourceNode': 1 argument required, but only 0 present.. | 6 PASS audioNode.noteOn() threw exception TypeError: Failed to execute 'noteOn' on
'AudioBufferSourceNode': 1 argument required, but only 0 present.. |
7 PASS audioNode.noteGrainOn() threw exception TypeError: Failed to execute 'noteG
rainOn' on 'AudioBufferSourceNode': 3 arguments required, but only 0 present.. | 7 PASS audioNode.noteGrainOn() threw exception TypeError: Failed to execute 'noteG
rainOn' on 'AudioBufferSourceNode': 3 arguments required, but only 0 present.. |
8 PASS audioNode.noteOff() threw exception TypeError: Failed to execute 'noteOff'
on 'AudioBufferSourceNode': 1 argument required, but only 0 present.. | 8 PASS audioNode.noteOff() threw exception TypeError: Failed to execute 'noteOff'
on 'AudioBufferSourceNode': 1 argument required, but only 0 present.. |
9 PASS Source AudioNode has no inputs. | 9 PASS Source AudioNode has no inputs. |
10 PASS Source AudioNode has one output. | 10 PASS Source AudioNode has one output. |
11 PASS Destination AudioNode has one input. | 11 PASS Destination AudioNode has one input. |
12 PASS Destination AudioNode has no outputs. | 12 PASS Destination AudioNode has no outputs. |
13 PASS connect() exception thrown for illegal destination AudioNode. | 13 PASS connect() exception thrown for illegal destination AudioNode. |
14 PASS connect() exception thrown for illegal output index. | 14 PASS connect() exception thrown for illegal output index. |
15 PASS connect() exception thrown for illegal input index. | 15 PASS connect() exception thrown for illegal input index. |
16 PASS audioNode.connect(context.destination) succeeded. | 16 PASS audioNode.connect(context.destination) succeeded. |
17 PASS exception thrown when connecting to other context's node. | 17 PASS exception thrown when connecting to other context's node. |
18 PASS exception thrown when creating audio context with not enough arguments. | 18 PASS exception thrown when creating audio context with not enough arguments. |
| 19 PASS context3 = new webkitAudioContext(1, 44100, 44100) did not throw exception. |
19 PASS AudioNode is an EventTarget | 20 PASS AudioNode is an EventTarget |
20 PASS successfullyParsed is true | 21 PASS successfullyParsed is true |
21 | 22 |
22 TEST COMPLETE | 23 TEST COMPLETE |
23 | 24 |
OLD | NEW |