| 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 |
| 11 <body> | 11 <body> |
| 12 <script> | 12 <script> |
| 13 | 13 // Whitespace |
| 14 // Some arbitrary sample rate for the offline context. | 14 // Some arbitrary sample rate for the offline context. |
| 15 var sampleRate = 48000; | 15 var sampleRate = 48000; |
| 16 | 16 |
| 17 // The actual offline context | 17 // The actual offline context |
| 18 var context; | 18 var context; |
| 19 | 19 |
| 20 // The set of all methods that we've tested for verifying that we tested a
ll of the necessary | 20 // The set of all methods that we've tested for verifying that we tested a
ll of the necessary |
| 21 // objects. | 21 // objects. |
| 22 var testedMethods = new Set(); | 22 var testedMethods = new Set(); |
| 23 | 23 |
| (...skipping 445 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 |