| 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="../../resources/js-test.js"></script> | 9 <script src="../../resources/js-test.js"></script> |
| 10 <script src="../resources/compatibility.js"></script> | |
| 11 <script src="../resources/audit-util.js"></script> | 10 <script src="../resources/audit-util.js"></script> |
| 12 <script src="../resources/audio-testing.js"></script> | 11 <script src="../resources/audio-testing.js"></script> |
| 13 | 12 |
| 14 </head> | 13 </head> |
| 15 <body> | 14 <body> |
| 16 | 15 |
| 17 <script> | 16 <script> |
| 18 description("Tests GainNode attributes in IDL."); | 17 description("Tests GainNode attributes in IDL."); |
| 19 | 18 |
| 20 function runTest() { | 19 function runTest() { |
| (...skipping 11 matching lines...) Expand all Loading... |
| 32 testPassed("gain is of AudioParam type."); | 31 testPassed("gain is of AudioParam type."); |
| 33 else | 32 else |
| 34 testFailed("gain is not of AudioParam type."); | 33 testFailed("gain is not of AudioParam type."); |
| 35 } | 34 } |
| 36 | 35 |
| 37 runTest(); | 36 runTest(); |
| 38 </script> | 37 </script> |
| 39 | 38 |
| 40 </body> | 39 </body> |
| 41 </html> | 40 </html> |
| OLD | NEW |