diff options
author | Kagami Sascha Rosylight <saschanaz@outlook.com> | 2022-01-05 03:39:33 +0100 |
---|---|---|
committer | Kagami Sascha Rosylight <saschanaz@outlook.com> | 2022-01-05 03:39:33 +0100 |
commit | 52ea5204a23d8cc9d40ac3e9eb4fd9e03c1cd1ca (patch) | |
tree | ff222506f529fb20f148b634161a10244fd2a7ec /components/script/dom/webidls/AudioBuffer.webidl | |
parent | 5df705a41f6c4c1f2ffeec257dfe0129ce5fa8e0 (diff) | |
download | servo-52ea5204a23d8cc9d40ac3e9eb4fd9e03c1cd1ca.tar.gz servo-52ea5204a23d8cc9d40ac3e9eb4fd9e03c1cd1ca.zip |
Convert Web IDL void to undefined
Fixes #27660
Diffstat (limited to 'components/script/dom/webidls/AudioBuffer.webidl')
-rw-r--r-- | components/script/dom/webidls/AudioBuffer.webidl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/webidls/AudioBuffer.webidl b/components/script/dom/webidls/AudioBuffer.webidl index 75b3b470838..56a735ec3f3 100644 --- a/components/script/dom/webidls/AudioBuffer.webidl +++ b/components/script/dom/webidls/AudioBuffer.webidl @@ -20,10 +20,10 @@ interface AudioBuffer { readonly attribute double duration; readonly attribute unsigned long numberOfChannels; [Throws] Float32Array getChannelData(unsigned long channel); - [Throws] void copyFromChannel(Float32Array destination, + [Throws] undefined copyFromChannel(Float32Array destination, unsigned long channelNumber, optional unsigned long startInChannel = 0); - [Throws] void copyToChannel(Float32Array source, + [Throws] undefined copyToChannel(Float32Array source, unsigned long channelNumber, optional unsigned long startInChannel = 0); }; |