Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 1 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /webaudio/the-audio-api/the-audioparam-interface/audioparam-default-value.window.html - WPT Dashboard Interop Dashboard
'use strict';
test(() => {
const context = new OfflineAudioContext(1, 1, 44100);
const defaultValue = -1;
const gainNode = new GainNode(context, { gain: defaultValue });
assert_equals(gainNode.gain.defaultValue, defaultValue, "AudioParam's defaultValue is not correct.");
}, "AudioParam's defaultValue");