| 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/audio-testing.js"></script> | 7 <script src="resources/audio-testing.js"></script> |
| 7 <title>Test AnalyserNode getFloatTimeDomainData</title> | 8 <title>Test AnalyserNode getFloatTimeDomainData</title> |
| 8 </head> | 9 </head> |
| 9 | 10 |
| 10 <body> | 11 <body> |
| 11 <script> | 12 <script> |
| 12 description("Test AnalyserNode getFloatTimeDomainData"); | 13 description("Test AnalyserNode getFloatTimeDomainData"); |
| 13 window.jsTestIsAsync = true; | 14 window.jsTestIsAsync = true; |
| 14 | 15 |
| 15 // Use a power of two to eliminate any round-off in the computation of the
times for | 16 // Use a power of two to eliminate any round-off in the computation of the
times for |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 | 212 |
| 212 return { | 213 return { |
| 213 context: context, | 214 context: context, |
| 214 analyser: analyser, | 215 analyser: analyser, |
| 215 signalBuffer: signalBuffer | 216 signalBuffer: signalBuffer |
| 216 }; | 217 }; |
| 217 } | 218 } |
| 218 </script> | 219 </script> |
| 219 </body> | 220 </body> |
| 220 </html> | 221 </html> |
| OLD | NEW |