OS: All
What steps will reproduce the problem?
(1) In Chrome canary, run
c = new AudioContext()
o = c.createOscillator()
o.frequency.minValue
What is the expected output?
o.frequency.minValue = -o.frequency.maxValue
What do you see instead?
o.frequency.minValue = 0
This is a very recent change in the webaudio spec. The min frequency value for an oscillator has changed from 0 to - Nyquist.
See issue https://github.com/WebAudio/web-audio-api/issues/813
See fix https://github.com/WebAudio/web-audio-api/pull/838
Comment 1 by rtoy@chromium.org
, Jun 10 2016Status: Started (was: Available)