| 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 <link rel="stylesheet" href="../fast/js/resources/js-test-style.css"/> | 10 <link rel="stylesheet" href="../fast/js/resources/js-test-style.css"/> |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 gainSource2.noteOn(0); | 119 gainSource2.noteOn(0); |
| 120 | 120 |
| 121 context.oncomplete = checkResult; | 121 context.oncomplete = checkResult; |
| 122 context.startRendering(); | 122 context.startRendering(); |
| 123 } | 123 } |
| 124 | 124 |
| 125 runTest(); | 125 runTest(); |
| 126 successfullyParsed = true; | 126 successfullyParsed = true; |
| 127 | 127 |
| 128 </script> | 128 </script> |
| 129 <script src="../fast/js/resources/js-test-post.js"></script> | |
| 130 | 129 |
| 131 </body> | 130 </body> |
| 132 </html> | 131 </html> |
| OLD | NEW |