| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>Test Constructor: Panner</title> | 4 <title>Test Constructor: Panner</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/audio-testing.js"></script> | 8 <script src="../resources/audio-testing.js"></script> |
| 8 </head> | 9 </head> |
| 9 | 10 |
| 10 <body> | 11 <body> |
| 11 <script> | 12 <script> |
| 12 var context; | 13 var context; |
| 13 | 14 |
| 14 var audit = Audit.createTaskRunner(); | 15 var audit = Audit.createTaskRunner(); |
| 15 | 16 |
| 16 audit.defineTask("initialize", function (taskDone) { | 17 audit.defineTask("initialize", function (taskDone) { |
| (...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 "constructed with correct attributes", | 318 "constructed with correct attributes", |
| 318 "was not constructed correctly"); | 319 "was not constructed correctly"); |
| 319 | 320 |
| 320 taskDone(); | 321 taskDone(); |
| 321 }); | 322 }); |
| 322 | 323 |
| 323 audit.runTasks(); | 324 audit.runTasks(); |
| 324 </script> | 325 </script> |
| 325 </body> | 326 </body> |
| 326 </html> | 327 </html> |
| OLD | NEW |