Chrome AudioParam bug
by stuartmemo
JavaScript
window.context = new webkitAudioContext(),
osc = context.createOscillator();
// Uncomment to show param changes when connected to context.destination
// osc.connect(context.destination);
osc.start(0);
osc.frequency.setValueAtTime(200, context.currentTime + 0.5);
setTimeout(function () {
console.log(context.currentTime, osc.frequency.value);
}, 1000);