Index: Source/modules/webaudio/AudioBufferSourceNode.idl |
diff --git a/Source/modules/webaudio/AudioBufferSourceNode.idl b/Source/modules/webaudio/AudioBufferSourceNode.idl |
index ab58774ead668fca7c5da8739217e573e73c3996..6edb157a18898c8e1a31d2933c6ab4d802bd6760 100644 |
--- a/Source/modules/webaudio/AudioBufferSourceNode.idl |
+++ b/Source/modules/webaudio/AudioBufferSourceNode.idl |
@@ -38,16 +38,13 @@ |
readonly attribute AudioParam gain; |
readonly attribute AudioParam playbackRate; |
- attribute boolean loop; // This is the proper attribute name from the specification. |
- |
+ attribute boolean loop; |
attribute double loopStart; |
attribute double loopEnd; |
[RaisesException, MeasureAs=WebAudioStart] void start(optional double when, optional double grainOffset, optional double grainDuration); |
[RaisesException] void stop(optional double when); |
- [DeprecateAs=WebAudioLooping, ImplementedAs=loop] attribute boolean looping; // This is an alias for the .loop attribute for backwards compatibility. |
- |
[RaisesException, ImplementedAs=start, MeasureAs=LegacyWebAudio] void noteOn(double when); |
[RaisesException, MeasureAs=LegacyWebAudio] void noteGrainOn(double when, double grainOffset, double grainDuration); |
[RaisesException, ImplementedAs=stop] void noteOff(double when); |