| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 | 2 |
| 3 <!-- | 3 <!-- |
| 4 Tests that multiple audio-rate signals (AudioNode outputs) can be connected to a
n AudioParam | 4 Tests that multiple audio-rate signals (AudioNode outputs) can be connected to a
n AudioParam |
| 5 and that these signals are summed, along with the AudioParams intrinsic value. | 5 and that these signals are summed, along with the AudioParams intrinsic value. |
| 6 --> | 6 --> |
| 7 | 7 |
| 8 <html> | 8 <html> |
| 9 <head> | 9 <head> |
| 10 <script src="../resources/js-test.js"></script> | 10 <script src="../resources/js-test.js"></script> |
| 11 <script src="resources/compatibility.js"></script> | 11 <script src="resources/compatibility.js"></script> |
| 12 <script src="resources/audit-util.js"></script> |
| 12 <script src="resources/audio-testing.js"></script> | 13 <script src="resources/audio-testing.js"></script> |
| 13 <script src="resources/mix-testing.js"></script> | 14 <script src="resources/mix-testing.js"></script> |
| 14 | 15 |
| 15 </head> | 16 </head> |
| 16 <body> | 17 <body> |
| 17 | 18 |
| 18 <script> | 19 <script> |
| 19 | 20 |
| 20 var sampleRate = 44100.0; | 21 var sampleRate = 44100.0; |
| 21 var lengthInSeconds = 1; | 22 var lengthInSeconds = 1; |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 context.startRendering(); | 123 context.startRendering(); |
| 123 } | 124 } |
| 124 | 125 |
| 125 runTest(); | 126 runTest(); |
| 126 successfullyParsed = true; | 127 successfullyParsed = true; |
| 127 | 128 |
| 128 </script> | 129 </script> |
| 129 | 130 |
| 130 </body> | 131 </body> |
| 131 </html> | 132 </html> |
| OLD | NEW |