diff options
Diffstat (limited to 'components/script/dom/webidls/AudioBufferSourceNode.webidl')
-rw-r--r-- | components/script/dom/webidls/AudioBufferSourceNode.webidl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components/script/dom/webidls/AudioBufferSourceNode.webidl b/components/script/dom/webidls/AudioBufferSourceNode.webidl index 45358fbaad8..a91a6afc393 100644 --- a/components/script/dom/webidls/AudioBufferSourceNode.webidl +++ b/components/script/dom/webidls/AudioBufferSourceNode.webidl @@ -18,13 +18,13 @@ dictionary AudioBufferSourceOptions { [Exposed=Window, Constructor (BaseAudioContext context, optional AudioBufferSourceOptions options)] interface AudioBufferSourceNode : AudioScheduledSourceNode { - // attribute AudioBuffer? buffer; + [Throws] attribute AudioBuffer? buffer; readonly attribute AudioParam playbackRate; readonly attribute AudioParam detune; attribute boolean loop; attribute double loopStart; attribute double loopEnd; - void start(optional double when = 0, - optional double offset, - optional double duration); + [Throws] void start(optional double when = 0, + optional double offset, + optional double duration); }; |