diff options
Diffstat (limited to 'components/script/dom/webidls/AudioParam.webidl')
-rw-r--r-- | components/script/dom/webidls/AudioParam.webidl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/script/dom/webidls/AudioParam.webidl b/components/script/dom/webidls/AudioParam.webidl index f191a6848f3..42f1012539c 100644 --- a/components/script/dom/webidls/AudioParam.webidl +++ b/components/script/dom/webidls/AudioParam.webidl @@ -24,9 +24,9 @@ interface AudioParam { [Throws] AudioParam setTargetAtTime(float target, double startTime, float timeConstant); -// AudioParam setValueCurveAtTime(sequence<float> values, -// double startTime, -// double duration); + [Throws] AudioParam setValueCurveAtTime(sequence<float> values, + double startTime, + double duration); [Throws] AudioParam cancelScheduledValues(double cancelTime); [Throws] AudioParam cancelAndHoldAtTime(double cancelTime); }; |