| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="../../resources/testharness.js"></script> | 4 <script src="../../resources/testharness.js"></script> |
| 5 <script src="../../resources/testharnessreport.js"></script> | 5 <script src="../../resources/testharnessreport.js"></script> |
| 6 <script src="../resources/compatibility.js"></script> | |
| 7 <script src="../resources/audit-util.js"></script> | 6 <script src="../resources/audit-util.js"></script> |
| 8 <script src="../resources/audio-testing.js"></script> | 7 <script src="../resources/audio-testing.js"></script> |
| 9 <script src="../resources/fft.js"></script> | 8 <script src="../resources/fft.js"></script> |
| 10 <script src="../resources/realtimeanalyser-testing.js"></script> | 9 <script src="../resources/realtimeanalyser-testing.js"></script> |
| 11 <title>Test AnalyserNode Downmixing</title> | 10 <title>Test AnalyserNode Downmixing</title> |
| 12 </head> | 11 </head> |
| 13 | 12 |
| 14 <body> | 13 <body> |
| 15 <script> | 14 <script> |
| 16 var sampleRate = 44100; | 15 var sampleRate = 44100; |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 }) && success; | 112 }) && success; |
| 114 | 113 |
| 115 Should(prefix, success) | 114 Should(prefix, success) |
| 116 .summarize("downmixed correctly.", | 115 .summarize("downmixed correctly.", |
| 117 "no downmixed correctly."); | 116 "no downmixed correctly."); |
| 118 }); | 117 }); |
| 119 } | 118 } |
| 120 </script> | 119 </script> |
| 121 </body> | 120 </body> |
| 122 </html> | 121 </html> |
| OLD | NEW |