| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 | 2 |
| 3 <!-- | 3 <!-- |
| 4 Verifies GainNode attributes and their type. | 4 Verifies GainNode attributes and their type. |
| 5 --> | 5 --> |
| 6 | 6 |
| 7 <html> | 7 <html> |
| 8 <head> | 8 <head> |
| 9 <script src="../fast/js/resources/js-test-pre.js"></script> | 9 <script src="../resources/js-test.js"></script> |
| 10 <script type="text/javascript" src="resources/audio-testing.js"></script> | 10 <script type="text/javascript" src="resources/audio-testing.js"></script> |
| 11 | 11 |
| 12 </head> | 12 </head> |
| 13 <body> | 13 <body> |
| 14 | 14 |
| 15 <script> | 15 <script> |
| 16 description("Tests GainNode attributes in IDL."); | 16 description("Tests GainNode attributes in IDL."); |
| 17 | 17 |
| 18 function runTest() { | 18 function runTest() { |
| 19 if (window.testRunner) { | 19 if (window.testRunner) { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 30 testPassed("gain is of AudioParam type."); | 30 testPassed("gain is of AudioParam type."); |
| 31 else | 31 else |
| 32 testFailed("gain is not of AudioParam type."); | 32 testFailed("gain is not of AudioParam type."); |
| 33 } | 33 } |
| 34 | 34 |
| 35 runTest(); | 35 runTest(); |
| 36 </script> | 36 </script> |
| 37 | 37 |
| 38 </body> | 38 </body> |
| 39 </html> | 39 </html> |
| OLD | NEW |