| Verifies GainNode attributes and their type. |
| <script src="../fast/js/resources/js-test-pre.js"></script> |
| <script type="text/javascript" src="resources/audio-testing.js"></script> |
| description("Tests GainNode attributes in IDL."); |
| var context = new webkitAudioContext(); |
| var gainNode = context.createGainNode(); |
| if (gainNode.gain.toString().indexOf("AudioParam") > -1) |
| testPassed("gain is of AudioParam type."); |
| testFailed("gain is not of AudioParam type."); |
| <script src="../fast/js/resources/js-test-post.js"></script> |