aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/dom/webidls')
-rw-r--r--components/script/dom/webidls/AudioParam.webidl12
1 files changed, 6 insertions, 6 deletions
diff --git a/components/script/dom/webidls/AudioParam.webidl b/components/script/dom/webidls/AudioParam.webidl
index 47df206b79d..f191a6848f3 100644
--- a/components/script/dom/webidls/AudioParam.webidl
+++ b/components/script/dom/webidls/AudioParam.webidl
@@ -18,15 +18,15 @@ interface AudioParam {
readonly attribute float defaultValue;
readonly attribute float minValue;
readonly attribute float maxValue;
- AudioParam setValueAtTime(float value, double startTime);
- AudioParam linearRampToValueAtTime(float value, double endTime);
- AudioParam exponentialRampToValueAtTime(float value, double endTime);
- AudioParam setTargetAtTime(float target,
+ [Throws] AudioParam setValueAtTime(float value, double startTime);
+ [Throws] AudioParam linearRampToValueAtTime(float value, double endTime);
+ [Throws] AudioParam exponentialRampToValueAtTime(float value, double endTime);
+ [Throws] AudioParam setTargetAtTime(float target,
double startTime,
float timeConstant);
// AudioParam setValueCurveAtTime(sequence<float> values,
// double startTime,
// double duration);
- AudioParam cancelScheduledValues(double cancelTime);
- AudioParam cancelAndHoldAtTime(double cancelTime);
+ [Throws] AudioParam cancelScheduledValues(double cancelTime);
+ [Throws] AudioParam cancelAndHoldAtTime(double cancelTime);
};