| 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 <script src="resources/panner-formulas.js"></script> | 8 <script src="resources/panner-formulas.js"></script> |
| 8 <title>Test Automation of PannerNode Positions</title> | 9 <title>Test Automation of PannerNode Positions</title> |
| 9 </head> | 10 </head> |
| 10 | 11 |
| 11 <body> | 12 <body> |
| 12 <script> | 13 <script> |
| 13 description("Test Automation of PannerNode Positions."); | 14 description("Test Automation of PannerNode Positions."); |
| 14 window.jsTestIsAsync = true; | 15 window.jsTestIsAsync = true; |
| 15 | 16 |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 .beCloseToArray(expected0, errorThreshold); | 258 .beCloseToArray(expected0, errorThreshold); |
| 258 Should(prefix + "distanceModel: " + info + ", right channel", data1,
{ | 259 Should(prefix + "distanceModel: " + info + ", right channel", data1,
{ |
| 259 precision: 5 | 260 precision: 5 |
| 260 }) | 261 }) |
| 261 .beCloseToArray(expected1, errorThreshold); | 262 .beCloseToArray(expected1, errorThreshold); |
| 262 }); | 263 }); |
| 263 } | 264 } |
| 264 </script> | 265 </script> |
| 265 </body> | 266 </body> |
| 266 </html> | 267 </html> |
| OLD | NEW |