OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="../resources/js-test.js"></script> | 4 <script src="../../resources/js-test.js"></script> |
5 <script src="resources/compatibility.js"></script> | 5 <script src="../resources/compatibility.js"></script> |
6 <script src="resources/audit-util.js"></script> | 6 <script src="../resources/audit-util.js"></script> |
7 <script src="resources/audio-testing.js"></script> | 7 <script src="../resources/audio-testing.js"></script> |
8 <script src="resources/realtimeanalyser-testing.js"></script> | 8 <script src="../resources/realtimeanalyser-testing.js"></script> |
9 <script src="resources/fft.js"></script> | 9 <script src="../resources/fft.js"></script> |
10 <title>Test Analyser getFloatFrequencyData and getByteFrequencyData, Smoothi
ng</title> | 10 <title>Test Analyser getFloatFrequencyData and getByteFrequencyData, Smoothi
ng</title> |
11 | 11 |
12 </head> | 12 </head> |
13 | 13 |
14 <body> | 14 <body> |
15 <script> | 15 <script> |
16 description("Test AnalyserNode getFloatFrequencyData and getByteFrequencyD
ata, Smoothing"); | 16 description("Test AnalyserNode getFloatFrequencyData and getByteFrequencyD
ata, Smoothing"); |
17 window.jsTestIsAsync = true; | 17 window.jsTestIsAsync = true; |
18 | 18 |
19 // Use a power of two to eliminate any round-off in the computation of the
times for | 19 // Use a power of two to eliminate any round-off in the computation of the
times for |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 audit.defineTask("finish", function (done) { | 130 audit.defineTask("finish", function (done) { |
131 finishJSTest(); | 131 finishJSTest(); |
132 done(); | 132 done(); |
133 }); | 133 }); |
134 | 134 |
135 audit.runTasks(); | 135 audit.runTasks(); |
136 | 136 |
137 </script> | 137 </script> |
138 </body> | 138 </body> |
139 </html> | 139 </html> |
OLD | NEW |