| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>Test Constructor: DynamicsCompressor</title> | 4 <title>Test Constructor: DynamicsCompressor</title> |
| 5 <script src="../../resources/testharness.js"></script> | 5 <script src="../../resources/testharness.js"></script> |
| 6 <script src="../../resources/testharnessreport.js"></script> | 6 <script src="../../resources/testharnessreport.js"></script> |
| 7 <script src="../resources/audit-util.js"></script> | 7 <script src="../resources/audit-util.js"></script> |
| 8 <script src="../resources/audit.js"></script> | 8 <script src="../resources/audit.js"></script> |
| 9 <script src="new-audionodeoptions.js"></script> | 9 <script src="audionodeoptions.js"></script> |
| 10 </head> | 10 </head> |
| 11 | 11 |
| 12 <body> | 12 <body> |
| 13 <script> | 13 <script> |
| 14 var context; | 14 var context; |
| 15 | 15 |
| 16 var audit = Audit.createTaskRunner(); | 16 var audit = Audit.createTaskRunner(); |
| 17 | 17 |
| 18 audit.define('initialize', (task, should) => { | 18 audit.define('initialize', (task, should) => { |
| 19 context = initializeContext(should); | 19 context = initializeContext(should); |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 should(node.channelInterpretation, 'node1.channelInterpretation') | 84 should(node.channelInterpretation, 'node1.channelInterpretation') |
| 85 .beEqualTo('speakers'); | 85 .beEqualTo('speakers'); |
| 86 | 86 |
| 87 task.done(); | 87 task.done(); |
| 88 }); | 88 }); |
| 89 | 89 |
| 90 audit.run(); | 90 audit.run(); |
| 91 </script> | 91 </script> |
| 92 </body> | 92 </body> |
| 93 </html> | 93 </html> |
| OLD | NEW |