| 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/audit-util.js"></script> | 6 <script src="../resources/audit-util.js"></script> |
| 7 <script src="../resources/audit.js"></script> | 7 <script src="../resources/audit.js"></script> |
| 8 <title>Test AudioParam Nominal Range Values</title> | 8 <title>Test AudioParam Nominal Range Values</title> |
| 9 </head> | 9 </head> |
| 10 | 10 |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 } | 182 } |
| 183 } | 183 } |
| 184 }, | 184 }, |
| 185 // These nodes don't have AudioParams, but we want to test them anyway. A
ny arguments for the | 185 // These nodes don't have AudioParams, but we want to test them anyway. A
ny arguments for the |
| 186 // constructor are pretty much arbitrary; they just need to be valid. | 186 // constructor are pretty much arbitrary; they just need to be valid. |
| 187 { | 187 { |
| 188 creator: "createBuffer", | 188 creator: "createBuffer", |
| 189 args: [1, 1, sampleRate], | 189 args: [1, 1, sampleRate], |
| 190 }, { | 190 }, { |
| 191 creator: "createIIRFilter", | 191 creator: "createIIRFilter", |
| 192 args: [[1,2],[3,4]] | 192 args: [[1,2],[1, .9]] |
| 193 }, { | 193 }, { |
| 194 creator: "createWaveShaper", | 194 creator: "createWaveShaper", |
| 195 args: [], | 195 args: [], |
| 196 }, { | 196 }, { |
| 197 creator: "createConvolver", | 197 creator: "createConvolver", |
| 198 args: [], | 198 args: [], |
| 199 }, { | 199 }, { |
| 200 creator: "createAnalyser", | 200 creator: "createAnalyser", |
| 201 args: [], | 201 args: [], |
| 202 }, { | 202 }, { |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 469 return success; | 469 return success; |
| 470 } else { | 470 } else { |
| 471 should(!limits, nodeName) | 471 should(!limits, nodeName) |
| 472 .message("has no AudioParams as expected", | 472 .message("has no AudioParams as expected", |
| 473 "has no AudioParams but test expected " + limits); | 473 "has no AudioParams but test expected " + limits); |
| 474 } | 474 } |
| 475 } | 475 } |
| 476 </script> | 476 </script> |
| 477 </body> | 477 </body> |
| 478 </html> | 478 </html> |
| OLD | NEW |