diff --git a/tr/algorithms/pointerevents3.json b/tr/algorithms/pointerevents3.json index e16896066ba8..53588bfd1f2d 100644 --- a/tr/algorithms/pointerevents3.json +++ b/tr/algorithms/pointerevents3.json @@ -38,26 +38,26 @@ ] }, { - "html": "Pointer capture is set on an element of type Element by calling the element.setPointerCapture(pointerId) method.\n When this method is invoked, the user agent MUST run the following steps:", + "html": "Pointer capture is set on an element of type Element by calling the element.setPointerCapture(pointerId) method.\n When this method is invoked, the user agent MUST run the following steps:", "rationale": "if", "steps": [ { - "html": "If the pointerId provided as the method's argument does not match any of the active pointers, then throw a \"NotFoundError\" DOMException." + "html": "If the pointerId provided as the method's argument does not match any of the active pointers, then throw a \"NotFoundError\" DOMException." }, { "html": "Let the pointer be the active pointer specified by the given pointerId." }, { - "html": "If the element is not connected [DOM], throw an \"InvalidStateError\" DOMException." + "html": "If the element is not connected [DOM], throw an \"InvalidStateError\" DOMException." }, { - "html": "If this method is invoked while the element's node document [DOM] has a locked element ([PointerLock] pointerLockElement),\n throw an \"InvalidStateError\" DOMException." + "html": "If this method is invoked while the element's node document [DOM] has a locked element ([PointerLock] pointerLockElement),\n throw an \"InvalidStateError\" DOMException." }, { - "html": "If the pointer is not in the active buttons state or\n the element's node document is not the active document of the pointer, then terminate these steps." + "html": "If the pointer is not in the active buttons state or\n the element's node document is not the active document of the pointer, then terminate these steps." }, { - "html": "For the specified pointerId, set the pending pointer capture target override to the Element on which this method was invoked." + "html": "For the specified pointerId, set the pending pointer capture target override to the Element on which this method was invoked." } ] }, @@ -66,10 +66,10 @@ "rationale": "if", "steps": [ { - "html": "If the pointerId provided as the method's argument does not match any of the active pointers and these steps are not being invoked as a result of the implicit release of pointer capture, then throw a \"NotFoundError\" DOMException." + "html": "If the pointerId provided as the method's argument does not match any of the active pointers and these steps are not being invoked as a result of the implicit release of pointer capture, then throw a \"NotFoundError\" DOMException." }, { - "html": "If hasPointerCapture is false for the Element with the specified pointerId, then terminate these steps." + "html": "If hasPointerCapture is false for the Element with the specified pointerId, then terminate these steps." }, { "html": "For the specified pointerId, clear the pending pointer capture target override, if set." @@ -81,10 +81,10 @@ "rationale": "set", "steps": [ { - "html": "Set the event's pointerId, pointerType,\n isPrimary and isTrusted to match the respective properties of the \"parent\" pointer event." + "html": "Set the event's pointerId, pointerType,\n isPrimary and isTrusted to match the respective properties of the \"parent\" pointer event." }, { - "html": "Set the event's cancelable and bubbles to false (as these events will never\n be dispatched in isolation)." + "html": "Set the event's cancelable and bubbles to false (as these events will never\n be dispatched in isolation)." }, { "html": "Set the event's coalesced events list and predicted events list to an empty list." @@ -95,11 +95,11 @@ ] }, { - "html": "When a trusted PointerEvent's target is changed, user agents SHOULD, for each event in the\n coalesced events list and predicted events list:", + "html": "When a trusted PointerEvent's target is changed, user agents SHOULD, for each event in the\n coalesced events list and predicted events list:", "rationale": "set", "steps": [ { - "html": "Set the event's target to match the target of the \"parent\" pointer event." + "html": "Set the event's target to match the target of the \"parent\" pointer event." } ] }, diff --git a/tr/algorithms/vibration.json b/tr/algorithms/vibration.json index 778f0dc87349..01f6b6c67f6d 100644 --- a/tr/algorithms/vibration.json +++ b/tr/algorithms/vibration.json @@ -1,37 +1,37 @@ { "spec": { - "title": "Vibration API (Second Edition)", + "title": "Vibration API", "url": "https://www.w3.org/TR/vibration/" }, "algorithms": [ { "name": "processing vibration patterns", "href": "https://www.w3.org/TR/vibration/#dfn-processing-vibration-patterns", - "html": "The rules for processing vibration patterns are as given in the following algorithm:", + "html": "The rules for processing vibration patterns are as given in\n the following algorithm:", "rationale": "let", "steps": [ { - "html": "Let pattern be the first method argument of the\n vibrate() method." + "html": "Let pattern be the first method argument of the\n vibrate() method." }, { - "html": "Let valid pattern be the result of passing\n pattern to validate and normalize." + "html": "Let valid pattern be the result of passing\n pattern to validate and normalize." }, { - "html": "If the result of running the steps to \n determine the visibility state [PAGE-VISIBILITY-2] is not visible, then return false and terminate these steps." + "html": "If the document's visibility state is not \n visible, then return false and terminate these steps." }, { - "html": "Perform vibration with valid pattern." + "html": "Perform vibration with this's relevant global object\n and valid pattern." } ] }, { "name": "validate and normalize", "href": "https://www.w3.org/TR/vibration/#dfn-validate-and-normalize", - "html": "To validate and normalize a vibration pattern given\n pattern, run these steps:", + "html": "To validate and normalize a vibration pattern given\n pattern, run these steps:", "rationale": "if", "steps": [ { - "html": "If pattern is a list, proceed to the next step. Otherwise run the following substeps:", + "html": "If pattern is a list, proceed to the next step.\n Otherwise run the following substeps:", "rationale": "let", "steps": [ { @@ -43,13 +43,13 @@ ] }, { - "html": "Let max length be an implementation-dependent maximum length of pattern." + "html": "Let max length have the value 10." }, { "html": "If the length of pattern is greater than max\n length, truncate pattern, leaving only the first \n max length entries." }, { - "html": "Let max duration be an implementation-dependent maximum duration for a single vibration entry in a pattern." + "html": "Let max duration have the value 10000." }, { "html": "For each entry in pattern whose value is greater than\n max duration, set the entry's value to max\n duration." @@ -62,21 +62,24 @@ { "name": "perform vibration", "href": "https://www.w3.org/TR/vibration/#dfn-perform-vibration", - "html": "To perform vibration using pattern, run these steps:", - "rationale": "terminate these steps", + "html": "To perform vibration using a global object\n global and a vibration pattern pattern,\n run these steps:", + "rationale": "if", "steps": [ { - "html": "An implementation MAY return false and terminate these steps." + "html": "If global does not have sticky activation,\n return false and terminate these steps." + }, + { + "html": "An implementation MAY return false and terminate these steps." }, { - "html": "If another instance of the perform vibration algorithm is already running, run the following substeps:", + "html": "If another instance of the perform vibration algorithm is\n already running, run the following substeps:", "rationale": "abort", "steps": [ { - "html": "Abort that other instance of the perform vibration algorithm, if any." + "html": "Abort that other instance of the perform vibration\n algorithm, if any." }, { - "html": "If pattern is an empty list, contains a single entry with a value of 0, or if the device is unable to vibrate, then return true and terminate these steps." + "html": "If pattern is an empty list, contains a single entry\n with a value of 0, or if the device is unable to vibrate, then\n return true and terminate these steps." } ] }, @@ -84,11 +87,11 @@ "html": "Return true, and then continue running these steps asynchronously." }, { - "html": "For each time in pattern, run the following substeps:", + "html": "For each time in pattern, run the following\n substeps:", "rationale": "if", "steps": [ { - "html": "If the index of time is even (the first entry has index 0), vibrate the device for time milliseconds." + "html": "If the index of time is even (the first entry has\n index 0), vibrate the device for time milliseconds." }, { "html": "Otherwise wait for time milliseconds." diff --git a/tr/algorithms/webaudio-1.0.json b/tr/algorithms/webaudio-1.0.json index 0d8af867f32c..d8e5d7b8ab4b 100644 --- a/tr/algorithms/webaudio-1.0.json +++ b/tr/algorithms/webaudio-1.0.json @@ -1,28 +1,28 @@ { "spec": { - "title": "Web Audio API 1.1", - "url": "https://www.w3.org/TR/webaudio/" + "title": "Web Audio API", + "url": "https://www.w3.org/TR/webaudio-1.0/" }, "algorithms": [ { "name": "BaseAudioContext.createPeriodicWave()", - "html": "When calling this method,\n execute these steps:", + "html": "When calling this method,\n\texecute these steps:", "rationale": ".algorithm", "steps": [ { - "html": "

If real and imag are not of the same\nlength, an IndexSizeError MUST be thrown.

" + "html": "

If real and imag are not of the same\nlength, an IndexSizeError MUST be thrown.

" }, { - "html": "

Let o be a new object of type PeriodicWaveOptions.

" + "html": "

Let o be a new object of type PeriodicWaveOptions.

" }, { - "html": "

Respectively set the real and imag parameters passed to this factory method to\nthe attributes of the same name on o.

" + "html": "

Respectively set the real and imag parameters passed to this factory method to\nthe attributes of the same name on o.

" }, { - "html": "

Set the disableNormalization attribute on o to the value of the disableNormalization attribute of the constraints attribute passed to the factory\nmethod.

" + "html": "

Set the disableNormalization attribute on o to the value of the disableNormalization attribute of the constraints attribute passed to the factory\nmethod.

" }, { - "html": "

Construct a new PeriodicWave p, passing the BaseAudioContext this factory\nmethod has been called on as a first argument, and o.

" + "html": "

Construct a new PeriodicWave p, passing the BaseAudioContext this factory\nmethod has been called on as a first argument, and o.

" }, { "html": "

Return p.

" @@ -31,24 +31,24 @@ }, { "name": "decodeAudioData()", - "html": "When decodeAudioData is\n called, the following steps MUST be performed on the control\n thread:", + "html": "When decodeAudioData is\n\tcalled, the following steps MUST be performed on the control\n\tthread:", "rationale": ".algorithm", "steps": [ { - "html": "

If this's relevant global object's associated Document is not fully active then return a promise rejected with \"InvalidStateError\" DOMException.

" + "html": "

If this's relevant global object's associated Document is not fully active then return a promise rejected with \"InvalidStateError\" DOMException.

" }, { "html": "

Let promise be a new Promise.

" }, { - "html": "If audioData is detached, execute the following steps:", + "html": "If the operation IsDetachedBuffer (described in [ECMASCRIPT]) on audioData is false, execute the following steps:", "rationale": "append", "steps": [ { - "html": "

Append promise to [[pending promises]].

" + "html": "

Append promise to [[pending promises]].

" }, { - "html": "

Detach the audioData ArrayBuffer.\nIf this operations throws, jump to the step 3.

" + "html": "

Detach the audioData ArrayBuffer.\nThis operation is described in [ECMASCRIPT]. If this operations\nthrows, jump to the step 3.

" }, { "html": "

Queue a decoding operation to be performed on another thread.

" @@ -60,13 +60,13 @@ "rationale": "let", "steps": [ { - "html": "

Let error be a DataCloneError.

" + "html": "

Let error be a DataCloneError.

" }, { - "html": "

Reject promise with error, and remove it from [[pending promises]].

" + "html": "

Reject promise with error, and remove it from [[pending promises]].

" }, { - "html": "

Queue a media element task to invoke errorCallback with error.

" + "html": "

Queue a media element task to invoke errorCallback with error.

" } ] }, @@ -77,34 +77,34 @@ }, { "name": "queue a decode operation", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decoding-thread", - "html": "When queuing a decoding operation to be performed on another\n thread, the following steps MUST happen on a thread that is not\n the control thread nor the rendering thread,\n called the decoding thread.", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-decoding-thread", + "html": "When queuing a decoding operation to be performed on another\n\tthread, the following steps MUST happen on a thread that is not\n\tthe control thread nor the rendering thread,\n\tcalled the decoding thread.", "rationale": ".algorithm", "steps": [ { "html": "

Let can decode be a boolean flag, initially set to true.

" }, { - "html": "

Attempt to determine the MIME type of audioData, using MIME Sniffing § 6.2 Matching an audio or video type pattern. If the audio or\nvideo type pattern matching algorithm returns undefined,\nset can decode to false.

" + "html": "

Attempt to determine the MIME type of audioData, using MIME Sniffing §6.2 Matching an audio or video type pattern. If the audio or\nvideo type pattern matching algorithm returns undefined,\nset can decode to false.

" }, { - "html": "

If can decode is true, attempt to decode the encoded audioData into linear PCM. In case of\nfailure, set can decode to false.

\n

If the media byte-stream contains multiple audio tracks, only decode the\nfirst track to linear pcm.

" + "html": "

If can decode is true, attempt to decode the encoded audioData into linear PCM. In case of\nfailure, set can decode to false.

" }, { - "html": "If can decode is false, queue a media element task to execute the following steps:", + "html": "If can decode is false, queue a media element task to execute the following steps:", "rationale": "let", "steps": [ { - "html": "Let error be a DOMException whose name is EncodingError.", + "html": "Let error be a DOMException whose name is EncodingError.", "rationale": "reject", "steps": [ { - "html": "

Reject promise with error, and remove it from [[pending promises]].

" + "html": "

Reject promise with error, and remove it from [[pending promises]].

" } ] }, { - "html": "

If errorCallback is\nnot missing, invoke errorCallback with error.

" + "html": "

If errorCallback is\nnot missing, invoke errorCallback with error.

" } ] }, @@ -113,20 +113,20 @@ "rationale": "take", "steps": [ { - "html": "

Take the result, representing the decoded linear PCM audio data, and resample it to the sample-rate of the BaseAudioContext if it is different from\nthe sample-rate of audioData.

" + "html": "

Take the result, representing the decoded linear PCM audio data, and resample it to the sample-rate of the BaseAudioContext if it is different from\nthe sample-rate of audioData.

" }, { - "html": " queue a media element task to execute the following steps:", + "html": " queue a media element task to execute the following steps:", "rationale": "let", "steps": [ { - "html": "

Let buffer be an AudioBuffer containing the final result\n(after possibly performing sample-rate conversion).

" + "html": "

Let buffer be an AudioBuffer containing the final result\n(after possibly performing sample-rate conversion).

" }, { "html": "

Resolve promise with buffer.

" }, { - "html": "

If successCallback is not missing, invoke successCallback with buffer.

" + "html": "

If successCallback is not missing, invoke successCallback with buffer.

" } ] } @@ -136,165 +136,83 @@ }, { "name": "AudioContext()", - "html": "If the current settings object's relevant global object's associated Document is NOT fully active, throw an\n \"InvalidStateError\" and abort these steps.", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-pending-resume-promises-slot", + "html": "If the current\n\t\tsettings object’s responsible\n\t\tdocument is NOT fully active, throw an InvalidStateError and\n\tabort these steps.", "rationale": ".algorithm", "steps": [ { - "html": "

Let context be a new AudioContext object.

" + "html": "

Set a [[control thread state]] to suspended on the AudioContext.

" }, { - "html": "

Set a [[control thread state]] to suspended on context.

" + "html": "

Set a [[rendering thread state]] to suspended on the AudioContext.

" }, { - "html": "

Set a [[rendering thread state]] to suspended on context.

" + "html": "

Let [[pending resume promises]] be a\nslot on this AudioContext, that is an initially empty ordered list of\npromises.

" }, { - "html": "

Let messageChannel be a new MessageChannel.

" - }, - { - "html": "

Let controlSidePort be the value of messageChannel’s port1 attribute.

" - }, - { - "html": "

Let renderingSidePort be the value of messageChannel’s port2 attribute.

" - }, - { - "html": "

Let serializedRenderingSidePort be the result of StructuredSerializeWithTransfer(renderingSidePort,\n« renderingSidePort »).

" - }, - { - "html": "

Set this audioWorklet's port to controlSidePort.

" - }, - { - "html": "

Queue a control message to set the\nMessagePort on the AudioContextGlobalScope, with serializedRenderingSidePort.

" - }, - { - "html": "If contextOptions is given, perform the following\nsubsteps:", - "rationale": "if", + "html": "If contextOptions is given, apply the options:", + "rationale": "set", "steps": [ { - "html": "If sinkId is specified, let sinkId be\nthe value of contextOptions.sinkId and\nrun the following substeps:", - "rationale": "if", - "steps": [ - { - "html": "

If both sinkId and [[sink ID]] are a type of DOMString, and they are equal to each other, abort these\nsubsteps.

" - }, - { - "html": "

If sinkId is a type of AudioSinkOptions and [[sink ID]] is a type of AudioSinkInfo, and type in sinkId and type in [[sink ID]] are equal, abort these substeps.

" - }, - { - "html": "

Let validationResult be the return value of sink identifier validation of sinkId.

" - }, - { - "html": "

If validationResult is a type of DOMException, throw an\nexception with validationResult and abort these substeps.

" - }, - { - "html": "

If sinkId is a type of DOMString, set [[sink ID]] to sinkId and abort these\nsubsteps.

" - }, - { - "html": "

If sinkId is a type of AudioSinkOptions, set [[sink ID]] to a new instance of AudioSinkInfo created with the value of type of sinkId.

" - } - ] - }, - { - "html": "

Set the internal latency of context according to contextOptions.latencyHint,\nas described in latencyHint.

" + "html": "

Set the internal latency of this AudioContext according to contextOptions.latencyHint, as described\nin latencyHint.

" }, { - "html": "If contextOptions.sampleRate is specified, set the sampleRate of context to this value. Otherwise, follow these substeps:", - "rationale": "if", - "steps": [ - { - "html": "

If sinkId is the empty string or a type of AudioSinkOptions, use the sample rate of the default output\ndevice. Abort these substeps.

" - }, - { - "html": "

If sinkId is a DOMString, use the sample rate of the\noutput device identified by sinkId. Abort these substeps.

" - } - ] + "html": "

If contextOptions.sampleRate is specified,\nset the sampleRate of this AudioContext to this value. Otherwise, use\nthe sample rate of the default output device. If the\nselected sample rate differs from the sample rate of the\noutput device, this AudioContext MUST resample the\naudio output to match the sample rate of the output device.

" } ] }, { - "html": "

If context is allowed to start, send a control message to start processing.

" + "html": "

If the context is allowed to start, send a control message to start processing.

" }, { - "html": "

Return context.

" + "html": "

Return this AudioContext object.

" } ] }, { "name": "sending a control message to start processing", - "html": "Sending a control message to start processing means\nexecuting the following steps:", + "html": "Sending a control message to start processing means\n\texecuting the following steps:", "rationale": ".algorithm", "steps": [ { - "html": "

Let document be the current settings object's relevant global object's associated Document.

" - }, - { - "html": "Attempt to acquire system resources to use a following audio output device\nbased on [[sink ID]] for rendering:", - "rationale": "if", - "steps": [ - { - "html": "If resource acquisition fails, execute the following steps:", - "rationale": "if", - "steps": [ - { - "html": "

If document is not allowed to use the feature identified by \"speaker-selection\", abort these substeps.

" - }, - { - "html": "

Queue a media element task to fire an event named error at the AudioContext, and abort the following\nsteps.

" - } - ] - } - ] + "html": "

Attempt to acquire system resources.\nIn case of failure, abort the following steps.

" }, { - "html": "

Set this [[rendering thread state]] to running on the AudioContext.

" + "html": "

Set the [[rendering thread state]] to running on the AudioContext.

" }, { - "html": "Queue a media element task to execute the following steps:", + "html": " queue a media element task to execute the following steps:", "rationale": "set", "steps": [ { - "html": "

Set the state attribute of the AudioContext to \"running\".

" + "html": "

Set the state attribute of the AudioContext to \"running\".

" }, { - "html": "

fire an event named statechange at the AudioContext.

" + "html": "

queue a media element task to fire an event named statechange at the AudioContext.

" } ] } ] }, - { - "name": "setting the messageport on the scope", - "href": "https://www.w3.org/TR/webaudio/#setting-the-messageport-on-the-scope", - "html": "Sending a control message to set the MessagePort on the AudioWorkletGlobalScope means executing the following steps, on\nthe rendering thread, with serializedRenderingSidePort, that has been transfered to\nthe AudioWorkletGlobalScope:", - "rationale": ".algorithm", - "steps": [ - { - "html": "

Let deserializedPort be the result of StructuredDeserialize(serializedRenderingSidePort,\nthe current Realm).

" - }, - { - "html": "

Set port to deserializedPort.

" - } - ] - }, { "name": "AudioContext.close()", "html": "When close is called, execute these steps:", "rationale": ".algorithm", "steps": [ { - "html": "

If this's relevant global object's associated Document is not fully active then return a promise rejected with \"InvalidStateError\" DOMException.

" + "html": "

If this's relevant global object's associated Document is not fully active then return a promise rejected with \"InvalidStateError\" DOMException.

" }, { "html": "

Let promise be a new Promise.

" }, { - "html": "

If the [[control thread state]] flag on the AudioContext is closed reject the promise\nwith InvalidStateError, abort these steps,\nreturning promise.

" + "html": "

If the [[control thread state]] flag on the AudioContext is closed reject the promise\nwith InvalidStateError, abort these steps,\nreturning promise.

" }, { - "html": "

Set the [[control thread state]] flag on the AudioContext to closed.

" + "html": "

Set the [[control thread state]] flag on the AudioContext to closed.

" }, { - "html": "

Queue a control message to close the AudioContext.

" + "html": "

Queue a control message to close the AudioContext.

" }, { "html": "

Return promise.

" @@ -303,34 +221,34 @@ }, { "name": "run a control message to close an AudioContext", - "html": "Running a control message to close an AudioContext means running these steps on the rendering thread:", + "html": "Running a control message to close an AudioContext means running these steps on the rendering thread:", "rationale": ".algorithm", "steps": [ { - "html": "

Attempt to release system resources.

" + "html": "

Attempt to release system resources.

" }, { - "html": "

Set the [[rendering thread state]] to suspended.

" + "html": "

Set the [[rendering thread state]] to suspended.

" }, { - "html": "

If this control message is being run in a reaction to the\ndocument being unloaded, abort this algorithm.

" + "html": "

If this control message is being run in a reaction to the\ndocument being unloaded, abort this algorithm.

" }, { - "html": " queue a media element task to execute the following steps:", + "html": " queue a media element task to execute the following steps:", "rationale": "resolve", "steps": [ { "html": "

Resolve promise.

" }, { - "html": "If the state attribute of the AudioContext is not already \"closed\":", + "html": "If the state attribute of the AudioContext is not already \"closed\":", "rationale": "set", "steps": [ { - "html": "

Set the state attribute of the AudioContext to \"closed\".

" + "html": "

Set the state attribute of the AudioContext to \"closed\".

" }, { - "html": "

queue a media element task to fire\nan event named statechange at the AudioContext.

" + "html": "

queue a media element task to fire\nan event named statechange at the AudioContext.

" } ] } @@ -340,29 +258,29 @@ }, { "name": "AudioContext::resume()", - "html": "When resume is called,\n execute these steps:", + "html": "When resume is called,\n\texecute these steps:", "rationale": ".algorithm", "steps": [ { - "html": "

If this's relevant global object's associated Document is not fully active then return a promise rejected with \"InvalidStateError\" DOMException.

" + "html": "

If this's relevant global object's associated Document is not fully active then return a promise rejected with \"InvalidStateError\" DOMException.

" }, { "html": "

Let promise be a new Promise.

" }, { - "html": "

If the [[control thread state]] on the AudioContext is closed reject the\npromise with InvalidStateError, abort these steps,\nreturning promise.

" + "html": "

If the [[control thread state]] on the AudioContext is closed reject the\npromise with InvalidStateError, abort these steps,\nreturning promise.

" }, { - "html": "

Set [[suspended by user]] to false.

" + "html": "

Set [[suspended by user]] to false.

" }, { - "html": "

If the context is not allowed to start, append promise to [[pending promises]] and [[pending resume promises]] and abort these steps, returning promise.

" + "html": "

If the context is not allowed to start, append promise to [[pending promises]] and [[pending resume promises]] and abort these steps, returning promise.

" }, { - "html": "

Set the [[control thread state]] on the AudioContext to running.

" + "html": "

Set the [[control thread state]] on the AudioContext to running.

" }, { - "html": "

Queue a control message to resume the AudioContext.

" + "html": "

Queue a control message to resume the AudioContext.

" }, { "html": "

Return promise.

" @@ -371,53 +289,53 @@ }, { "name": "run a control message in AudioContext", - "href": "https://www.w3.org/TR/webaudio/#context-resume", - "html": "Running a control message to resume an AudioContext means running these steps on the rendering thread:", + "href": "https://www.w3.org/TR/webaudio-1.0/#context-resume", + "html": "Running a control message to resume an AudioContext means running these steps on the rendering thread:", "rationale": ".algorithm", "steps": [ { - "html": "

Attempt to acquire system resources.

" + "html": "

Attempt to acquire system resources.

" }, { - "html": "

Set the [[rendering thread state]] on the AudioContext to running.

" + "html": "

Set the [[rendering thread state]] on the AudioContext to running.

" }, { - "html": "

Start rendering the audio graph.

" + "html": "

Start rendering the audio graph.

" }, { - "html": "In case of failure, queue a media element task to execute the following steps:", + "html": "In case of failure, queue a media element task to execute the following steps:", "rationale": "reject", "steps": [ { - "html": "

Reject all promises from [[pending resume promises]] in order, then clear [[pending resume promises]].

" + "html": "

Reject all promises from [[pending resume promises]] in order, then clear [[pending resume promises]].

" }, { - "html": "

Additionally, remove those promises from [[pending\npromises]].

" + "html": "

Additionally, remove those promises from [[pending\npromises]].

" } ] }, { - "html": " queue a media element task to execute the following steps:", + "html": " queue a media element task to execute the following steps:", "rationale": "resolve", "steps": [ { - "html": "

Resolve all promises from [[pending resume promises]] in order.

" + "html": "

Resolve all promises from [[pending resume promises]] in order.

" }, { - "html": "

Clear [[pending resume promises]]. Additionally, remove those\npromises from [[pending promises]].

" + "html": "

Clear [[pending resume promises]]. Additionally, remove those\npromises from [[pending promises]].

" }, { "html": "

Resolve promise.

" }, { - "html": "If the state attribute of the AudioContext is not already \"running\":", + "html": "If the state attribute of the AudioContext is not already \"running\":", "rationale": "set", "steps": [ { - "html": "

Set the state attribute of the AudioContext to \"running\".

" + "html": "

Set the state attribute of the AudioContext to \"running\".

" }, { - "html": "

Queue a media element task to fire an event named statechange at the AudioContext.

" + "html": "

queue a media element task to fire\nan event named statechange at the AudioContext.

" } ] } @@ -431,25 +349,25 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this's relevant global object's associated Document is not fully active then return a promise rejected with \"InvalidStateError\" DOMException.

" + "html": "

If this's relevant global object's associated Document is not fully active then return a promise rejected with \"InvalidStateError\" DOMException.

" }, { "html": "

Let promise be a new Promise.

" }, { - "html": "

If the [[control thread state]] on the AudioContext is closed reject the promise\nwith InvalidStateError, abort these steps,\nreturning promise.

" + "html": "

If the [[control thread state]] on the AudioContext is closed reject the promise\nwith InvalidStateError, abort these steps,\nreturning promise.

" }, { - "html": "

Append promise to [[pending promises]].

" + "html": "

Append promise to [[pending promises]].

" }, { - "html": "

Set [[suspended by user]] to true.

" + "html": "

Set [[suspended by user]] to true.

" }, { - "html": "

Set the [[control thread state]] on the AudioContext to suspended.

" + "html": "

Set the [[control thread state]] on the AudioContext to suspended.

" }, { - "html": "

Queue a control message to suspend the AudioContext.

" + "html": "

Queue a control message to suspend the AudioContext.

" }, { "html": "

Return promise.

" @@ -458,168 +376,31 @@ }, { "name": "run a control message to suspend an AudioContext", - "html": "Running a control message to suspend an AudioContext means running these steps on the rendering thread:", + "html": "Running a control message to suspend an AudioContext means running these steps on the rendering thread:", "rationale": ".algorithm", "steps": [ { - "html": "

Attempt to release system resources.

" + "html": "

Attempt to release system resources.

" }, { - "html": "

Set the [[rendering thread state]] on the AudioContext to suspended.

" + "html": "

Set the [[rendering thread state]] on the AudioContext to suspended.

" }, { - "html": " queue a media element task to execute the following steps:", + "html": " queue a media element task to execute the following steps:", "rationale": "resolve", "steps": [ { "html": "

Resolve promise.

" }, { - "html": "If the state attribute of the AudioContext is not already \"suspended\":", + "html": "If the state attribute of the AudioContext is not already \"suspended\":", "rationale": "set", "steps": [ { - "html": "

Set the state attribute of the AudioContext to \"suspended\".

" + "html": "

Set the state attribute of the AudioContext to \"suspended\".

" }, { - "html": "

Queue a media element task to fire an event named statechange at the AudioContext.

" - } - ] - } - ] - } - ] - }, - { - "name": "AudioContext.setSinkId()", - "html": "", - "rationale": ".algorithm", - "steps": [ - { - "html": "

Let sinkId be the method’s first argument.

" - }, - { - "html": "

If sinkId is equal to [[sink ID]], return a\npromise, resolve it immediately and abort these steps.

" - }, - { - "html": "

Let validationResult be the return value of sink identifier validation of sinkId.

" - }, - { - "html": "

If validationResult is not null, return a promise\nrejected with validationResult. Abort these steps.

" - }, - { - "html": "

Let p be a new promise.

" - }, - { - "html": "

Send a control message with p and sinkId to start\nprocessing.

" - }, - { - "html": "

Return p.

" - } - ] - }, - { - "name": "run a control message for setSinkId", - "html": "Sending a control message to start processing during setSinkId() means executing the following steps:", - "rationale": ".algorithm", - "steps": [ - { - "html": "

Let p be the promise passed into this algorithm.

" - }, - { - "html": "

Let sinkId be the sink identifier passed into this algorithm.

" - }, - { - "html": "

If both sinkId and [[sink ID]] are a type of DOMString, and they are equal to each other, queue a media element task to resolve p and abort these steps.

" - }, - { - "html": "

If sinkId is a type of AudioSinkOptions and [[sink ID]] is a type of AudioSinkInfo, and type in sinkId and type in [[sink ID]] are equal, queue a media element task to resolve p and abort these steps.

" - }, - { - "html": "

Let wasRunning be true.

" - }, - { - "html": "

Set wasRunning to false if the [[rendering thread state]] on\nthe AudioContext is \"suspended\".

" - }, - { - "html": "

Pause the renderer after processing the current render quantum.

" - }, - { - "html": "

Attempt to release system resources.

" - }, - { - "html": "If wasRunning is true:", - "rationale": "set", - "steps": [ - { - "html": "

Set the [[rendering thread state]] on the AudioContext to \"suspended\".

" - }, - { - "html": " Queue a media element task to execute the following steps:", - "rationale": "if", - "steps": [ - { - "html": "If the state attribute of the AudioContext is not already \"suspended\":", - "rationale": "set", - "steps": [ - { - "html": "

Set the state attribute of the AudioContext to \"suspended\".

" - }, - { - "html": "

Fire an event named statechange at the\nassociated AudioContext.

" - } - ] - } - ] - } - ] - }, - { - "html": "

Attempt to acquire system resources to use\na following audio output device based on [[sink ID]] for rendering:

\n \n

In case of failure, reject p with \"InvalidAccessError\" abort\nthe following steps.

" - }, - { - "html": " Queue a media element task to execute the following steps:", - "rationale": "if", - "steps": [ - { - "html": "

If sinkId is a type of DOMString, set [[sink ID]] to sinkId. Abort these steps.

" - }, - { - "html": "

If sinkId is a type of AudioSinkOptions and [[sink ID]] is a type of DOMString,\nset [[sink ID]] to a new instance of AudioSinkInfo created with the value of type of sinkId.

" - }, - { - "html": "

If sinkId is a type of AudioSinkOptions and [[sink ID]] is a type of AudioSinkInfo,\nset type of [[sink ID]] to\nthe type value of sinkId.

" - }, - { - "html": "

Resolve p.

" - }, - { - "html": "

Fire an event named sinkchange at the\nassociated AudioContext.

" - } - ] - }, - { - "html": "If wasRunning is true:", - "rationale": "set", - "steps": [ - { - "html": "

Set the [[rendering thread state]] on the AudioContext to \"running\".

" - }, - { - "html": " Queue a media element task to execute the following steps:", - "rationale": "if", - "steps": [ - { - "html": "If the state attribute of the AudioContext is not already \"running\":", - "rationale": "set", - "steps": [ - { - "html": "

Set the state attribute of the AudioContext to \"running\".

" - }, - { - "html": "

Fire an event named statechange at the\nassociated AudioContext.

" - } - ] + "html": "

queue a media element task to fire\nan event named statechange at the AudioContext.

" } ] } @@ -627,103 +408,51 @@ } ] }, - { - "name": "validating sink ID", - "html": "", - "rationale": ".algorithm", - "steps": [ - { - "html": "

Let document be the current settings object’s associated Document.

" - }, - { - "html": "

Let sinkIdArg be the value passed in to this algorithm.

" - }, - { - "html": "

If document is not allowed to use the feature identified by \"speaker-selection\", return a new DOMException whose name\nis \"NotAllowedError\".

" - }, - { - "html": "

If sinkIdArg is a type of DOMString but it is not equal to the empty\nstring or it does not match any audio output device identified by the\nresult that would be provided by enumerateDevices(),\nreturn a new DOMException whose name is \"NotFoundError\".

" - }, - { - "html": "

Return null.

" - } - ] - }, { "name": "OfflineAudioContext.OfflineAudioContext(contextOptions)", - "html": "If the current settings object's relevant global object's associated Document is NOT fully active,\n throw an InvalidStateError and abort these steps.", + "html": "If the current\n\tsettings object’s responsible\n\tdocument is NOT fully active, throw an InvalidStateError and\n\tabort these steps.", "rationale": ".algorithm", "steps": [ { - "html": "

Set the [[control thread state]] for c to \"suspended\".

" + "html": "

Set the [[control thread state]] for c to \"suspended\".

" }, { - "html": "

Set the [[rendering thread state]] for c to \"suspended\".

" + "html": "

Set the [[rendering thread state]] for c to \"suspended\".

" }, { - "html": "Determine the [[render quantum size]] for this OfflineAudioContext,\n based on the value of the renderSizeHint:", - "rationale": "if", - "steps": [ - { - "html": "

If it has the default value of \"default\" or \"hardware\", set the [[render quantum size]] private\n slot to 128.

" - }, - { - "html": "

Else, if an integer has been passed, the User-Agent can decide to\n honour this value by setting it to the [[render quantum size]] private slot.

" - } - ] - }, - { - "html": "

Construct an AudioDestinationNode with its channelCount set to contextOptions.numberOfChannels.

" - }, - { - "html": "

Let messageChannel be a new MessageChannel.

" - }, - { - "html": "

Let controlSidePort be the value of messageChannel’s port1 attribute.

" - }, - { - "html": "

Let renderingSidePort be the value of messageChannel’s port2 attribute.

" - }, - { - "html": "

Let serializedRenderingSidePort be the result of StructuredSerializeWithTransfer(renderingSidePort,\n« renderingSidePort »).

" - }, - { - "html": "

Set this audioWorklet's port to controlSidePort.

" - }, - { - "html": "

Queue a control message to set the\nMessagePort on the AudioContextGlobalScope, with serializedRenderingSidePort.

" + "html": "

Construct an AudioDestinationNode with its channelCount set to contextOptions.numberOfChannels.

" } ] }, { "name": "OfflineAudioContext.startRendering()", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-rendering-started-slot", - "html": "Let [[rendering started]] be an internal slot of this OfflineAudioContext. Initialize this slot to false. \n

When startRendering is\n called, the following steps MUST be performed on the control\n thread:

", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontext-rendering-started-slot", + "html": "Let [[rendering started]] be an internal slot of this OfflineAudioContext. Initialize this slot to false.\n

When startRendering is\n\tcalled, the following steps MUST be performed on the control\n\tthread:

", "rationale": ".algorithm", "steps": [ { - "html": "If this's relevant global object's associated Document is not fully active then return a promise rejected with \"InvalidStateError\" DOMException." + "html": "If this's relevant global object's associated Document is not fully active then return a promise rejected with \"InvalidStateError\" DOMException." }, { - "html": "If the [[rendering started]] slot on the OfflineAudioContext is true, return a rejected\n promise with InvalidStateError, and abort these\n steps." + "html": "If the [[rendering started]] slot on the OfflineAudioContext is true, return a rejected\n\t\tpromise with InvalidStateError, and abort these\n\t\tsteps." }, { - "html": "Set the [[rendering started]] slot of the OfflineAudioContext to true." + "html": "Set the [[rendering started]] slot of the OfflineAudioContext to true." }, { "html": "Let promise be a new promise." }, { - "html": "Create a new AudioBuffer, with a number of\n channels, length and sample rate equal respectively to the numberOfChannels, length and sampleRate values passed to this instance’s\n constructor in the contextOptions parameter.\n Assign this buffer to an internal slot [[rendered buffer]] in the OfflineAudioContext." + "html": "Create a new AudioBuffer, with a number of\n\t\tchannels, length and sample rate equal respectively to the numberOfChannels, length and sampleRate values passed to this instance’s\n\t\tconstructor in the contextOptions parameter.\n\t\tAssign this buffer to an internal slot [[rendered buffer]] in the OfflineAudioContext." }, { - "html": "If an exception was thrown during the preceding AudioBuffer constructor call, reject promise with this exception." + "html": "If an exception was thrown during the preceding AudioBuffer constructor call, reject promise with this exception." }, { - "html": "Otherwise, in the case that the buffer was successfully\n constructed, begin offline rendering." + "html": "Otherwise, in the case that the buffer was successfully\n\t\tconstructed, begin offline rendering." }, { - "html": "Append promise to [[pending promises]]." + "html": "Append promise to [[pending promises]]." }, { "html": "Return promise." @@ -732,28 +461,28 @@ }, { "name": "begin offline rendering", - "href": "https://www.w3.org/TR/webaudio/#begin-offline-rendering", - "html": "To begin offline rendering, the following steps MUST\n happen on a rendering thread that is created for the\n occasion.", + "href": "https://www.w3.org/TR/webaudio-1.0/#begin-offline-rendering", + "html": "To begin offline rendering, the following steps MUST\n\thappen on a rendering thread that is created for the\n\toccasion.", "rationale": ".algorithm", "steps": [ { - "html": "Given the current connections and scheduled changes, start\n rendering length sample-frames of audio into [[rendered buffer]]" + "html": "Given the current connections and scheduled changes, start\n\t\trendering length sample-frames of audio into [[rendered buffer]]" }, { - "html": "For every render quantum, check and suspend rendering if necessary." + "html": "For every render quantum, check and suspend rendering if necessary." }, { - "html": "If a suspended context is resumed, continue to render the\n buffer." + "html": "If a suspended context is resumed, continue to render the\n\t\tbuffer." }, { - "html": "Once the rendering is complete, queue a media element task to execute the following steps:", + "html": "Once the rendering is complete, queue a media element task to execute the following steps:", "rationale": "resolve", "steps": [ { - "html": "Resolve the promise created by startRendering() with [[rendered buffer]]." + "html": "Resolve the promise created by startRendering() with [[rendered buffer]]." }, { - "html": "Queue a media element task to fire an event named complete at the OfflineAudioContext using OfflineAudioCompletionEvent whose renderedBuffer property is set to [[rendered buffer]]." + "html": " queue a media element task to fire an event named complete using an instance of OfflineAudioCompletionEvent whose renderedBuffer property is set to [[rendered buffer]]." } ] } @@ -761,23 +490,23 @@ }, { "name": "OfflineAudioContext::resume()", - "html": "When resume is called,\n execute these steps:", + "html": "When resume is called,\n\texecute these steps:", "rationale": ".algorithm", "steps": [ { - "html": "

If this's relevant global object's associated Document is\nnot fully active then return a promise rejected with \"InvalidStateError\" DOMException.

" + "html": "

If this's relevant global object's associated Document is\nnot fully active then return a promise rejected with \"InvalidStateError\" DOMException.

" }, { "html": "

Let promise be a new Promise.

" }, { - "html": "

Abort these steps and reject promise with InvalidStateError when any of following conditions is true:

\n " + "html": "

Abort these steps and reject promise with InvalidStateError when any of following conditions is true:

\n " }, { - "html": "

Set the [[control thread state]] flag on the OfflineAudioContext to running.

" + "html": "

Set the [[control thread state]] flag on the OfflineAudioContext to running.

" }, { - "html": "

Queue a control message to resume the OfflineAudioContext.

" + "html": "

Queue a control message to resume the OfflineAudioContext.

" }, { "html": "

Return promise.

" @@ -786,34 +515,34 @@ }, { "name": "run a control message in OfflineAudioContext", - "html": "Running a control message to resume an OfflineAudioContext means running these steps on the rendering thread:", + "html": "Running a control message to resume an OfflineAudioContext means running these steps on the rendering thread:", "rationale": ".algorithm", "steps": [ { - "html": "

Set the [[rendering thread state]] on the OfflineAudioContext to running.

" + "html": "

Set the [[rendering thread state]] on the OfflineAudioContext to running.

" }, { - "html": "

Start rendering the audio graph.

" + "html": "

Start rendering the audio graph.

" }, { - "html": "

In case of failure, queue a media element task to reject promise and abort the remaining steps.

" + "html": "

In case of failure, queue a media element task to reject promise and abort the remaining steps.

" }, { - "html": " queue a media element task to execute the following steps:", + "html": " queue a media element task to execute the following steps:", "rationale": "resolve", "steps": [ { "html": "

Resolve promise.

" }, { - "html": "If the state attribute of the OfflineAudioContext is not already \"running\":", + "html": "If the state attribute of the OfflineAudioContext is not already \"running\":", "rationale": "set", "steps": [ { - "html": "

Set the state attribute of the OfflineAudioContext to \"running\".

" + "html": "

Set the state attribute of the OfflineAudioContext to \"running\".

" }, { - "html": "

Queue a media element task to fire an event named statechange at the OfflineAudioContext.

" + "html": "

queue a media element task to fire\nan event named statechange at the OfflineAudioContext.

" } ] } @@ -827,16 +556,16 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If any of the values in options lie outside its nominal range, throw a NotSupportedError exception and abort the following steps.

" + "html": "

If any of the values in options lie outside its nominal range, throw a NotSupportedError exception and abort the following steps.

" }, { - "html": "

Let b be a new AudioBuffer object.

" + "html": "

Let b be a new AudioBuffer object.

" }, { - "html": "

Respectively assign the values of the attributes numberOfChannels, length, sampleRate of the AudioBufferOptions passed\nin the constructor to the internal slots [[number of channels]], [[length]], [[sample rate]].

" + "html": "

Respectively assign the values of the attributes numberOfChannels, length, sampleRate of the AudioBufferOptions passed\nin the constructor to the internal slots [[number of channels]], [[length]], [[sample rate]].

" }, { - "html": "

Set the internal slot [[internal data]] of this AudioBuffer to the result of calling CreateByteDataBlock([[length]] * [[number of channels]]).

" + "html": "

Set the internal slot [[internal data]] of this AudioBuffer to the result of calling CreateByteDataBlock([[length]] * [[number of channels]]).

" }, { "html": "

Return b.

" @@ -845,34 +574,34 @@ }, { "name": "acquire the content of an AudioBuffer", - "href": "https://www.w3.org/TR/webaudio/#acquire-the-content", - "html": "When an acquire the content operation occurs on an AudioBuffer, run the following steps:", + "href": "https://www.w3.org/TR/webaudio-1.0/#acquire-the-content", + "html": "When an acquire the content operation occurs on an AudioBuffer, run the following steps:", "rationale": ".algorithm", "steps": [ { - "html": "

If any of the AudioBuffer's ArrayBuffers are detached, return true, abort these steps, and\nreturn a zero-length channel data buffer to the invoker.

" + "html": "

If the operation IsDetachedBuffer on any of the AudioBuffer's ArrayBuffers return true, abort these steps, and return a zero-length\nchannel data buffer to the invoker.

" }, { - "html": "

Detach all ArrayBuffers for arrays previously returned\nby getChannelData() on this AudioBuffer.

" + "html": "

Detach all ArrayBuffers for arrays previously returned by getChannelData() on this AudioBuffer.

" }, { - "html": "

Retain the underlying [[internal data]] from those ArrayBuffers and return references to them to the\ninvoker.

" + "html": "

Retain the underlying [[internal data]] from those ArrayBuffers and return references to them to the\ninvoker.

" }, { - "html": "

Attach ArrayBuffers containing copies of the data to\nthe AudioBuffer, to be returned by the next call to getChannelData().

" + "html": "

Attach ArrayBuffers containing copies of the data to\nthe AudioBuffer, to be returned by the next call to getChannelData().

" } ] }, { "name": "AudioNode factory method", - "html": "To create a new AudioNode of a particular type n using its factory method, called on a BaseAudioContext c, execute these steps:", + "html": "To create a new AudioNode of a particular type n using its factory method, called on a BaseAudioContext c, execute these steps:", "rationale": ".algorithm", "steps": [ { "html": "

Let node be a new object of type n.

" }, { - "html": "

Let option be a dictionary of the type associated to the interface associated to this factory method.

" + "html": "

Let option be a dictionary of the type associated to the interface associated to this factory method.

" }, { "html": "

For each parameter passed to the factory method, set the\ndictionary member of the same name on option to the\nvalue of this parameter.

" @@ -887,22 +616,22 @@ }, { "name": "initialize an AudioNode", - "href": "https://www.w3.org/TR/webaudio/#audionode-constructor-init", - "html": "Initializing an object o that inherits from AudioNode means executing the following\n steps, given the arguments context and dict passed to\n the constructor of this interface.", + "href": "https://www.w3.org/TR/webaudio-1.0/#audionode-constructor-init", + "html": "Initializing an object o that inherits from AudioNode means executing the following\n\tsteps, given the arguments context and dict passed to\n\tthe constructor of this interface.", "rationale": ".algorithm", "steps": [ { - "html": "

Set o’s associated BaseAudioContext to context.

" + "html": "

Set o’s associated BaseAudioContext to context.

" }, { - "html": "

Set its value for numberOfInputs, numberOfOutputs, channelCount, channelCountMode, channelInterpretation to the\ndefault value for this\nspecific interface outlined in the section for each AudioNode.

" + "html": "

Set its value for numberOfInputs, numberOfOutputs, channelCount, channelCountMode, channelInterpretation to the\ndefault value for this\nspecific interface outlined in the section for each AudioNode.

" }, { "html": "For each member of dict passed in, execute these steps, with k the key of the member, and v its value. If any\nexceptions is thrown when executing these steps, abort the iteration and\npropagate the exception to the caller of the algorithm (constructor or\nfactory method).", "rationale": "if", "steps": [ { - "html": "

If k is the name of an AudioParam on this\ninterface, set the value attribute of this AudioParam to v.

" + "html": "

If k is the name of an AudioParam on this\ninterface, set the value attribute of this AudioParam to v.

" }, { "html": "

Else if k is the name of an attribute on this\ninterface, set the object associated with this attribute to v.

" @@ -913,21 +642,21 @@ }, { "name": "cancel and hold", - "html": "Let tctc be the value of cancelTime. Then", + "html": "Let tctc be the value of cancelTime. Then", "rationale": ".algorithm", "steps": [ { - "html": "

Let E1E1 be the event (if any) at time t1t1 where\nt1t1 is the largest number satisfying t1tct1tc.

" + "html": "

Let E1E1 be the event (if any) at time t1t1 where\nt1t1 is the largest number satisfying t1tct1tc.

" }, { - "html": "

Let E2E2 be the event (if any) at time t2t2 where\nt2t2 is the smallest number satisfying tc<t2tc<t2.

" + "html": "

Let E2E2 be the event (if any) at time t2t2 where\nt2t2 is the smallest number satisfying tc<t2tc<t2.

" }, { - "html": "If E2E2 exists:", + "html": "If E2E2 exists:", "rationale": "if", "steps": [ { - "html": "

If E2E2 is a linear or exponential ramp,

", + "html": "

If E2E2 is a linear or exponential ramp,

", "ignored": [ "Effectively rewrite E2E2E_2 to be the same kind of ramp ending at time tctct_c with an end value that would be the value of the original ramp at time tctct_c. Go to step 5." ] @@ -938,21 +667,21 @@ ] }, { - "html": "If E1E1 exists:", + "html": "If E1E1 exists:", "rationale": "if", "steps": [ { - "html": "

If E1E1 is a setTarget event,

", + "html": "

If E1E1 is a setTarget event,

", "ignored": [ "Implicitly insert a setValueAtTime event at time tctct_c with the value that the setTarget would have at time tctct_c. Go to step 5." ] }, { - "html": "If E1E1 is a setValueCurve with a start\ntime of t3t3 and a duration of dd", + "html": "If E1E1 is a setValueCurve with a start\ntime of t3t3 and a duration of dd", "rationale": "if", "steps": [ { - "html": "

If tc>t3+dtc>t3+d, go to step 5.

" + "html": "

If tc>t3+dtc>t3+d, go to step 5.

" }, { "html": "

Otherwise,

", @@ -965,7 +694,7 @@ ] }, { - "html": "

Remove all events with time greater than tctc.

" + "html": "

Remove all events with time greater than tctc.

" } ] }, @@ -975,41 +704,41 @@ "rationale": ".algorithm", "steps": [ { - "html": "

paramIntrinsicValue will be calculated at\neach time, which is either the value set directly to\nthe value attribute, or, if there are\nany automation\nevents with times before or at this time, the\nvalue as calculated from these events. If automation\nevents are removed from a given time range, then the paramIntrinsicValue value will remain\nunchanged and stay at its previous value until either\nthe value attribute is directly set, or\nautomation events are added for the time range.

" + "html": "

paramIntrinsicValue will be calculated at\neach time, which is either the value set directly to\nthe value attribute, or, if there are\nany automation\nevents with times before or at this time, the\nvalue as calculated from these events. If automation\nevents are removed from a given time range, then the paramIntrinsicValue value will remain\nunchanged and stay at its previous value until either\nthe value attribute is directly set, or\nautomation events are added for the time range.

" }, { - "html": "

Set [[current value]] to the value of paramIntrinsicValue at the beginning of\nthis render quantum.

" + "html": "

Set [[current value]] to the value of paramIntrinsicValue at the beginning of\nthis render quantum.

" }, { - "html": "

paramComputedValue is the sum of the paramIntrinsicValue value and the value of the input\nAudioParam buffer. If the sum is NaN, replace the sum with the defaultValue.

" + "html": "

paramComputedValue is the sum of the paramIntrinsicValue value and the value of the input\nAudioParam buffer. If the sum is NaN, replace the sum with the defaultValue.

" }, { - "html": "

If this AudioParam is a compound parameter,\ncompute its final value with other AudioParams.

" + "html": "

If this AudioParam is a compound parameter,\ncompute its final value with other AudioParams.

" }, { - "html": "

Set computedValue to paramComputedValue.

" + "html": "

Set computedValue to paramComputedValue.

" } ] }, { "name": "AudioScheduledSourceNode.start()", - "html": "When this method is called, execute\n these steps:", + "html": "When this method is called, execute\n\tthese steps:", "rationale": ".algorithm", "steps": [ { - "html": "

If this AudioScheduledSourceNode internal\nslot [[source started]] is true, an InvalidStateError exception MUST be thrown.

" + "html": "

If this AudioScheduledSourceNode internal\nslot [[source started]] is true, an InvalidStateError exception MUST be thrown.

" }, { "html": "

Check for any errors that must be thrown due to parameter\nconstraints described below. If any exception is thrown during this\nstep, abort those steps.

" }, { - "html": "

Set the internal slot [[source started]] on\nthis AudioScheduledSourceNode to true.

" + "html": "

Set the internal slot [[source started]] on\nthis AudioScheduledSourceNode to true.

" }, { - "html": "

Queue a control message to start the AudioScheduledSourceNode, including the parameter\nvalues in the message.

" + "html": "

Queue a control message to start the AudioScheduledSourceNode, including the parameter\nvalues in the message.

" }, { - "html": "

Send a control message to the associated AudioContext to start running its rendering thread only when\nall the following conditions are met:

", + "html": "

Send a control message to the associated AudioContext to start running its rendering thread only when\nall the following conditions are met:

", "ignored": [ "The context’s [[control thread state]] is \"suspended\". The context is allowed to start. [[suspended by user]] flag is false." ] @@ -1022,13 +751,13 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this AudioScheduledSourceNode internal\nslot [[source started]] is not true,\nan InvalidStateError exception MUST be thrown.

" + "html": "

If this AudioScheduledSourceNode internal\nslot [[source started]] is not true,\nan InvalidStateError exception MUST be thrown.

" }, { "html": "

Check for any errors that must be thrown due to parameter\nconstraints described below.

" }, { - "html": "

Queue a control message to stop the AudioScheduledSourceNode, including the parameter\nvalues in the message.

" + "html": "

Queue a control message to stop the AudioScheduledSourceNode, including the parameter\nvalues in the message.

" } ] }, @@ -1038,41 +767,41 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Compute the current time-domain data.

" + "html": "

Compute the current time-domain data.

" }, { - "html": "

Apply a Blackman window to the time domain input data.

" + "html": "

Apply a Blackman window to the time domain input data.

" }, { - "html": "

Apply a Fourier transform to the\nwindowed time domain input data to get real and imaginary\nfrequency data.

" + "html": "

Apply a Fourier transform to the\nwindowed time domain input data to get real and imaginary\nfrequency data.

" }, { - "html": "

Smooth over time the frequency domain data.

" + "html": "

Smooth over time the frequency domain data.

" }, { - "html": "

Convert to dB.

" + "html": "

Convert to dB.

" } ] }, { "name": "set the buffer attribute", - "html": "To set the buffer attribute, execute these steps:", + "html": "To set the buffer attribute, execute these steps:", "rationale": ".algorithm", "steps": [ { - "html": "

Let new buffer be the AudioBuffer or null value to be assigned to buffer.

" + "html": "

Let new buffer be the AudioBuffer or null value to be assigned to buffer.

" }, { - "html": "

If new buffer is not null and [[buffer set]] is true, throw an InvalidStateError and abort these steps.

" + "html": "

If new buffer is not null and [[buffer set]] is true, throw an InvalidStateError and abort these steps.

" }, { - "html": "

If new buffer is not null, set [[buffer set]] to true.

" + "html": "

If new buffer is not null, set [[buffer set]] to true.

" }, { - "html": "

Assign new buffer to the buffer attribute.

" + "html": "

Assign new buffer to the buffer attribute.

" }, { - "html": "

If start() has previously been called on this\nnode, perform the operation acquire the content on buffer.

" + "html": "

If start() has previously been called on this\nnode, perform the operation acquire the content on buffer.

" } ] }, @@ -1082,22 +811,22 @@ "rationale": ".algorithm", "steps": [ { - "html": "

If this AudioBufferSourceNode internal\nslot [[source started]] is true, an InvalidStateError exception MUST be thrown.

" + "html": "

If this AudioBufferSourceNode internal\nslot [[source started]] is true, an InvalidStateError exception MUST be thrown.

" }, { "html": "

Check for any errors that must be thrown due to parameter\nconstraints described below. If any\nexception is thrown during this step,\nabort those steps.

" }, { - "html": "

Set the internal slot [[source started]] on\nthis AudioBufferSourceNode to true.

" + "html": "

Set the internal slot [[source started]] on\nthis AudioBufferSourceNode to true.

" }, { - "html": "

Queue a control message to start the AudioBufferSourceNode, including the parameter values\nin the message.

" + "html": "

Queue a control message to start the AudioBufferSourceNode, including the parameter values\nin the message.

" }, { - "html": "

Acquire the contents of the buffer if the buffer has been set.

" + "html": "

Acquire the contents of the buffer if the buffer has been set.

" }, { - "html": "

Send a control message to the associated AudioContext to start running its rendering thread only when\nall the following conditions are met:

", + "html": "

Send a control message to the associated AudioContext to start running its rendering thread only when\nall the following conditions are met:

", "ignored": [ "The context’s [[control thread state]] is suspended. The context is allowed to start. [[suspended by user]] flag is false." ] @@ -1105,74 +834,74 @@ ] }, { - "name": "ConvolverNode/ConvolverNode(context, options)", - "href": "https://www.w3.org/TR/webaudio/#dom-convolvernode-convolvernode", - "html": "When the constructor is called with a BaseAudioContext context and\nan option object options, execute these steps:", + "name": "ConvolverNode/constructor()/ConvolverNode(context, options)", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-convolvernode-constructor-convolvernode", + "html": "When the constructor is called with a BaseAudioContext context and\nan option object options, execute these steps:", "rationale": "set", "steps": [ { - "html": "

Set the attributes normalize to the inverse of the\nvalue of disableNormalization.

" + "html": "

Set the attributes normalize to the inverse of the\nvalue of disableNormalization.

" }, { - "html": "

If buffer exists, set the buffer attribute to its value.

" + "html": "

If buffer is present, set the buffer attribute to its value.

" }, { - "html": "

Let o be new AudioNodeOptions dictionary.

" + "html": "

Let o be new AudioNodeOptions dictionary.

" }, { - "html": "

If channelCount exists in options, set channelCount on o with the same value.

" + "html": "

If channelCount is present in options, set channelCount on o with the same value.

" }, { - "html": "

If channelCountMode exists in options, set channelCountMode on o with the same value.

" + "html": "

If channelCountMode is present in options, set channelCountMode on o with the same value.

" }, { - "html": "

If channelInterpretation exists in options, set channelInterpretation on o with the same value.

" + "html": "

If channelInterpretation is present in options, set channelInterpretation on o with the same value.

" }, { - "html": "

Initialize the AudioNode this, with c and o as argument.

" + "html": "

Initialize the AudioNode this, with c and o as argument.

" } ] }, { "name": "set convolver buffer", - "href": "https://www.w3.org/TR/webaudio/#dom-convolvernode-buffer-attribute", - "html": "When setting the buffer attribute, execute the following steps synchronously:", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-convolvernode-buffer-attribute", + "html": "When setting the buffer attribute, execute the following steps synchronously:", "rationale": ".algorithm", "steps": [ { - "html": "

If the buffer number of channels is not 1, 2, 4, or if the sample-rate of the buffer is not the same as the sample-rate of its associated BaseAudioContext, a NotSupportedError MUST be thrown.

" + "html": "

If the buffer number of channels is not 1, 2, 4, or if the sample-rate of the buffer is not the same as the sample-rate of its associated BaseAudioContext, a NotSupportedError MUST be thrown.

" }, { - "html": "

Acquire the content of the AudioBuffer.

" + "html": "

Acquire the content of the AudioBuffer.

" } ] }, { "name": "reduction-gain", - "html": "The following algorithm allow determining a value for reduction gain, for each sample of input, for a render\n quantum of audio.", + "html": "The following algorithm allow determining a value for reduction gain, for each sample of input, for a render\n\tquantum of audio.", "rationale": ".algorithm", "steps": [ { - "html": "

Let attack and release have the values of attack and release, respectively, sampled at the time of\nprocessing (those are k-rate parameters), mutiplied by the\nsample-rate of the BaseAudioContext this DynamicsCompressorNode is associated with.

" + "html": "

Let attack and release have the values of attack and release, respectively, sampled at the time of\nprocessing (those are k-rate parameters), mutiplied by the\nsample-rate of the BaseAudioContext this DynamicsCompressorNode is associated with.

" }, { - "html": "

Let detector average be the value of the slot [[detector average]].

" + "html": "

Let detector average be the value of the slot [[detector average]].

" }, { - "html": "

Let compressor gain be the value of the slot [[compressor gain]].

" + "html": "

Let compressor gain be the value of the slot [[compressor gain]].

" }, { "html": "For each sample input of the render quantum to be\nprocessed, execute the following steps:", "rationale": "if", "steps": [ { - "html": "

If the absolute value of input is less than\n0.0001, let attenuation be 1.0. Else, let shaped input be the value of applying the compression curve to the absolute\nvalue of input. Let attenuation be shaped input divided by the absolute value of input.

" + "html": "

If the absolute value of input is less than\n0.0001, let attenuation be 1.0. Else, let shaped input be the value of applying the compression curve to the absolute\nvalue of input. Let attenuation be shaped input divided by the absolute value of input.

" }, { "html": "

Let releasing be true if attenuation is greater than compressor\ngain, false otherwise.

" }, { - "html": "

Let detector rate be the result of applying the detector curve to attenuation.

" + "html": "

Let detector rate be the result of applying the detector curve to attenuation.

" }, { "html": "

Subtract detector average from attenuation, and multiply the result by detector rate. Add this new result to detector average.

" @@ -1181,7 +910,7 @@ "html": "

Clamp detector average to a maximum of 1.0.

" }, { - "html": "

Let envelope rate be the result of computing the envelope rate based on values of attack and release.

" + "html": "

Let envelope rate be the result of computing the envelope rate based on values of attack and release.

" }, { "html": "

If releasing is true, set compressor gain to be the product of compressor gain and envelope rate, clamped\nto a maximum of 1.0.

" @@ -1190,32 +919,32 @@ "html": "

Else, if releasing is false, let gain increment to be detector average minus compressor gain. Multiply gain\nincrement by envelope rate, and add the result\nto compressor gain.

" }, { - "html": "

Compute reduction gain to be compressor\ngain multiplied by the return value of computing the\nmakeup gain.

" + "html": "

Compute reduction gain to be compressor\ngain multiplied by the return value of computing the\nmakeup gain.

" }, { - "html": "

Compute metering gain to be reduction gain, converted to\ndecibel.

" + "html": "

Compute metering gain to be reduction gain, converted to\ndecibel.

" } ] }, { - "html": "

Set [[compressor gain]] to compressor\ngain.

" + "html": "

Set [[compressor gain]] to compressor\ngain.

" }, { - "html": "

Set [[detector average]] to detector\naverage.

" + "html": "

Set [[detector average]] to detector\naverage.

" }, { - "html": "

Atomically set the internal slot [[internal reduction]] to the value of metering gain.

" + "html": "

Atomically set the internal slot [[internal reduction]] to the value of metering gain.

" } ] }, { "name": "computing makeup gain", - "href": "https://www.w3.org/TR/webaudio/#computing-the-makeup-gain", - "html": "Computing the makeup gain means executing the following steps:", + "href": "https://www.w3.org/TR/webaudio-1.0/#computing-the-makeup-gain", + "html": "Computing the makeup gain means executing the following steps:", "rationale": ".algorithm", "steps": [ { - "html": "

Let full range gain be the value returned by\napplying the compression curve to the value 1.0.

" + "html": "

Let full range gain be the value returned by\napplying the compression curve to the value 1.0.

" }, { "html": "

Let full range makeup gain be the inverse of full\nrange gain.

" @@ -1227,161 +956,161 @@ }, { "name": "apply decompression", - "href": "https://www.w3.org/TR/webaudio/#compression-curve", - "html": "Applying a compression curve to a value means computing\n the value of this sample when passed to a function, and returning\n the computed value. This function MUST respect the following\n characteristics:", + "href": "https://www.w3.org/TR/webaudio-1.0/#compression-curve", + "html": "Applying a compression curve to a value means computing\n\tthe value of this sample when passed to a function, and returning\n\tthe computed value. This function MUST respect the following\n\tcharacteristics:", "rationale": ".algorithm", "steps": [ { - "html": "

Let threshold and knee have the\nvalues of threshold and knee, respectively, converted to linear\nunits and sampled at the time of processing of this\nblock (as k-rate parameters).

" + "html": "

Let threshold and knee have the\nvalues of threshold and knee, respectively, converted to linear\nunits and sampled at the time of processing of this\nblock (as k-rate parameters).

" }, { - "html": "

Calculate the sum of threshold plus knee also sampled at the time\nof processing of this block (as k-rate parameters).

" + "html": "

Calculate the sum of threshold plus knee also sampled at the time\nof processing of this block (as k-rate parameters).

" }, { - "html": "

Let knee end threshold have the value of this\nsum converted to linear\nunits.

" + "html": "

Let knee end threshold have the value of this\nsum converted to linear\nunits.

" }, { - "html": "

Let ratio have the value of the ratio, sampled at the time\nof processing of this block (as a k-rate parameter).

" + "html": "

Let ratio have the value of the ratio, sampled at the time\nof processing of this block (as a k-rate parameter).

" }, { - "html": "

This function is the identity up to the value of the linear threshold (i.e., f(x)=xf(x)=x).

" + "html": "

This function is the identity up to the value of the linear threshold (i.e., f(x)=xf(x)=x).

" }, { "html": "

From the threshold up to the knee end threshold, User-Agents can choose the\ncurve shape. The whole function MUST be monotonically\nincreasing and continuous.

" }, { - "html": "

This function is linear, based on the ratio, after the threshold and the soft knee (i.e., f(x)=1ratioxf(x)=1ratiox).

" + "html": "

This function is linear, based on the ratio, after the threshold and the soft knee (i.e., f(x)=1ratioxf(x)=1ratiox).

" } ] }, { "name": "convert linear to db", - "href": "https://www.w3.org/TR/webaudio/#linear-to-decibel", - "html": "Converting a value vv in linear gain\n unit to decibel means executing the following steps:", + "href": "https://www.w3.org/TR/webaudio-1.0/#linear-to-decibel", + "html": "Converting a value vv in linear gain\n\tunit to decibel means executing the following steps:", "rationale": ".algorithm", "steps": [ { - "html": "

If vv is equal to zero, return -1000.

" + "html": "

If vv is equal to zero, return -1000.

" }, { - "html": "

Else, return 20log10v20log10v.

" + "html": "

Else, return 20log10v20log10v.

" } ] }, { "name": "MediaElementAudioSourceNode/MediaElementAudioSourceNode(context, options)", - "href": "https://www.w3.org/TR/webaudio/#dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode", "html": "", "rationale": "initialize", "steps": [ { - "html": "

initialize the AudioNode this, with context and options as arguments.

" + "html": "

initialize the AudioNode this, with context and options as arguments.

" } ] }, { "name": "MediaStreamAudioDestinationNode/MediaStreamAudioDestinationNode(context, options)", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode", "html": "", "rationale": "initialize", "steps": [ { - "html": "

Initialize the AudioNode this, with context and options as arguments.

" + "html": "

Initialize the AudioNode this, with context and options as arguments.

" } ] }, { "name": "MediaStreamAudioSourceNode/MediaStreamAudioSourceNode(context, options)", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode", "html": "", "rationale": "if", "steps": [ { - "html": "

If the mediaStream member of options does not reference a MediaStream that has at least one MediaStreamTrack whose kind attribute has the value \"audio\",\nthrow an InvalidStateError and abort these steps. Else, let\nthis stream be inputStream.

" + "html": "

If the mediaStream member of options does not reference a MediaStream that has at least one MediaStreamTrack whose kind attribute has the value \"audio\",\nthrow an InvalidStateError and abort these steps. Else, let\nthis stream be inputStream.

" }, { - "html": "

Let tracks be the list of all MediaStreamTracks of inputStream that have a kind of \"audio\".

" + "html": "

Let tracks be the list of all MediaStreamTracks of inputStream that have a kind of \"audio\".

" }, { "html": "

Sort the elements in tracks based on their id attribute using an ordering on sequences of code unit values.

" }, { - "html": "

Initialize the AudioNode this, with context and options as arguments.

" + "html": "

Initialize the AudioNode this, with context and options as arguments.

" }, { - "html": "

Set an internal slot [[input track]] on this MediaStreamAudioSourceNode to be the first element of tracks. This is the track used as the input audio for this MediaStreamAudioSourceNode.

" + "html": "

Set an internal slot [[input track]] on this MediaStreamAudioSourceNode to be the first element of tracks. This is the track used as the input audio for this MediaStreamAudioSourceNode.

" } ] }, { "name": "MediaStreamTrackAudioSourceNode/MediaStreamTrackAudioSourceNode(context, options)", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode", "html": "", "rationale": "if", "steps": [ { - "html": "

If the mediaStreamTrack's kind attribute is not \"audio\", throw an InvalidStateError and abort these steps.

" + "html": "

If the mediaStreamTrack's kind attribute is not \"audio\", throw an InvalidStateError and abort these steps.

" }, { - "html": "

Initialize the AudioNode this, with context and options as arguments.

" + "html": "

Initialize the AudioNode this, with context and options as arguments.

" } ] }, { "name": "construct periodic wave", - "href": "https://www.w3.org/TR/webaudio/#dom-periodicwave-real-slot", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-periodicwave-real-slot", "html": "", "rationale": ".algorithm", "steps": [ { - "html": "

Let p be a new PeriodicWave object. Let [[real]] and [[imag]] be two internal slots of type Float32Array, and let [[normalize]] be an internal slot.

" + "html": "

Let p be a new PeriodicWave object. Let [[real]] and [[imag]] be two internal slots of type Float32Array, and let [[normalize]] be an internal slot.

" }, { - "html": "Process options according to one of the following cases:", + "html": "Process options according to one of the following cases:", "rationale": "if", "steps": [ { - "html": "If both options.real and options.imag are present", + "html": "If both options.real and options.imag are present", "rationale": "if", "steps": [ { - "html": "

If the lengths of options.real and options.imag are different or if either length is less than 2, throw an IndexSizeError and abort this algorithm.

" + "html": "

If the lengths of options.real and options.imag are different or if either length is less than 2, throw an IndexSizeError and abort this algorithm.

" }, { - "html": "

Set [[real]] and [[imag]] to new arrays with the same length as options.real.

" + "html": "

Set [[real]] and [[imag]] to new arrays with the same length as options.real.

" }, { - "html": "

Copy all elements from options.real to [[real]] and options.imag to [[imag]].

" + "html": "

Copy all elements from options.real to [[real]] and options.imag to [[imag]].

" } ] }, { - "html": "If only options.real is present", + "html": "If only options.real is present", "rationale": "if", "steps": [ { - "html": "

If length of options.real is less than 2, throw an IndexSizeError and abort this algorithm.

" + "html": "

If length of options.real is less than 2, throw an IndexSizeError and abort this algorithm.

" }, { - "html": "

Set [[real]] and [[imag]] to arrays with the same length as options.real.

" + "html": "

Set [[real]] and [[imag]] to arrays with the same length as options.real.

" }, { - "html": "

Copy options.real to [[real]] and set [[imag]] to all zeros.

" + "html": "

Copy options.real to [[real]] and set [[imag]] to all zeros.

" } ] }, { - "html": "If only options.imag is present", + "html": "If only options.imag is present", "rationale": "if", "steps": [ { - "html": "

If length of options.imag is less than 2, throw an IndexSizeError and abort this algorithm.

" + "html": "

If length of options.imag is less than 2, throw an IndexSizeError and abort this algorithm.

" }, { - "html": "

Set [[real]] and [[imag]] to arrays with the same length as options.imag.

" + "html": "

Set [[real]] and [[imag]] to arrays with the same length as options.imag.

" }, { - "html": "

Copy options.imag to [[imag]] and set [[real]] to all zeros.

" + "html": "

Copy options.imag to [[imag]] and set [[real]] to all zeros.

" } ] }, @@ -1390,20 +1119,20 @@ "rationale": "set", "steps": [ { - "html": "

Set [[real]] and [[imag]] to zero-filled arrays of length 2.

" + "html": "

Set [[real]] and [[imag]] to zero-filled arrays of length 2.

" }, { - "html": "

Set element at index 1 of [[imag]] to 1.

" + "html": "

Set element at index 1 of [[imag]] to 1.

" } ] } ] }, { - "html": "

Set element at index 0 of both [[real]] and [[imag]] to 0. (This sets the DC component to 0.)

" + "html": "

Set element at index 0 of both [[real]] and [[imag]] to 0. (This sets the DC component to 0.)

" }, { - "html": "

Initialize [[normalize]] to the inverse of the disableNormalization attribute of the PeriodicWaveConstraints on the PeriodicWaveOptions.

" + "html": "

Initialize [[normalize]] to the inverse of the disableNormalization attribute of the PeriodicWaveConstraints on the PeriodicWaveOptions.

" }, { "html": "

Return p.

" @@ -1416,80 +1145,80 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let xx be the input sample, yy be the\ncorresponding output of the node,\nckck be the kk'th element of the curve, and NN be\nthe length of the curve.

" + "html": "

Let xx be the input sample, yy be the\ncorresponding output of the node,\nckck be the kk'th element of the curve, and NN be\nthe length of the curve.

" }, { - "html": "

Let

\n
vkf=N12(x+1)=v=vkv=N12(x+1)k=vf=vk
\n
" + "html": "

Let

\n
vkf=N12(x+1)=v=vkv=N12(x+1)k=vf=vk
\n
" }, { - "html": "

Then

\n
y=c0cN1(1f)ck+fck+1v<0vN1otherwisey={c0v<0cN1vN1(1f)ck+fck+1otherwise
\n
" + "html": "

Then

\n
y=c0cN1(1f)ck+fck+1v<0vN1otherwisey={c0v<0cN1vN1(1f)ck+fck+1otherwise
\n
" } ] }, { "name": "WaveShaperNode.curve", - "html": "To set the curve attribute, execute these steps:", + "html": "To set the curve attribute, execute these steps:", "rationale": ".algorithm", "steps": [ { - "html": "

Let new curve be a Float32Array to be assigned to curve or null.\n.

" + "html": "

Let new curve be a Float32Array to be assigned to curve or null.\n.

" }, { - "html": "

If new curve is not null and [[curve set]] is true, throw an InvalidStateError and abort these steps.

" + "html": "

If new curve is not null and [[curve set]] is true, throw an InvalidStateError and abort these steps.

" }, { - "html": "

If new curve is not null, set [[curve set]] to true.

" + "html": "

If new curve is not null, set [[curve set]] to true.

" }, { - "html": "

Assign new curve to the curve attribute.

" + "html": "

Assign new curve to the curve attribute.

" } ] }, { "name": "oversample", - "html": "A value of \"2x\" or \"4x\" means that the following steps MUST be\n performed:", + "html": "A value of \"2x\" or \"4x\" means that the following steps MUST be\n\tperformed:", "rationale": ".algorithm", "steps": [ { - "html": "

Up-sample the input samples to 2x or 4x the sample-rate of\nthe AudioContext. Thus for each render\nquantum, generate twice (for 2x) or four times (for 4x) samples.

" + "html": "

Up-sample the input samples to 2x or 4x the sample-rate of\nthe AudioContext. Thus for each render\nquantum, generate 256 (for 2x) or 512 (for 4x) samples.

" }, { "html": "

Apply the shaping curve.

" }, { - "html": "

Down-sample the result back to the sample-rate of the AudioContext. Thus taking the previously processed samples\nprocessed samples, generating a single render quantum worth of\nsamples as the final result.

" + "html": "

Down-sample the result back to the sample-rate of the AudioContext. Thus taking the 256 (or 512)\nprocessed samples, generating 128 as the final result.

" } ] }, { "name": "AudioWorkletGlobalScope.registerProcess(name, processorCtr)", - "html": "When the registerProcessor(name, processorCtor) method is called, perform the following steps. If an\n exception is thrown in any step, abort the remaining\n steps.", + "html": "When the registerProcessor(name, processorCtor) method is called, perform the following steps. If an\n\texception is thrown in any step, abort the remaining\n\tsteps.", "rationale": ".algorithm", "steps": [ { - "html": "

If name is an empty string, throw a NotSupportedError.

" + "html": "

If name is an empty string, throw a NotSupportedError.

" }, { - "html": "

If name already exists as a key in the node name to processor constructor map, throw a NotSupportedError.

" + "html": "

If name alredy exists as a key in the node name to processor constructor map, throw a NotSupportedError.

" }, { - "html": "

If the result of IsConstructor(argument=processorCtor) is false, throw a TypeError .

" + "html": "

If the result of IsConstructor(argument=processorCtor) is false, throw a TypeError .

" }, { - "html": "

Let prototype be the result of Get(O=processorCtor,\nP=\"prototype\").

" + "html": "

Let prototype be the result of Get(O=processorCtor,\nP=\"prototype\").

" }, { - "html": "

If the result of Type(argument=prototype) is not Object, throw a TypeError .

" + "html": "

If the result of Type(argument=prototype) is not Object, throw a TypeError .

" }, { - "html": "

Let parameterDescriptorsValue be the\nresult of Get(O=processorCtor, P=\"parameterDescriptors\").

" + "html": "

Let parameterDescriptorsValue be the\nresult of Get(O=processorCtor, P=\"parameterDescriptors\").

" }, { - "html": "If parameterDescriptorsValue is not undefined,\nexecute the following steps:", + "html": "If parameterDescriptorsValue is not undefined,\nexecute the following steps:", "rationale": "let", "steps": [ { - "html": "

Let parameterDescriptorSequence be the result of the conversion from parameterDescriptorsValue to an IDL value of type sequence<AudioParamDescriptor>.

" + "html": "

Let parameterDescriptorSequence be the result of the conversion from parameterDescriptorsValue to an IDL value of type sequence<AudioParamDescriptor>.

" }, { "html": "

Let paramNames be an empty Array.

" @@ -1499,124 +1228,124 @@ "rationale": "let", "steps": [ { - "html": "

Let paramName be the value of\nthe member name in descriptor. Throw\na NotSupportedError if paramNames already\ncontains paramName value.

" + "html": "

Let paramName be the value of\nthe member name in descriptor. Throw\na NotSupportedError if paramNames already\ncontains paramName value.

" }, { "html": "

Append paramName to\nthe paramNames array.

" }, { - "html": "

Let defaultValue be the value of\nthe member defaultValue in descriptor.

" + "html": "

Let defaultValue be the value of\nthe member defaultValue in descriptor.

" }, { - "html": "

Let minValue be the value of\nthe member minValue in descriptor.

" + "html": "

Let minValue be the value of\nthe member minValue in descriptor.

" }, { - "html": "

Let maxValue be the value of\nthe member maxValue in descriptor.

" + "html": "

Let maxValue be the value of\nthe member maxValue in descriptor.

" }, { - "html": "

If the expresstion minValue <= defaultValue <= maxValue is false, throw\nan InvalidStateError.

" + "html": "

If the expresstion minValue <= defaultValue <= maxValue is false, throw\nan InvalidStateError.

" } ] } ] }, { - "html": "

Append the key-value pair nameprocessorCtor to node name to processor constructor map of the associated AudioWorkletGlobalScope.

" + "html": "

Append the key-value pair nameprocessorCtor to node name to processor constructor map of the associated AudioWorkletGlobalScope.

" }, { - "html": "

queue a media element task to append the key-value pair nameparameterDescriptorSequence to the node name to parameter descriptor map of the\nassociated BaseAudioContext.

" + "html": "

queue a media element task to append the key-value pair nameparameterDescriptorSequence to the node name to parameter descriptor map of the\nassociated BaseAudioContext.

" } ] }, { "name": "invoking processor constructor", - "href": "https://www.w3.org/TR/webaudio/#invoking-processor-constructor", + "href": "https://www.w3.org/TR/webaudio-1.0/#invoking-processor-constructor", "html": "", "rationale": ".algorithm", "steps": [ { - "html": "

Let constructionData be the processor construction data transferred from the control thread.

" + "html": "

Let constructionData be the processor construction data transferred from the control thread.

" }, { - "html": "

Let processorName, nodeReference and serializedPort be constructionData’s name, node, and port respectively.

" + "html": "

Let processorName, nodeReference and serializedPort be constructionData’s name, node, and port respectively.

" }, { - "html": "

Let serializedOptions be constructionData’s options.

" + "html": "

Let serializedOptions be constructionData’s options.

" }, { - "html": "

Let deserializedPort be the result of StructuredDeserialize(serializedPort,\nthe current Realm).

" + "html": "

Let deserializedPort be the result of StructuredDeserialize(serializedPort,\nthe current Realm).

" }, { - "html": "

Let deserializedOptions be the result of StructuredDeserialize(serializedOptions,\nthe current Realm).

" + "html": "

Let deserializedOptions be the result of StructuredDeserialize(serializedOptions,\nthe current Realm).

" }, { - "html": "

Let processorCtor be the result of looking\nup processorName on the AudioWorkletGlobalScope's node name to processor constructor map.

" + "html": "

Let processorCtor be the result of looking\nup processorName on the AudioWorkletGlobalScope's node name to processor constructor map.

" }, { - "html": "

Store nodeReference and deserializedPort to node reference and transferred port of this AudioWorkletGlobalScope's pending processor construction data respectively.

" + "html": "

Store nodeReference and deserializedPort to node reference and transferred port of this AudioWorkletGlobalScope's pending processor construction data respectively.

" }, { - "html": "

Construct a callback function from processorCtor with\nthe argument of deserializedOptions. If any exceptions are thrown in the callback, queue a task to the control thread to fire an event named processorerror at nodeReference using ErrorEvent.

" + "html": "

Construct a callback function from processorCtor with the argument\nof deserializedOptions. If any exceptions are thrown in the callback, queue a task to\nthe control thread to fire an event named processorerror using ErrorEvent at nodeReference.

" }, { - "html": "

Empty the pending processor construction data slot.

" + "html": "

Empty the pending processor construction data slot.

" } ] }, { "name": "AudioWorkletNode()", - "html": "When the AudioWorkletNode constructor\n is invoked with context, nodeName, options:", + "html": "When the AudioWorkletNode constructor\n\tis invoked with context, nodeName, options:", "rationale": ".algorithm", "steps": [ { - "html": "

If nodeName does not exist as a key in the BaseAudioContext’s node name to parameter\ndescriptor map, throw a InvalidStateError exception and abort these steps.

" + "html": "

If nodeName does not exist as a key in the BaseAudioContext’s node name to parameter\ndescriptor map, throw a InvalidStateError exception and abort these steps.

" }, { - "html": "

Let node be this value.

" + "html": "

Let node be this value.

" }, { - "html": "

Initialize the AudioNode node with context and options as\narguments.

" + "html": "

Initialize the AudioNode node with context and options as\narguments.

" }, { - "html": "

Configure input, output and output channels of node with options.\nAbort the remaining steps if any exception is\nthrown.

" + "html": "

Configure input, output and output channels of node with options.\nAbort the remaining steps if any exception is\nthrown.

" }, { - "html": "

Let messageChannel be a new MessageChannel.

" + "html": "

Let messageChannel be a new MessageChannel.

" }, { - "html": "

Let nodePort be the value of messageChannel’s port1 attribute.

" + "html": "

Let nodePort be the value of messageChannel’s port1 attribute.

" }, { - "html": "

Let processorPortOnThisSide be the value of messageChannel’s port2 attribute.

" + "html": "

Let processorPortOnThisSide be the value of messageChannel’s port2 attribute.

" }, { - "html": "

Let serializedProcessorPort be the result of StructuredSerializeWithTransfer(processorPortOnThisSide,\n« processorPortOnThisSide »).

" + "html": "

Let serializedProcessorPort be the result of StructuredSerializeWithTransfer(processorPortOnThisSide,\n« processorPortOnThisSide »).

" }, { - "html": "

Convert options dictionary to optionsObject.

" + "html": "

Convert options dictionary to optionsObject.

" }, { "html": "

Let serializedOptions be the result of StructuredSerialize(optionsObject).

" }, { - "html": "

Set node’s port to nodePort.

" + "html": "

Set node’s port to nodePort.

" }, { - "html": "Let parameterDescriptors be the result of retrieval\nof nodeName from node name to parameter descriptor map:", + "html": "Let parameterDescriptors be the result of retrieval\nof nodeName from node name to parameter descriptor map:", "rationale": "let", "steps": [ { - "html": "

Let audioParamMap be a new AudioParamMap object.

" + "html": "

Let audioParamMap be a new AudioParamMap object.

" }, { "html": "For each descriptor of parameterDescriptors:", "rationale": "let", "steps": [ { - "html": "

Let paramName be the value of name member in descriptor.

" + "html": "

Let paramName be the value of name member in descriptor.

" }, { - "html": "

Let audioParam be a new AudioParam instance with automationRate, defaultValue, minValue, and maxValue having values equal to the values of\ncorresponding members on descriptor.

" + "html": "

Let audioParam be a new AudioParam instance with automationRate, defaultValue, minValue, and maxValue having values equal to the values of\ncorresponding members on descriptor.

" }, { "html": "

Append a key-value pair paramNameaudioParam to audioParamMap’s\nentries.

" @@ -1624,11 +1353,11 @@ ] }, { - "html": "If parameterData is\npresent on options, perform the\nfollowing steps:", + "html": "If parameterData is\npresent on options, perform the\nfollowing steps:", "rationale": "let", "steps": [ { - "html": "

Let parameterData be the value of parameterData.

" + "html": "

Let parameterData be the value of parameterData.

" }, { "html": "For each paramNameparamValue of parameterData:", @@ -1638,58 +1367,58 @@ "html": "

If there exists a map entry on audioParamMap with\nkey paramName, let audioParamInMap be\nsuch entry.

" }, { - "html": "

Set value property\nof audioParamInMap to paramValue.

" + "html": "

Set value property\nof audioParamInMap to paramValue.

" } ] } ] }, { - "html": "

Set node’s parameters to audioParamMap.

" + "html": "

Set node’s parameters to audioParamMap.

" } ] }, { - "html": "

Queue a control message to invoke the constructor of\nthe corresponding AudioWorkletProcessor with\nthe processor construction data that consists of: nodeName, node, serializedOptions, and serializedProcessorPort.

" + "html": "

Queue a control message to invoke the constructor of\nthe corresponding AudioWorkletProcessor with\nthe processor construction data that consists of: nodeName, node, serializedOptions, and serializedProcessorPort.

" } ] }, { "name": "configure with AudioWorkletNodeOptions", - "href": "https://www.w3.org/TR/webaudio/#configure-with-audioworkletnodeoptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#configure-with-audioworkletnodeoptions", "html": "", "rationale": ".algorithm", "steps": [ { - "html": "

Let node be an AudioWorkletNode instance that is\ngiven to this algorithm.

" + "html": "

Let node be an AudioWorkletNode instance that is\ngiven to this algorithm.

" }, { - "html": "

If both numberOfInputs and numberOfOutputs are zero,\nthrow a NotSupportedError and abort the remaining steps.

" + "html": "

If both numberOfInputs and numberOfOutputs are zero,\nthrow a NotSupportedError and abort the remaining steps.

" }, { - "html": "If outputChannelCount exists,", + "html": "If outputChannelCount is present,", "rationale": "if", "steps": [ { - "html": "

If any value in outputChannelCount is zero\nor greater than the implementation’s maximum number\nof channels, throw a NotSupportedError and abort\nthe remaining steps.

" + "html": "

If any value in outputChannelCount is zero\nor greater than the implementation’s maximum number\nof channels, throw a NotSupportedError and abort\nthe remaining steps.

" }, { - "html": "

If the length of outputChannelCount does not\nequal numberOfOutputs,\nthrow an IndexSizeError and abort the remaining\nsteps.

" + "html": "

If the length of outputChannelCount does not\nequal numberOfOutputs,\nthrow an IndexSizeError and abort the remaining\nsteps.

" }, { - "html": "

If both numberOfInputs and numberOfOutputs are 1,\nset the channel count of the node output to\nthe one value in outputChannelCount.

" + "html": "

If both numberOfInputs and numberOfOutputs are 1,\nset the channel count of the node output to\nthe one value in outputChannelCount.

" }, { - "html": "

Otherwise set the channel count of the kth output\nof the node to the kth element\nof outputChannelCount sequence and return.

" + "html": "

Otherwise set the channel count of the kth output\nof the node to the kth element\nof outputChannelCount sequence and return.

" } ] }, { - "html": "If outputChannelCount does not exists,", + "html": "If outputChannelCount is not present,", "rationale": "if", "steps": [ { - "html": "

If both numberOfInputs and numberOfOutputs are 1,\nset the initial channel count of the node output to 1 and return.

" + "html": "

If both numberOfInputs and numberOfOutputs are 1,\nset the initial channel count of the node output to 1 and return.

" }, { "html": "

Otherwise set the channel count of each output of the node to 1 and return.

" @@ -1704,25 +1433,25 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Let nodeReference be the result of\nlooking up node reference on the pending processor construction data of the\ncurrent AudioWorkletGlobalScope.\nThrow a TypeError exception if the slot is\nempty.

" + "html": "

Let nodeReference be the result of\nlooking up node reference on the pending processor construction data of the\ncurrent AudioWorkletGlobalScope.\nThrow a TypeError exception if the slot is\nempty.

" }, { - "html": "

Let processor be the this value.

" + "html": "

Let processor be the this value.

" }, { - "html": "

Set processor’s [[node reference]] to nodeReference.

" + "html": "

Set processor’s [[node reference]] to nodeReference.

" }, { - "html": "

Set processor’s [[callable process]] to true.

" + "html": "

Set processor’s [[callable process]] to true.

" }, { - "html": "

Let deserializedPort be the result of\nlooking up transferred port from the pending processor construction data.

" + "html": "

Let deserializedPort be the result of\nlooking up transferred port from the pending processor construction data.

" }, { - "html": "

Set processor’s port to deserializedPort.

" + "html": "

Set processor’s port to deserializedPort.

" }, { - "html": "

Empty the pending processor construction data slot.

" + "html": "

Empty the pending processor construction data slot.

" } ] }, @@ -1745,68 +1474,68 @@ "rationale": ".algorithm", "steps": [ { - "html": "

An AudioContext is created.

" + "html": "

An AudioContext is created.

" }, { "html": "

In the main scope, context.audioWorklet is requested to add a script module.

" }, { - "html": "

Since none exists yet, a new AudioWorkletGlobalScope is created in association with the context. This is the global scope in which AudioWorkletProcessor class definitions will be evaluated. (On subsequent calls, this previously created scope will be used.)

" + "html": "

Since none exists yet, a new AudioWorkletGlobalScope is created in association with the context. This is the global scope in which AudioWorkletProcessor class definitions will be evaluated. (On subsequent calls, this previously created scope will be used.)

" }, { "html": "

The imported script is run in the newly created global scope.

" }, { - "html": "

As part of running the imported script, an AudioWorkletProcessor is registered under\na key (\"custom\" in the above diagram) within the AudioWorkletGlobalScope.\nThis populates maps both in the global scope and in the AudioContext.

" + "html": "

As part of running the imported script, an AudioWorkletProcessor is registered under\na key (\"custom\" in the above diagram) within the AudioWorkletGlobalScope.\nThis populates maps both in the global scope and in the AudioContext.

" }, { "html": "

The promise for the addModule() call is resolved.

" }, { - "html": "

In the main scope, an AudioWorkletNode is created using\nthe user-specified key along with a\ndictionary of options.

" + "html": "

In the main scope, an AudioWorkletNode is created using\nthe user-specified key along with a\ndictionary of options.

" }, { - "html": "

As part of the node’s creation, this key is used to look up the\ncorrect AudioWorkletProcessor subclass for instantiation.

" + "html": "

As part of the node’s creation, this key is used to look up the\ncorrect AudioWorkletProcessor subclass for instantiation.

" }, { - "html": "

An instance of the AudioWorkletProcessor subclass is\ninstantiated with a structured clone of the same options\ndictionary. This instance is paired with the previously created AudioWorkletNode.

" + "html": "

An instance of the AudioWorkletProcessor subclass is\ninstantiated with a structured clone of the same options\ndictionary. This instance is paired with the previously created AudioWorkletNode.

" } ] }, { "name": "swapping control message queue", - "href": "https://www.w3.org/TR/webaudio/#swap", - "html": "Swapping a control message queue QA with another control message queue QB means executing the following steps:", + "href": "https://www.w3.org/TR/webaudio-1.0/#swap", + "html": "Swapping a control message queue QA with another control message queue QB means executing the following steps:", "rationale": ".algorithm", "steps": [ { - "html": "

Let QC be a new, empty control message\nqueue.

" + "html": "

Let QC be a new, empty control message\nqueue.

" }, { - "html": "

Move all the control messages QA to QC.

" + "html": "

Move all the control messages QA to QC.

" }, { - "html": "

Move all the control messages QB to QA.

" + "html": "

Move all the control messages QB to QA.

" }, { - "html": "

Move all the control messages QC to QB.

" + "html": "

Move all the control messages QC to QB.

" } ] }, { "name": "initialize rendering loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-initialization", + "href": "https://www.w3.org/TR/webaudio-1.0/#rendering-initialization", "html": "The following step MUST be performed once before the rendering loop starts.", "rationale": ".algorithm", "steps": [ { - "html": "

Set the internal slot [[current frame]] of the BaseAudioContext to 0. Also set currentTime to 0.

" + "html": "

Set the internal slot [[current frame]] of the BaseAudioContext to 0. Also set currentTime to 0.

" } ] }, { "name": "rendering a graph", - "href": "https://www.w3.org/TR/webaudio/#rendering-a-graph", + "href": "https://www.w3.org/TR/webaudio-1.0/#rendering-a-graph", "html": "The following steps MUST be performed when rendering a render quantum.", "rationale": ".algorithm", "steps": [ @@ -1814,32 +1543,32 @@ "html": "

Let render result be false.

" }, { - "html": "Process the control message queue.", + "html": "Process the control message queue.", "rationale": "let", "steps": [ { - "html": "

Let Qrendering be an empty control message\nqueue. Atomically swap Qrendering with the current control message queue.

" + "html": "

Let Qrendering be an empty control message\nqueue. Atomically swap Qrendering with the current control message queue.

" }, { "html": "While there are messages in Qrendering, execute the\nfollowing steps:", "rationale": "execute", "steps": [ { - "html": "

Execute the asynchronous section of the oldest message of Qrendering.

" + "html": "

Execute the asynchronous section of the oldest message of Qrendering.

" }, { - "html": "

Remove the oldest message of Qrendering.

" + "html": "

Remove the oldest message of Qrendering.

" } ] } ] }, { - "html": "Process the BaseAudioContext's associated task queue.", + "html": "Process the BaseAudioContext's associated task queue.", "rationale": "let", "steps": [ { - "html": "

Let task queue be the BaseAudioContext's associated task queue.

" + "html": "

Let task queue be the BaseAudioContext's associated task queue.

" }, { "html": "

Let task count be the number of tasks in the in task queue

" @@ -1875,59 +1604,59 @@ "rationale": "if", "steps": [ { - "html": "

If the [[rendering thread state]] of the BaseAudioContext is not running, return false.

" + "html": "

If the [[rendering thread state]] of the BaseAudioContext is not running, return false.

" }, { - "html": "Order the AudioNodes of the BaseAudioContext to be processed.", + "html": "Order the AudioNodes of the BaseAudioContext to be processed.", "rationale": "let", "steps": [ { - "html": "

Let ordered node list be an empty list of AudioNodes and AudioListener. It will contain an ordered list of AudioNodes and\nthe AudioListener when this ordering algorithm terminates.

" + "html": "

Let ordered node list be an empty list of AudioNodes and AudioListener. It will contain an ordered list of AudioNodes and\nthe AudioListener when this ordering algorithm terminates.

" }, { - "html": "

Let nodes be the set of all nodes created by this BaseAudioContext, and still alive.

" + "html": "

Let nodes be the set of all nodes created by this BaseAudioContext, and still alive.

" }, { - "html": "

Add the AudioListener to nodes.

" + "html": "

Add the AudioListener to nodes.

" }, { - "html": "

Let cycle breakers be an empty set of DelayNodes. It will\ncontain all the DelayNodes that are part of a cycle.

" + "html": "

Let cycle breakers be an empty set of DelayNodes. It will\ncontain all the DelayNodes that are part of a cycle.

" }, { - "html": "For each AudioNode node in nodes:", + "html": "For each AudioNode node in nodes:", "rationale": "if", "steps": [ { - "html": "

If node is a DelayNode that is part of a cycle, add it\nto cycle breakers and remove it from nodes.

" + "html": "

If node is a DelayNode that is part of a cycle, add it\nto cycle breakers and remove it from nodes.

" } ] }, { - "html": "For each DelayNode delay in cycle breakers:", + "html": "For each DelayNode delay in cycle breakers:", "rationale": "let", "steps": [ { - "html": "

Let delayWriter and delayReader respectively be a DelayWriter and a DelayReader, for delay.\n Add delayWriter and delayReader to nodes. Disconnect delay from all its input and\n outputs.

" + "html": "

Let delayWriter and delayReader respectively be a DelayWriter and a DelayReader, for delay.\n\tAdd delayWriter and delayReader to nodes. Disconnect delay from all its input and\n\toutputs.

" } ] }, { - "html": "

If nodes contains cycles, mute all the AudioNodes that are part of this cycle, and remove them from nodes.

" + "html": "

If nodes contains cycles, mute all the AudioNodes that are part of this cycle, and remove them from nodes.

" }, { - "html": "Visiting a node means performing\n the following steps:", + "html": "Visiting a node means performing\n\tthe following steps:", "rationale": "choose", "steps": [ { "html": "

Choose an element node in nodes.

" }, { - "html": "

Visit node.

" + "html": "

Visit node.

" } ], "additional": [ { - "html": "Visiting a node means performing\n the following steps:", + "html": "Visiting a node means performing\n\tthe following steps:", "rationale": ".algorithm", "steps": [ { @@ -1937,18 +1666,18 @@ "html": "

Mark node.

" }, { - "html": "

If node is an AudioNode, Visit each AudioNode connected to the input of node.

" + "html": "

If node is an AudioNode, Visit each AudioNode connected to the input of node.

" }, { - "html": "For each AudioParam param of node:", + "html": "For each AudioParam param of node:", "rationale": "for", "steps": [ { - "html": "For each AudioNode param input node connected to param:", + "html": "For each AudioNode param input node connected to param:", "rationale": "visit", "steps": [ { - "html": "

Visit param input node

" + "html": "

Visit param input node

" } ] } @@ -1967,39 +1696,39 @@ ] }, { - "html": "

Compute the value(s) of the AudioListener's AudioParams for this block.

" + "html": "

Compute the value(s) of the AudioListener's AudioParams for this block.

" }, { - "html": "For each AudioNode, in ordered node list:", + "html": "For each AudioNode, in ordered node list:", "rationale": "for", "steps": [ { - "html": "For each AudioParam of this AudioNode, execute these steps:", + "html": "For each AudioParam of this AudioNode, execute these steps:", "rationale": "if", "steps": [ { - "html": "

If this AudioParam has any AudioNode connected to it, sum the buffers made available for reading by\nall AudioNode connected to this AudioParam, down mix the resulting buffer down to a mono\nchannel, and call this buffer the input AudioParam buffer.

" + "html": "

If this AudioParam has any AudioNode connected to it, sum the buffers made available for reading by\nall AudioNode connected to this AudioParam, down mix the resulting buffer down to a mono\nchannel, and call this buffer the input AudioParam buffer.

" }, { - "html": "

Compute the value(s) of this AudioParam for this block.

" + "html": "

Compute the value(s) of this AudioParam for this block.

" }, { - "html": "

Queue a control message to set the [[current value]] slot\nof this AudioParam according to § 1.6.3 Computation of Value.

" + "html": "

Queue a control message to set the [[current value]] slot\nof this AudioParam according to § 1.6.3 Computation of Value.

" } ] }, { - "html": "

If this AudioNode has any AudioNodes connected to its input, sum the buffers made available for reading by all AudioNodes connected to this AudioNode. The resulting buffer is\ncalled the input buffer. Up or down-mix it to\nmatch if number of input channels of this AudioNode.

" + "html": "

If this AudioNode has any AudioNodes connected to its input, sum the buffers made available for reading by all AudioNodes connected to this AudioNode. The resulting buffer is\ncalled the input buffer. Up or down-mix it to\nmatch if number of input channels of this AudioNode.

" }, { - "html": "

If this AudioNode is a source node, compute a block of audio, and make it available for reading.

" + "html": "

If this AudioNode is a source node, compute a block of audio, and make it available for reading.

" }, { - "html": "If this AudioNode is an AudioWorkletNode, execute these substeps:", + "html": "If this AudioNode is an AudioWorkletNode, execute these substeps:", "rationale": "let", "steps": [ { - "html": "

Let processor be the associated AudioWorkletProcessor instance of AudioWorkletNode.

" + "html": "

Let processor be the associated AudioWorkletProcessor instance of AudioWorkletNode.

" }, { "html": "

Let O be the ECMAScript object corresponding to processor.

" @@ -2011,16 +1740,16 @@ "html": "

Let completion be an uninitialized variable.

" }, { - "html": "

Prepare to run script with the current settings object.

" + "html": "

Prepare to run script with the current settings object.

" }, { - "html": "

Prepare to run a callback with the current settings object.

" + "html": "

Prepare to run a callback with the current settings object.

" }, { "html": "

Let getResult be Get(O, \"process\").

" }, { - "html": "

If getResult is an abrupt completion, set completion to getResult and jump to the step\nlabeled return.

" + "html": "

If getResult is an abrupt completion, set completion to getResult and jump to the step\nlabeled return.

" }, { "html": "

Set processCallback to getResult.[[Value]].

" @@ -2033,31 +1762,31 @@ "html": "

Set completion to new Completion {[[Type]]: throw, [[Value]]: a newly created TypeError object, [[Target]]: empty}.

" }, { - "html": "

Jump to the step labeled return.

" + "html": "

Jump to the step labeled return.

" } ] }, { - "html": "

Set [[callable process]] to true.

" + "html": "

Set [[callable process]] to true.

" }, { "html": "Perform the following substeps:", "rationale": "let", "steps": [ { - "html": "

Let args be a Web IDL arguments list consisting of inputs, outputs, and parameters.

" + "html": "

Let args be a Web IDL arguments list consisting of inputs, outputs, and parameters.

" }, { - "html": "

Let esArgs be the result of converting args to an ECMAScript arguments list.

" + "html": "

Let esArgs be the result of converting args to an ECMAScript arguments list.

" }, { - "html": "

Let callResult be the Call(processCallback, O, esArgs). This operation computes a block of audio with esArgs.\nUpon a successful function call, a buffer containing copies of\nthe elements of the Float32Arrays passed via the outputs is made available for reading.\nAny Promise resolved within this call will be queued into the\nmicrotask queue in the AudioWorkletGlobalScope.

" + "html": "

Let callResult be the Call(processCallback, O, esArgs). This operation computes a block of audio with esArgs.\nUpon a successful function call, a buffer containing copies of\nthe elements of the Float32Arrays passed via the outputs is made available for reading.\nAny Promise resolved within this call will be queued into the\nmicrotask queue in the AudioWorkletGlobalScope.

" }, { - "html": "

If callResult is an abrupt completion, set completion to callResult and jump to the\nstep labeled return.

" + "html": "

If callResult is an abrupt completion, set completion to callResult and jump to the\nstep labeled return.

" }, { - "html": "

Set processor’s active source flag to ToBoolean(callResult.[[Value]]).

" + "html": "

Set processor’s active source flag to ToBoolean(callResult.[[Value]]).

" } ] }, @@ -2066,26 +1795,26 @@ "rationale": "clean", "steps": [ { - "html": "

Clean up after running a callback with the current settings object.

" + "html": "

Clean up after running a callback with the current settings object.

" }, { - "html": "

Clean up after running script with the current settings object.

" + "html": "

Clean up after running script with the current settings object.

" }, { "html": "If completion is an abrupt completion:", "rationale": "set", "steps": [ { - "html": "

Set [[callable process]] to false.

" + "html": "

Set [[callable process]] to false.

" }, { - "html": "

Set processor’s active source flag to false.

" + "html": "

Set processor’s active source flag to false.

" }, { - "html": "

Make a silent output buffer available for reading.

" + "html": "

Make a silent output buffer available for reading.

" }, { - "html": "

Queue a task to the control thread to fire an event named processorerror at the associated AudioWorkletNode using ErrorEvent.

" + "html": "

Queue a task to the control thread fire an ErrorEvent named processorerror at the\nassociated AudioWorkletNode.

" } ] } @@ -2094,22 +1823,22 @@ ] }, { - "html": "

If this AudioNode is a destination node, record the input of this AudioNode.

" + "html": "

If this AudioNode is a destination node, record the input of this AudioNode.

" }, { - "html": "

Else, process the input buffer, and make available for reading the\nresulting buffer.

" + "html": "

Else, process the input buffer, and make available for reading the\nresulting buffer.

" } ] }, { - "html": "Atomically perform the following steps:", + "html": "Atomically perform the following steps:", "rationale": "increment", "steps": [ { - "html": "

Increment [[current frame]] by the render quantum size.

" + "html": "

Increment [[current frame]] by the render quantum size.

" }, { - "html": "

Set currentTime to [[current frame]] divided\nby sampleRate.

" + "html": "

Set currentTime to [[current frame]] divided\nby sampleRate.

" } ] }, @@ -2127,94 +1856,39 @@ ] }, { - "html": "The AudioContext audioContext performs the following steps on rendering thread in the\n event of an audio system resource error.", - "rationale": "if", - "steps": [ - { - "html": "If the audioContext’s [[rendering thread state]] is running:", - "rationale": "attempt", - "steps": [ - { - "html": "

Attempt to release system resources.

" - }, - { - "html": "

Set the audioContext’s [[rendering thread state]] to suspended.

" - }, - { - "html": "Queue a media element task to execute the following steps:", - "rationale": "fire", - "steps": [ - { - "html": "

Fire an event named error at audioContext.

" - }, - { - "html": "

Set the audioContext’s [[suspended by user]] to false.

" - }, - { - "html": "

Set the audioContext’s [[control thread state]] to suspended.

" - }, - { - "html": "

Set the audioContext’s state attribute to\n\"suspended\".

" - }, - { - "html": "

Fire an event named statechange at the audioContext.

" - } - ] - }, - { - "html": "

Abort these steps.

" - } - ] - }, - { - "html": "If the audioContext’s [[rendering thread state]] is suspended:", - "rationale": "queue", - "steps": [ - { - "html": "Queue a media element taskto execute the following steps:", - "rationale": "fire", - "steps": [ - { - "html": "

Fire an event named error at audioContext.

" - } - ] - } - ] - } - ] - }, - { - "html": "The AudioContext audioContext performs the following steps on rendering thread in the\n event of an audio system resource error.", + "name": "processing-input-buffer", + "href": "https://www.w3.org/TR/webaudio-1.0/#processing-input-buffer", + "html": "Processing an input buffer means\nrunning the algorithm for an AudioNode, using an input\nbuffer and the value(s) of the AudioParam(s) of this AudioNode as the input for this algorithm.", "rationale": "reject", "steps": [ { - "html": "

Reject all the promises of [[pending promises]] with InvalidStateError, for each AudioContext and OfflineAudioContext whose relevant global object is the same as\nthe document’s associated Window.

" + "html": "

Reject all the promises of [[pending promises]] with InvalidStateError, for each AudioContext and OfflineAudioContext whose relevant global object is the same as\nthe document’s associated Window.

" }, { - "html": "

Stop all decoding threads.

" + "html": "

Stop all decoding threads.

" }, { - "html": "

Queue a control message to close() the AudioContext or OfflineAudioContext.

" + "html": "

Queue a control message to close() the AudioContext or OfflineAudioContext.

" } ] }, { "name": "channel mixing", - "html": "For each input of an AudioNode, an implementation\n MUST:", + "html": "For each input of an AudioNode, an implementation\n\tMUST:", "rationale": ".algorithm", "steps": [ { - "html": "

Compute computedNumberOfChannels.

" + "html": "

Compute computedNumberOfChannels.

" }, { "html": "For each connection to the input:", "rationale": "up-mix", "steps": [ { - "html": "

up-mix or down-mix the connection to computedNumberOfChannels according to the ChannelInterpretation value given by the node’s channelInterpretation attribute.

" + "html": "

up-mix or down-mix the connection to computedNumberOfChannels according to the ChannelInterpretation value given by the node’s channelInterpretation attribute.

" }, { - "html": "

Mix it together with all of the other mixed streams (from other\nconnections). This is a straight-forward summing together of each of\nthe corresponding channels that have been up-mixed or down-mixed in step 1 for each connection.

" + "html": "

Mix it together with all of the other mixed streams (from other\nconnections). This is a straight-forward summing together of each of\nthe corresponding channels that have been up-mixed or down-mixed in step 1 for each connection.

" } ] } @@ -2226,26 +1900,26 @@ "rationale": ".algorithm", "steps": [ { - "html": "For each sample to be computed by this AudioNode:", + "html": "For each sample to be computed by this AudioNode:", "rationale": "let", "steps": [ { - "html": "

Let azimuth be the value computed in the azimuth and elevation section.

" + "html": "

Let azimuth be the value computed in the azimuth and elevation section.

" }, { - "html": "

The azimuth value is first contained to be within\nthe range [-90, 90] according to:

\n
// First, clamp azimuth to allowed range of [-180, 180].\nazimuth = max(-180, azimuth);\nazimuth = min(180, azimuth);\n\n// Then wrap to range [-90, 90].\nif (azimuth < -90)\n    azimuth = -180 - azimuth;\nelse if (azimuth > 90)\n    azimuth = 180 - azimuth;\n
" + "html": "

The azimuth value is first contained to be within\nthe range [-90, 90] according to:

\n
// First, clamp azimuth to allowed range of [-180, 180].\nazimuth = max(-180, azimuth);\nazimuth = min(180, azimuth);\n\n// Then wrap to range [-90, 90].\nif (azimuth < -90)\n  azimuth = -180 - azimuth;\nelse if (azimuth > 90)\n  azimuth = 180 - azimuth;\n
" }, { - "html": "

A normalized value x is calculated from azimuth for a mono input as:

\n
x = (azimuth + 90) / 180;\n
\n

Or for a stereo input as:

\n
if (azimuth <= 0) { // -90 -> 0\n    // Transform the azimuth value from [-90, 0] degrees into the range [-90, 90].\n    x = (azimuth + 90) / 90;\n} else { // 0 -> 90\n    // Transform the azimuth value from [0, 90] degrees into the range [-90, 90].\n    x = azimuth / 90;\n}\n
" + "html": "

A normalized value x is calculated from azimuth for a mono input as:

\n
x = (azimuth + 90) / 180;\n
\n

Or for a stereo input as:

\n
if (azimuth <= 0) { // -90 -> 0\n  // Transform the azimuth value from [-90, 0] degrees into the range [-90, 90].\n  x = (azimuth + 90) / 90;\n} else { // 0 -> 90\n  // Transform the azimuth value from [0, 90] degrees into the range [-90, 90].\n  x = azimuth / 90;\n}\n
" }, { "html": "

Left and right gain values are calculated as:

\n
gainL = cos(x * Math.PI / 2);\ngainR = sin(x * Math.PI / 2);\n
" }, { - "html": "

For mono input, the stereo output is calculated as:

\n
outputL = input * gainL;\noutputR = input * gainR;\n
\n

Else for stereo input, the output is calculated as:

\n
if (azimuth <= 0) {\n    outputL = inputL + inputR * gainL;\n    outputR = inputR * gainR;\n} else {\n    outputL = inputL * gainL;\n    outputR = inputR + inputL * gainR;\n}\n
" + "html": "

For mono input, the stereo output is calculated as:

\n
outputL = input * gainL;\noutputR = input * gainR;\n
\n

Else for stereo input, the output is calculated as:

\n
if (azimuth <= 0) {\n  outputL = inputL + inputR * gainL;\n  outputR = inputR * gainR;\n} else {\n  outputL = inputL * gainL;\n  outputR = inputR + inputL * gainR;\n}\n
" }, { - "html": "

Apply the distance gain and cone gain where the\ncomputation of the distance is described in Distance\nEffects and the cone gain is described in Sound Cones:

\n
let distance = distance();\nlet distanceGain = distanceModel(distance);\nlet totalGain = coneGain() * distanceGain();\noutputL = totalGain * outputL;\noutputR = totalGain * outputR;\n
" + "html": "

Apply the distance gain and cone gain where the\ncomputation of the distance is described in Distance\nEffects and the cone gain is described in Sound Cones:

\n
let distance = distance();\nlet distanceGain = distanceModel(distance);\nlet totalGain = coneGain() * distanceGain();\noutputL = totalGain * outputL;\noutputR = totalGain * outputR;\n
" } ] } @@ -2253,27 +1927,27 @@ }, { "name": "pan a StereoPannerNode", - "html": "For a StereoPannerNode, the following algorithm\n MUST be implemented.", + "html": "For a StereoPannerNode, the following algorithm\n\tMUST be implemented.", "rationale": ".algorithm", "steps": [ { - "html": "For each sample to be computed by this AudioNode", + "html": "For each sample to be computed by this AudioNode", "rationale": "let", "steps": [ { - "html": "

Let pan be the computedValue of the pan AudioParam of this StereoPannerNode.

" + "html": "

Let pan be the computedValue of the pan AudioParam of this StereoPannerNode.

" }, { "html": "

Clamp pan to [-1, 1].

\n
pan = max(-1, pan);\npan = min(1, pan);\n
" }, { - "html": "

Calculate x by normalizing pan value to\n[0, 1]. For mono input:

\n
x = (pan + 1) / 2;\n
\n

For stereo input:

\n
if (pan <= 0)\n    x = pan + 1;\nelse\n    x = pan;\n
" + "html": "

Calculate x by normalizing pan value to\n[0, 1]. For mono input:

\n
x = (pan + 1) / 2;\n
\n

For stereo input:

\n
if (pan <= 0)\n  x = pan + 1;\nelse\n  x = pan;\n
" }, { "html": "

Left and right gain values are calculated as:

\n
gainL = cos(x * Math.PI / 2);\ngainR = sin(x * Math.PI / 2);\n
" }, { - "html": "

For mono input, the stereo output is calculated as:

\n
outputL = input * gainL;\noutputR = input * gainR;\n
\n

Else for stereo input, the output is calculated as:

\n
if (pan <= 0) {\n    outputL = inputL + inputR * gainL;\n    outputR = inputR * gainR;\n} else {\n    outputL = inputL * gainL;\n    outputR = inputR + inputL * gainR;\n}\n
" + "html": "

For mono input, the stereo output is calculated as:

\n
outputL = input * gainL;\noutputR = input * gainR;\n
\n

Else for stereo input, the output is calculated as:

\n
if (pan <= 0) {\n  outputL = inputL + inputR * gainL;\n  outputR = inputR * gainR;\n} else {\n  outputL = inputL * gainL;\n  outputR = inputR + inputL * gainR;\n}\n
" } ] } diff --git a/tr/algorithms/webdriver-bidi.json b/tr/algorithms/webdriver-bidi.json new file mode 100644 index 000000000000..c12f7ae80e51 --- /dev/null +++ b/tr/algorithms/webdriver-bidi.json @@ -0,0 +1,8166 @@ +{ + "spec": { + "title": "WebDriver BiDi", + "url": "https://www.w3.org/TR/webdriver-bidi/" + }, + "algorithms": [ + { + "name": "awaits", + "href": "https://www.w3.org/TR/webdriver-bidi/#awaits", + "html": "When an algorithm algorithm running in parallel awaits a set of\nevents events, and resume id:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Pause the execution of algorithm.

" + }, + { + "html": "

Assert: wait queue does not contain resume id.

" + }, + { + "html": "

Set wait queue[resume id] to (events, algorithm).

" + } + ] + }, + { + "name": "resume", + "href": "https://www.w3.org/TR/webdriver-bidi/#resume", + "html": "To resume given name, id and parameters:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

If wait queue does not contain id, return.

" + }, + { + "html": "

Let (events, algorithm) be wait queue[id]

" + }, + { + "html": "For each event in events:", + "rationale": "if", + "steps": [ + { + "html": "If event equals name:", + "rationale": "remove", + "steps": [ + { + "html": "

Remove id from wait queue.

" + }, + { + "html": "

Resume running the steps in algorithm from the\n point at which they were paused, passing name and parameters as the\n result of the await.

" + } + ] + } + ] + } + ] + }, + { + "name": "active BiDi sessions", + "href": "https://www.w3.org/TR/webdriver-bidi/#active-bidi-sessions", + "html": "The list of active BiDi sessions is given by:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let BiDi sessions be a new list.

" + }, + { + "html": "For each session in active sessions:", + "rationale": "if", + "steps": [ + { + "html": "

If session is a BiDi session append session to BiDi sessions.

" + } + ] + }, + { + "html": "

Return BiDi sessions.

" + } + ] + }, + { + "name": "event enabled navigables", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-enabled-navigables", + "html": "To obtain a list of event enabled navigables given session and event name:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let navigables be an empty set.

" + }, + { + "html": "For each navigableevents of session’s navigable event map:", + "rationale": "if", + "steps": [ + { + "html": "

If events contains event name, append navigable to navigables

" + } + ] + }, + { + "html": "

Return navigables.

" + } + ] + }, + { + "name": "set of sessions for which an event is enabled", + "href": "https://www.w3.org/TR/webdriver-bidi/#set-of-sessions-for-which-an-event-is-enabled", + "html": "The set of sessions for which an event is enabled given event\nname and navigables is:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let sessions be a new set.

" + }, + { + "html": "For each session in active BiDI sessions:", + "rationale": "if", + "steps": [ + { + "html": "

If event is enabled with session, event name and navigables,\nappend session to sessions.

" + } + ] + }, + { + "html": "

Return sessions.

" + } + ] + }, + { + "name": "event is enabled", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-is-enabled", + "html": "To determine if an event is enabled given session, event name and navigables:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let top-level traversables be an empty set.

" + }, + { + "html": "

For each navigable of navigables, append navigable’s top-level traversable to top-level traversables.

" + }, + { + "html": "

Let event map be the navigable event map for session.

" + }, + { + "html": "For each navigable of top-level traversables:", + "rationale": "if", + "steps": [ + { + "html": "

If event map contains navigable, let navigable events be event map[navigable]. Otherwise let navigable events be null.

" + }, + { + "html": "

If navigable events is not null, and navigable events contains event name, return true.

" + } + ] + }, + { + "html": "

If the global event set for session contains event name return\n true.

" + }, + { + "html": "

Return false.

" + } + ] + }, + { + "name": "obtain a set of event names", + "href": "https://www.w3.org/TR/webdriver-bidi/#obtain-a-set-of-event-names", + "html": "To obtain a set of event names given an name:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let events be an empty set.

" + }, + { + "html": "If name contains a U+002E (period):", + "rationale": "if", + "steps": [ + { + "html": "

If name is the event name for an event, append name to events and return success with data events.

" + }, + { + "html": "

Return an error with error code invalid argument

" + } + ] + }, + { + "html": "

Otherwise name is interpreted as representing all the events in a\n module. If name is not a module name return an error with error code invalid argument.

" + }, + { + "html": "

Append the event name for each event in the module with name name to events.

" + }, + { + "html": "

Return success with data events.

" + } + ] + }, + { + "html": "When a client establishes a WebSocket connection connection by\nconnecting to one of the set of active listeners listener, the\nimplementation must proceed according to the WebSocket server-side\nrequirements, with the following steps run when deciding whether to\naccept the incoming connection:", + "rationale": "let", + "steps": [ + { + "html": "

Let resource name be the resource name from reading the\n client’s opening handshake. If resource name is not in listener’s list of WebSocket resources, then stop\n running these steps and act as if the requested service is not\n available.

" + }, + { + "html": "If resource name is the byte string \"/session\",\n and the implementation supports BiDi-only sessions:", + "rationale": "run", + "steps": [ + { + "html": "

Run any other implementation-defined steps to decide if the\n connection should be accepted, and if it is not stop running these\n steps and act as if the requested service is not available.

" + }, + { + "html": "

Add the connection to WebSocket connections not associated with a\n session.

" + }, + { + "html": "

Return.

" + } + ] + }, + { + "html": "

Get a session ID for a WebSocket resource with resource name and let session id be that value. If session id is null then\n stop running these steps and act as if the requested service is not\n available.

" + }, + { + "html": "

If there is a session in the list of active sessions with session id as its session ID then let session be that\n session. Otherwise stop running these steps and act as if the\n requested service is not available.

" + }, + { + "html": "

Run any other implementation-defined steps to decide if the\n connection should be accepted, and if it is not stop running these\n steps and act as if the requested service is not available.

" + }, + { + "html": "

Otherwise append connection to session’s session WebSocket\n connections, and proceed with the WebSocket server-side requirements when a server chooses to accept an incoming connection.

" + } + ] + }, + { + "name": "construct a WebSocket resource name", + "href": "https://www.w3.org/TR/webdriver-bidi/#construct-a-websocket-resource-name", + "html": "To construct a WebSocket resource name given a session session:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

If session is null, return \"/session\"

" + }, + { + "html": "

Return the result of concatenating the string \"/session/\"\n with session’s session ID.

" + } + ] + }, + { + "name": "construct a WebSocket URL", + "href": "https://www.w3.org/TR/webdriver-bidi/#construct-a-websocket-url", + "html": "To construct a WebSocket URL given a WebSocket listener listener and session session:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let resource name be the result of construct a WebSocket\n resource name with session.

" + }, + { + "html": "

Return a WebSocket URI constructed with host set to listener’s host, port set to listener’s port, path set to resource name, following the wss-URI\n construct if listener’s secure flag is set and the ws-URL\n construct otherwise.

" + } + ] + }, + { + "name": "get a session ID for a WebSocket resource", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-a-session-id-for-a-websocket-resource", + "html": "To get a session ID for a WebSocket resource given resource name:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

If resource name doesn’t begin with the byte string\n \"/session/\", return null.

" + }, + { + "html": "

Let session id be the bytes in resource name following the\n \"/session/\" prefix.

" + }, + { + "html": "

If session id is not the string representation of a UUID, return null.

" + }, + { + "html": "

Return session id.

" + } + ] + }, + { + "name": "start listening for a WebSocket connection", + "href": "https://www.w3.org/TR/webdriver-bidi/#start-listening-for-a-websocket-connection", + "html": "To start listening for a WebSocket connection given a session session:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

If there is an existing WebSocket listener in active listeners which\n the remote end would like to reuse, let listener be that\n listener. Otherwise let listener be a new WebSocket listener with implementation-defined host, port, secure flag, and an empty list of WebSocket resources.

" + }, + { + "html": "

Let resource name be the result of construct a WebSocket\n resource name with session.

" + }, + { + "html": "

Append resource name to the list of WebSocket resources for listener.

" + }, + { + "html": "

Append listener to the remote end's active\n listeners.

" + }, + { + "html": "

Return listener.

" + } + ] + }, + { + "name": "handle an incoming message", + "href": "https://www.w3.org/TR/webdriver-bidi/#handle-an-incoming-message", + "html": "To handle an incoming message given a WebSocket connection connection, type type and data data:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

If type is not text, send an error\n response given connection, null, and invalid argument, and finally\n return.

" + }, + { + "html": "

Assert: data is a scalar value string, because the\n WebSocket handling errors in UTF-8-encoded data would already\n have failed the WebSocket\n connection otherwise.

" + }, + { + "html": "

If there is a BiDi Session associated with connection connection,\n let session be that session. Otherwise if connection is in WebSocket\n connections not associated with a session, let session be\n null. Otherwise, return.

" + }, + { + "html": "

Let parsed be the result of parsing JSON\n into Infra values given data. If this throws an exception, then send\n an error response given connection, null, and invalid argument, and\n finally return.

" + }, + { + "html": "

If session is not null and not in active sessions then return.

" + }, + { + "html": "Match parsed against the remote end definition. If this results in a\n match:", + "rationale": "let", + "steps": [ + { + "html": "

Let matched be the map representing the matched data.

" + }, + { + "html": "

Assert: matched contains \"id\", \"method\", and\n \"params\".

" + }, + { + "html": "

Let command id be matched[\"id\"].

" + }, + { + "html": "

Let method be matched[\"method\"]

" + }, + { + "html": "

Let command be the command with command name method.

" + }, + { + "html": "

If session is null and command is not a static command, then send an error response given connection, command id, and invalid\n session id, and return.

" + }, + { + "html": "Run the following steps in parallel:", + "rationale": "let", + "steps": [ + { + "html": "

Let result be the result of running the remote end steps for command given session and command parameters matched[\"params\"]

" + }, + { + "html": "

If result is an error, then send an error response given connection, command id, and result’s error code, and finally\n return.

" + }, + { + "html": "

Let value be result’s data.

" + }, + { + "html": "

Assert: value matches the definition for the result type corresponding to the command with command name method.

" + }, + { + "html": "

If method is \"session.new\", let session be the entry in\n the list of active sessions whose session ID is equal to the\n \"sessionId\" property of value, append connection to session’s session WebSocket connections, and\n remove connection from the WebSocket connections not associated with\n a session.

" + }, + { + "html": "

Let response be a new map matching the CommandResponse production in the local end definition with the id field set to command id and the value field set to value.

" + }, + { + "html": "

Let serialized be the result of serialize an infra value to JSON\n bytes given response.

" + }, + { + "html": "

Send a WebSocket message comprised of serialized over connection.

" + } + ] + } + ] + }, + { + "html": "Otherwise:", + "rationale": "let", + "steps": [ + { + "html": "

Let command id be null.

" + }, + { + "html": "

If parsed is a map and parsed[\"id\"] exists and is an\n integer greater than or equal to zero, set command id to that integer.

" + }, + { + "html": "

Let error code be invalid argument.

" + }, + { + "html": "

If parsed is a map and parsed[\"method\"] exists and is a\n string, but parsed[\"method\"] is not in the set of all\n command names, set error code to unknown command.

" + }, + { + "html": "

Send an error response given connection, command id, and error code.

" + } + ] + } + ] + }, + { + "name": "get related navigables", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-related-navigables", + "html": "To get related navigables given an settings object settings:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let related navigables be an empty set.

" + }, + { + "html": "

Let navigable be null.

" + }, + { + "html": "

If settingsrelevant global object is a Window, set navigable to relevant global object's associated Document’s node navigable.

\n

Otherwise if the global object specified by settings is a WorkerGlobalScope, for each owner in the global object's owner set, if owner is a Document, set navigable to owner’s node navigable.

" + }, + { + "html": "

If navigable is not null, append navigable to related navigables.

" + }, + { + "html": "

Return related navigables.

" + } + ] + }, + { + "name": "emit an event", + "href": "https://www.w3.org/TR/webdriver-bidi/#emit-an-event", + "html": "To emit an event given session, and body:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Assert: body has size 2 and contains \"method\"\n and \"params\".

" + }, + { + "html": "

Let serialized be the result of serialize an infra value to JSON\n bytes given body.

" + }, + { + "html": "For each connection in session’s session WebSocket connections:", + "rationale": "send", + "steps": [ + { + "html": "

Send a WebSocket message comprised of serialized over connection.

" + } + ] + } + ] + }, + { + "name": "send an error response", + "href": "https://www.w3.org/TR/webdriver-bidi/#send-an-error-response", + "html": "To send an error response given a WebSocket connection connection, command id, and error code:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let error data be a new map matching the ErrorResponse production in the local end definition, with the id field\n set to command id, the error field set to error code, the message field set to an implementation-defined string\n containing a human-readable definition of the error that occurred and the stacktrace field optionally set to an implementation-defined\n string containing a stack trace report of the active stack frames at the\n time when the error occurred.

" + }, + { + "html": "

Let response be the result of serialize an infra value to JSON bytes given error data.

" + }, + { + "html": "

Send a WebSocket message comprised of response over connection.

" + } + ] + }, + { + "name": "handle a connection closing", + "href": "https://www.w3.org/TR/webdriver-bidi/#handle-a-connection-closing", + "html": "To handle a connection closing given a WebSocket connection connection:", + "rationale": ".algorithm", + "steps": [ + { + "html": "If there is a BiDi session associated with connection connection:", + "rationale": "let", + "steps": [ + { + "html": "

Let session be the BiDi session associated with connection connection.

" + }, + { + "html": "

Remove connection from session’s session WebSocket\n connections.

" + } + ] + }, + { + "html": "

Otherwise, if WebSocket connections not associated with a session contains connection, remove connection from that set.

" + } + ] + }, + { + "name": "close the WebSocket connections", + "href": "https://www.w3.org/TR/webdriver-bidi/#close-the-websocket-connections", + "html": "To close the WebSocket connections given session:", + "rationale": ".algorithm", + "steps": [ + { + "html": "For each connection in session’s session WebSocket\n connections:", + "rationale": "start", + "steps": [ + { + "html": "

Start the WebSocket closing handshake with connection.

" + } + ] + } + ] + }, + { + "name": "webSocketUrl new session algorithm", + "html": "The WebDriver new session algorithm defined by this specification,\nwith parameters session, capabilities, and flags is:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

If flags contains \"bidi\", return.

" + }, + { + "html": "

Let webSocketUrl be the result of getting a property named\n \"webSocketUrl\" from capabilities.

" + }, + { + "html": "

If webSocketUrl is undefined, return.

" + }, + { + "html": "

Assert: webSocketUrl is true.

" + }, + { + "html": "

Let listener be the result of start listening for a WebSocket\n connection given session.

" + }, + { + "html": "

Set webSocketUrl to the result of construct a WebSocket\n URL with listener and session.

" + }, + { + "html": "

Set a property on capabilities named\n \"webSocketUrl\" to webSocketUrl.

" + }, + { + "html": "

Set session’s BiDi flag to true.

" + }, + { + "html": "

Append \"bidi\" to flags.

" + } + ] + }, + { + "name": "no HTTP new session", + "href": "https://www.w3.org/TR/webdriver-bidi/#supports-bidi-only-sessions", + "html": "Implementations should also allow clients to establish a BiDi Session which\nis not a HTTP Session. In this case the URL to the WebSocket server is\ncommunicated out-of-band. An implementation that allows this supports\nBiDi-only sessions. At the time such an implementation is ready to accept\nrequests to start a WebDriver session, it must:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Start listening for a WebSocket connection given null.

" + } + ] + }, + { + "name": "get or create a sandbox realm", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-or-create-a-sandbox-realm", + "html": "To get or create a sandbox realm given name and navigable:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

If name is an empty string, then return error with error code invalid argument.

" + }, + { + "html": "

Let window be navigable’s active window.

" + }, + { + "html": "

If sandbox map does not contain window, set sandbox map[window]\n to a new map.

" + }, + { + "html": "

Let sandboxes be sandbox map[window].

" + }, + { + "html": "

If sandboxes does not contain name, set sandboxes[name] to create\n a sandbox realm with navigable.

" + }, + { + "html": "

Return success with data sandboxes[name].

" + } + ] + }, + { + "name": "get a sandbox name", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-a-sandbox-name", + "html": "To get a sandbox name given target realm:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let realms maps be get the values of sandbox map.

" + }, + { + "html": "For each realms map in realms maps:", + "rationale": "for", + "steps": [ + { + "html": "For each namerealm in realms map:", + "rationale": "if", + "steps": [ + { + "html": "

If realm is target realm, return name.

" + } + ] + } + ] + }, + { + "html": "

Return null.

" + } + ] + }, + { + "name": "unwrapped", + "href": "https://www.w3.org/TR/webdriver-bidi/#unwrapped", + "html": "To get unwrapped object:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

While object is SandboxProxy or SandboxWindowProxy, set object to it’s\n wrapped object.

" + }, + { + "html": "

Return object.

" + } + ] + }, + { + "name": "get user context", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-user-context", + "html": "To get user context given user context id:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

For each user context in the set of user contexts:

" + }, + { + "html": "If user context’s user context id equals user context id:", + "rationale": "return", + "steps": [ + { + "html": "

Return user context.

" + } + ] + }, + { + "html": "

Return null.

" + } + ] + }, + { + "name": "end the session", + "href": "https://www.w3.org/TR/webdriver-bidi/#end-the-session", + "html": "To end the session given session:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Remove session from active sessions.

" + }, + { + "html": "

If active sessions is empty, set the webdriver-active flag to false.

" + } + ] + }, + { + "name": "cleanup the session", + "href": "https://www.w3.org/TR/webdriver-bidi/#cleanup-the-session", + "html": "To cleanup the session given session:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Close the WebSocket connections with session.

" + }, + { + "html": "

If active sessions is empty, cleanup remote end state.

" + }, + { + "html": "

Perform any implementation-specific cleanup steps.

" + } + ] + }, + { + "name": "cleanup remote end state", + "href": "https://www.w3.org/TR/webdriver-bidi/#cleanup-remote-end-state", + "html": "To cleanup remote end state.", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Clear the before request sent map.

" + }, + { + "html": "

Set the default cache behavior to \"default\".

" + }, + { + "html": "

Clear the navigable cache behavior map.

" + }, + { + "html": "

Perform implementation-defined steps to enable any\n implementation-specific resource caches that are usually enabled in the\n current remote end configuration.

" + } + ] + }, + { + "name": "update the event map", + "href": "https://www.w3.org/TR/webdriver-bidi/#update-the-event-map", + "html": "To update the event map, given session, requested event names, navigables, and enabled:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let global event set be a clone of the global event set for session.

" + }, + { + "html": "

Let event map be a new map.

" + }, + { + "html": "For each keyvalue of the navigable event map for session:", + "rationale": "set", + "steps": [ + { + "html": "

Set event map[key] to a clone of value.

" + } + ] + }, + { + "html": "

Let event names be an empty set.

" + }, + { + "html": "

For each entry name in requested event names,\n let event names be the union of event names and the result of trying to obtain a set of event names with name.

" + }, + { + "html": "

Let enabled events be a new map.

" + }, + { + "html": "If navigables is null:", + "rationale": "if", + "steps": [ + { + "html": "If enabled is true:", + "rationale": "for", + "steps": [ + { + "html": "For each event name of event names:", + "rationale": "if", + "steps": [ + { + "html": "If global event set doesn’t contain event name:", + "rationale": "let", + "steps": [ + { + "html": "

Let already enabled navigables be the event enabled navigables given session and event name.

" + }, + { + "html": "

Add event name to global event set.

" + }, + { + "html": "

For each navigable of already enabled navigables, remove event\n name from event map[navigable].

" + }, + { + "html": "

Let newly enabled contexts be a list of all top-level traversable that are not contained in already enabled navigables,

" + }, + { + "html": "

Set enabled events[event name] to newly enabled contexts.

" + } + ] + } + ] + } + ] + }, + { + "html": "If enabled is false:", + "rationale": "for", + "steps": [ + { + "html": "For each event name in event names:", + "rationale": "if", + "steps": [ + { + "html": "

If global event set contains event name, remove event\n name from global event set. Otherwise return error with error code invalid argument.

" + } + ] + } + ] + } + ] + }, + { + "html": "Otherwise, if navigables is not null:", + "rationale": "let", + "steps": [ + { + "html": "

Let targets be an empty map.

" + }, + { + "html": "For each navigable id in navigables:", + "rationale": "let", + "steps": [ + { + "html": "

Let navigable be the result of trying to get a navigable with navigable id.

" + }, + { + "html": "

Let top-level traversable be the top-level traversable for navigable.

" + }, + { + "html": "

If event map does not contain top-level traversable, set event\n map[top-level traversable] to a new set.

" + }, + { + "html": "

Set targets[top-level traversable] to event map[top-level traversable].

" + } + ] + }, + { + "html": "For each event name in event names:", + "rationale": "if", + "steps": [ + { + "html": "

If enabled is true and global event set contains event name, continue.

" + }, + { + "html": "For each navigabletarget in targets:", + "rationale": "if", + "steps": [ + { + "html": "If enabled is true and target does not contain event name:", + "rationale": "add", + "steps": [ + { + "html": "

Add event name to target.

" + }, + { + "html": "

If enabled events does not contain event name, set enabled\n events[event name] to a new set.

" + }, + { + "html": "

Append navigable to enabled events[event name].

" + } + ] + }, + { + "html": "If enabled is false:", + "rationale": "if", + "steps": [ + { + "html": "

If target contains event name, remove event name from target. Otherwise return error with error code invalid\n argument.

" + } + ] + } + ] + } + ] + } + ] + }, + { + "html": "

Set the global event set for session to global event set.

" + }, + { + "html": "

Set the navigable event map for session to event map.

" + }, + { + "html": "

Return success with data enabled events.

" + } + ] + }, + { + "name": "webSocketUrl capability deserialization algorithm", + "html": "The additional capability deserialization algorithm for the\n\"webSocketUrl\" capability, with parameter value is:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

If value is not a boolean, return error with code invalid argument.

" + }, + { + "html": "

Return success with data value.

" + } + ] + }, + { + "name": "webSocketUrl capability serialization algorithm", + "html": "The matched capability serialization algorithm for the \"webSocketUrl\" capability,\nwith parameter value is:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

If value is false, return success with data null.

" + }, + { + "html": "

Return success with data true.

" + } + ] + }, + { + "name": "remote end steps for session.status", + "html": "The remote end steps given session, and command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let body be a new map with the following properties:

\n
\n
\"ready\"\n
The remote end’s readiness state.\n
\"message\"\n
An implementation-defined string explaining the remote end’s readiness state.\n
" + }, + { + "html": "

Return success with data body

" + } + ] + }, + { + "name": "remote end steps for session.new", + "html": "The remote end steps given session and command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

If session is not null, return an error with error code session not created.

" + }, + { + "html": "

If the implementation is unable to start a new session for any reason, return\n an error with error code session not created.

" + }, + { + "html": "

Let flags be a set containing \"bidi\".

" + }, + { + "html": "

Let capabilities json be the result of trying to process capabilities with command parameters and flags.

" + }, + { + "html": "

Let capabilities be convert a JSON-derived JavaScript value to an Infra\n value with capabilities json.

" + }, + { + "html": "

Let session be the result of trying to create a session with capabilities and flags.

" + }, + { + "html": "

Set session’s BiDi flag to true.

" + }, + { + "html": "

Let body be a new map matching the session.NewResult production,\n with the sessionId field set to session’s session ID, and\n the capabilities field set to capabilities.

" + }, + { + "html": "

Return success with data body.

" + } + ] + }, + { + "name": "remote end steps for session.end", + "html": "The remote end steps given session and command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

End the session with session.

" + }, + { + "html": "Return success with data null, and in parallel run the following steps:", + "rationale": "wait", + "steps": [ + { + "html": "

Wait until the Send a WebSocket message steps have been called with the\n response to this command.

" + }, + { + "html": "

Cleanup the session with session.

" + } + ] + } + ] + }, + { + "name": "remote end steps for session.subscribe", + "html": "The remote end steps with session and command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let the list of event names be the value of the events field of command parameters

" + }, + { + "html": "

Let the list of navigables be the value of the contexts field of command parameters if it is present or null if it isn’t.

" + }, + { + "html": "

Let enabled events be the result of trying to update the event map with session, list of event names , list of navigables and\n enabled true.

" + }, + { + "html": "

Let subscribe step events be a new map.

" + }, + { + "html": "For each event namenavigables in enabled events:", + "rationale": "if", + "steps": [ + { + "html": "

If the event with event name event name defines remote end\n subscribe steps, set subscribe step events[event name] to navigables.

" + } + ] + }, + { + "html": "Sort in ascending order subscribe step events using the following less\n than algorithm given two entries with keys event name one and event\n name two:", + "rationale": "let", + "steps": [ + { + "html": "

Let event one be the event with name event name one

" + }, + { + "html": "

Let event two be the event with name event name two

" + }, + { + "html": "

Return true if event one’s subscribe priority is less than event\n two’s subscribe priority, or false otherwise.

" + } + ] + }, + { + "html": "

If list of navigables is null, let include global be true, otherwise let include global be false.

" + }, + { + "html": "For each event namenavigables in subscribe step events:", + "rationale": "run", + "steps": [ + { + "html": "

Run the remote end subscribe steps for the event with event name event name given session, navigables and include global.

" + } + ] + }, + { + "html": "

Return success with data null.

" + } + ] + }, + { + "name": "remote end steps for session.unsubscribe", + "html": "The remote end steps with session and command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let the list of event names be the value of the events field of command parameters.

" + }, + { + "html": "

Let the list of contexts be the value of the contexts field of command parameters if it is present or null if it isn’t.

" + }, + { + "html": "

Try to update the event map with session, list of event names, list of contexts and enabled false.

" + }, + { + "html": "

Return success with data null.

" + } + ] + }, + { + "name": "get the client window state", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-client-window-state", + "html": "To get the client window state given window:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let documents be an empty list.

" + }, + { + "html": "

Let visible documents be an empty list.

" + }, + { + "html": "For each top-level traversable traversable:", + "rationale": "if", + "steps": [ + { + "html": "

If traversable’s client window is not window then continue.

" + }, + { + "html": "

Let document be traversable’s active document.

" + }, + { + "html": "

Append document to documents.

" + }, + { + "html": "

If document’s visibility state is \"visible\", Append document to visible documents.

" + } + ] + }, + { + "html": "For each document in visible documents:", + "rationale": "if", + "steps": [ + { + "html": "

If document’s fullscreen element is not null, return\n \"fullscreen\".

" + } + ] + }, + { + "html": "

If visible documents is empty but documents is not empty, or if window is otherwise in an OS-specific minimized\n state, return \"minimized\".

" + }, + { + "html": "

If window is in an OS-specific maximized state return\n \"maximized\".

" + }, + { + "html": "

Return \"normal\".

" + } + ] + }, + { + "name": "set the client window state", + "href": "https://www.w3.org/TR/webdriver-bidi/#set-the-client-window-state", + "html": "To set the client window state given window and state:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let current state be get the client window state with window.

" + }, + { + "html": "

If current state is equal to state, return success with data null.

" + }, + { + "html": "

Switch on the value of state:

\n
\n
\"fullscreen\" \n
If not fullscreen is supported return error with error code unsupported operation. \n
\"normal\" \n
If not restore client window is supported for window return error with error code unsupported operation. \n
\"maximize\" \n
If not maximize client window is supported for window return error with error code unsupported operation. \n
\"minimize\" \n
If not minimize client window is supported for window return error with error code unsupported operation. \n
" + }, + { + "html": "

Let documents be an empty list.

" + }, + { + "html": "For each top-level traversable traversable:", + "rationale": "if", + "steps": [ + { + "html": "

If traversable’s associated client window is not window then\n continue.

" + }, + { + "html": "

Let document be traversable’s active document.

" + }, + { + "html": "

Append document to documents.

" + } + ] + }, + { + "html": "

If documents is empty return error with error code no such client window.

" + }, + { + "html": "If current state is \"fullscreen\":", + "rationale": "for", + "steps": [ + { + "html": "

For each document in documents:

", + "ignored": [ + "Fully exit fullscreen with document." + ] + } + ] + }, + { + "html": "

Switch on the value of state:

\n
\n
\"fullscreen\" \n
\n \n
\"normal\" \n
1. Restore the client window window. \n
\"maximize \n
1. Maximize the client window window. \n
\"minimize \n
1. Minimize the client window window. \n
", + "rationale": "for", + "steps": [ + { + "html": "For each document in documents:", + "rationale": "if", + "steps": [ + { + "html": "

If document’s visibility state is \"visible\", fullscreen an element with document’s document element.

" + }, + { + "html": "

Break.

" + } + ] + } + ] + }, + { + "html": "

Return success with data null.

" + } + ] + }, + { + "name": "get the client window info", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-client-window-info", + "html": "To get the client window info given client window:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let client window id be the client window id for client window.

" + }, + { + "html": "

Let state be get the client window state with client window.

" + }, + { + "html": "

If client window can receive keyboard input channeled from the operating\n system, let active be true, otherwise let active be false.

" + }, + { + "html": "

Let client window info be a map matching the browser.ClientWindowsInfo production with the clientWindow field set to client window id, state field set to state, the x field set to client window’s x-coordinate, the y field set to client\n window’s y-coordinate, the width field set to client window’s width, the height field\n set to client window’s height, and the active field set to active.

" + }, + { + "html": "

Return client window info

" + } + ] + }, + { + "name": "remote end steps for browser.close", + "html": "The remote end steps with session and command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

End the session with session.

" + }, + { + "html": "If active sessions is not empty an implementation may\n return error with error code unable to close browser, and then\n run the following steps in parallel:", + "rationale": "wait", + "steps": [ + { + "html": "

Wait until the Send a WebSocket message steps have been called with the\n response to this command.

" + }, + { + "html": "

Cleanup the session with session.

" + } + ] + }, + { + "html": "For each active session in active sessions:", + "rationale": "end", + "steps": [ + { + "html": "

End the session active session.

" + }, + { + "html": "

Cleanup the session with active session

" + } + ] + }, + { + "html": "Return success with data null, and run the following steps in parallel.", + "rationale": "wait", + "steps": [ + { + "html": "

Wait until the Send a WebSocket message steps have been called with the\n response to this command.

" + }, + { + "html": "

Cleanup the session with session.

" + }, + { + "html": "

Close any top-level traversables without prompting to unload.

" + }, + { + "html": "

Perform implementation defined steps to clean up resources associated with\n the remote end under automation.

" + } + ] + } + ] + }, + { + "name": "remote end steps for browser.createUserContext", + "html": "The remote end steps are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let user context be a new user context.

" + }, + { + "html": "

Append user context to the set of user contexts.

" + }, + { + "html": "

Let user context info be a map matching the browser.UserContextInfo production with the userContext field set to user context’s user context id.

" + }, + { + "html": "

Return success with data user context info.

" + } + ] + }, + { + "name": "remote end steps for browser.getClientWindows", + "html": "The remote end steps are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let client window ids be an empty set.

" + }, + { + "html": "

Let client windows be an empty list.

" + }, + { + "html": "For each top-level traversable traversable:", + "rationale": "let", + "steps": [ + { + "html": "

Let client window be traversable’s associated client window

" + }, + { + "html": "

Let client window id be the client window id for client window.

" + }, + { + "html": "

If client window ids contains client window id, continue.

" + }, + { + "html": "

Append client window id to client window ids.

" + }, + { + "html": "

Let client window info be get the client window info with client\n window.

" + }, + { + "html": "

Append client window info to client windows.

" + } + ] + }, + { + "html": "

Let result be a map matching the browser.GetClientWindowsResult production with the clientWindows field set to client windows.

" + }, + { + "html": "

Return success with data result.

" + } + ] + }, + { + "name": "remote end steps for browser.getUserContexts", + "html": "The remote end steps are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let user contexts be an empty list.

" + }, + { + "html": "For each user context in the set of user contexts:", + "rationale": "let", + "steps": [ + { + "html": "

Let user context info be a map matching the browser.UserContextInfo production with the userContext field set to user context’s user context id.

" + }, + { + "html": "

Append user context info to user contexts.

" + } + ] + }, + { + "html": "

Let result be a map matching the browser.GetUserContextsResult production with the userContexts field set to user contexts.

" + }, + { + "html": "

Return success with data result.

" + } + ] + }, + { + "name": "remote end steps for browser.removeUserContext", + "html": "The remote end steps with command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let user context id be command parameters[\"userContext\"].

" + }, + { + "html": "

If user context id is \"default\", return error with error\n code invalid argument.

" + }, + { + "html": "

Set user context to get user context with user context id.

" + }, + { + "html": "

If user context is null, return error with error code no such user context.

" + }, + { + "html": "For each top-level traversable navigable:", + "rationale": "if", + "steps": [ + { + "html": "If navigable’s associated user context is user context:", + "rationale": "close", + "steps": [ + { + "html": "

Close navigable without prompting to unload.

" + } + ] + } + ] + }, + { + "html": "

Remove user context for the set of user contexts.

" + }, + { + "html": "

Return success with data null.

" + } + ] + }, + { + "name": "remote end steps for browser.setClientWindowState", + "html": "The remote end steps with session and command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

If the implementation does not support setting the client window state at\n all, then return error with error code unsupported operation.

" + }, + { + "html": "

If there is a client window with client window id command\n parameters[\"clientWindow\"], let client window be that client\n window. Otherwise return error with error code no such client window.

" + }, + { + "html": "

Try to set the client window state with client window and command\n parameters[\"state\"].

" + }, + { + "html": "If command parameters[\"state\"] is \"normal\":", + "rationale": "if", + "steps": [ + { + "html": "

If command parameters contains \"x\" and the\n implementation supports positioning client windows, set the x-coordinate of client window to a value that is as close as\n possible command parameters[\"x\"].

" + }, + { + "html": "

If command parameters contains \"y\" and the\n implementation supports positioning client windows, set the y-coordinate of client window to a value that is as close as\n possible command parameters[\"y\"].

" + }, + { + "html": "

If command parameters contains \"width\" and the\n implementation supports resizing client windows, set the width of client window to a value that is as close as possible command parameters[\"width\"].

" + }, + { + "html": "

If command parameters contains \"width\" and the\n implementation supports resizing client windows, set the width of client window to a value that is as close as possible command parameters[\"width\"].

" + } + ] + }, + { + "html": "

Let client window info be get the client window info with client window.

" + }, + { + "html": "

Return success with data client window info.

" + } + ] + }, + { + "name": "get a navigable", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-a-navigable", + "html": "To get a navigable given navigable id:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

If navigable id is null, return success with data null.

" + }, + { + "html": "

If there is no navigable with navigable id navigable id return error with error code no such frame

" + }, + { + "html": "

Let navigable be the navigable with id navigable id.

" + }, + { + "html": "

Return success with data navigable.

" + } + ] + }, + { + "name": "get the parent navigable", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-parent-navigable", + "html": "To get the parent navigable given navigable:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let parent navigable be navigable’s parent.

" + }, + { + "html": "

If parent navigable is null, then return null.

" + }, + { + "html": "

Return parent navigable.

" + } + ] + }, + { + "name": "get the child navigables", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-child-navigables", + "html": "To get the child navigables given navigable: \n

TODO: make this return a list in document order

", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let child navigables be a set containing all navigables that are\n a child navigable of navigable.

" + }, + { + "html": "

Return child navigables.

" + } + ] + }, + { + "name": "get the navigable info", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-navigable-info", + "html": "To get the navigable info given navigable, max depth and include parent id:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let navigable id be the navigable id for navigable.

" + }, + { + "html": "

Let navigable be get the parent navigable given navigable.

" + }, + { + "html": "

If navigable is not null let parent id be the navigable id of navigable. Otherwise let parent id be null.

" + }, + { + "html": "

Let document be navigable’s active document.

" + }, + { + "html": "

Let url be the result of running the URL serializer, given document’s URL.

" + }, + { + "html": "

Let child infos be null.

" + }, + { + "html": "If max depth is null, or max depth is greater than 0:", + "rationale": "let", + "steps": [ + { + "html": "

Let child navigables be get the child navigables given navigable.

" + }, + { + "html": "

Let child depth be max depth - 1 if max depth is not null, or null otherwise.

" + }, + { + "html": "

Set child infos to an empty list.

" + }, + { + "html": "For each child navigable of child navigables:", + "rationale": "let", + "steps": [ + { + "html": "

Let info be the result of get the navigable info given child navigable, child depth, and false.

" + }, + { + "html": "

Append info to child infos

" + } + ] + } + ] + }, + { + "html": "

Let user context be navigable’s associated user context.

" + }, + { + "html": "

Let opener id be the navigable id for navigable’s original opener, if navigable’s original opener is not null,\n and null otherwise.

" + }, + { + "html": "

Let top-level traversable be navigable’s top-level\n traversable.

" + }, + { + "html": "

Let client window id be the client window id for top-level\n traversable’s associated client window.

" + }, + { + "html": "

Let navigable info be a map matching the browsingContext.Info production with the context field set to navigable id, the parent field set to parent id if include parent id is true, or unset otherwise, the url field set to url, the userContext field set\n to user context’s user context id, originalOpener field\n set to opener id, the children field set to child infos, and\n the clientWindow field set to client window id.

" + }, + { + "html": "

Return navigable info.

" + } + ] + }, + { + "name": "await a navigation", + "href": "https://www.w3.org/TR/webdriver-bidi/#await-a-navigation", + "html": "To await a navigation given navigable, request, wait condition, and optionally history handling (default: \"default\") and ignore cache (default: false):", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let navigation id be the string representation of a UUID based on truly random, or pseudo-random numbers.

" + }, + { + "html": "

Navigate navigable with resource request, and using navigable’s active document as the source Document, with navigation id navigation id, and history\n handling behavior history handling. If ignore cache is true,\n the navigation must not load resources from the HTTP cache.

" + }, + { + "html": "

Let (event received, navigate status) be await given\n «\"navigation started\", \"navigation failed\",\n \"fragment navigated\"», and navigation id.

" + }, + { + "html": "

Assert: navigate status’s id is navigation id.

" + }, + { + "html": "If navigate status’s status is \"complete\":", + "rationale": "let", + "steps": [ + { + "html": "

Let body be a map matching the browsingContext.NavigateResult production, with the navigation field set to navigation id, and the url field set to the result of the URL serializer given navigate status’s url.

" + }, + { + "html": "

Return success with data body.

" + } + ] + }, + { + "html": "

If navigate status’s status is \"canceled\" return error with error code unknown error.

\n

TODO: is this the right way to handle errors here?

" + }, + { + "html": "

Assert: navigate status’s status is \"pending\" and navigation id is not null.

" + }, + { + "html": "If wait condition is \"none\":", + "rationale": "let", + "steps": [ + { + "html": "

Let body be a map matching the browsingContext.NavigateResult production, with the navigation field set to navigation id, and the url field set to the result of the URL serializer given navigate status’s url.

" + }, + { + "html": "

Return success with data body.

" + } + ] + }, + { + "html": "

If wait condition is \"interactive\", let event name be\n \"domContentLoaded\", otherwise let event name be\n \"load\".

" + }, + { + "html": "

Let (event received, status) be await given «event name,\n \"download started\", \"navigation aborted\",\n \"navigation failed\"» and navigation id.

" + }, + { + "html": "

If event received is \"navigation failed\"\n return error with error code unknown error.

" + }, + { + "html": "

Let body be a map matching the browsingContext.NavigateResult production, with the navigation field set to status’s id, and the url field set to the result of the URL serializer given status’s url.

" + }, + { + "html": "

Return success with data body.

" + } + ] + }, + { + "name": "get the navigation info", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-navigation-info", + "html": "To get the navigation info, given navigable and navigation status:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let navigable id be the navigable id for navigable.

" + }, + { + "html": "

Let navigation id be navigation status’s id.

" + }, + { + "html": "

Let timestamp be a time value representing the current date and time in UTC.

" + }, + { + "html": "

Let url be navigation status’s url.

" + }, + { + "html": "

Return a map matching the browsingContext.NavigationInfo production, with the context field set to navigable id, the navigation field set to navigation id, the timestamp field set to timestamp, and the url field set to the result of the URL serializer given url.

" + } + ] + }, + { + "name": "remote end steps for browsingContext.activate", + "html": "The remote end steps with command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let navigable id be the value of the command parameters[\"context\"] field.

" + }, + { + "html": "

Let navigable be the result of trying to get a navigable with navigable id.

" + }, + { + "html": "

If navigable is not a top-level traversable, return error with error code invalid argument.

" + }, + { + "html": "

Return activate a navigable with navigable.

" + } + ] + }, + { + "name": "activate a navigable", + "href": "https://www.w3.org/TR/webdriver-bidi/#activate-a-navigable", + "html": "To activate a navigable given navigable:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Run implementation-specific steps so that navigable’s system visibility state becomes visible. If this is not possible return error with error code unsupported operation.

" + }, + { + "html": "

Run implementation-specific steps to set the system focus on the navigable if it is not focused.

" + }, + { + "html": "

Return success with data null.

" + } + ] + }, + { + "name": "normalize rect", + "href": "https://www.w3.org/TR/webdriver-bidi/#normalize-rect", + "html": "To normalize rect given rect:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let x be rect’s x coordinate.

" + }, + { + "html": "

Let y be rect’s y coordinate.

" + }, + { + "html": "

Let width be rect’s width dimension.

" + }, + { + "html": "

Let height be rect’s height dimension.

" + }, + { + "html": "

If width is less than 0, set x to x + width and then set width to\n -width.

" + }, + { + "html": "

If height is less than 0, set y to y + height and then set height to -height.

" + }, + { + "html": "

Return a new DOMRectReadOnly with x coordinate x, y coordinate y, width dimension width and height dimension height.

" + } + ] + }, + { + "name": "rectangle intersection", + "href": "https://www.w3.org/TR/webdriver-bidi/#rectangle-intersection", + "html": "To rectangle intersection given rect1 and rect2", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let rect1 be normalize rect with rect1.

" + }, + { + "html": "

Let rect2 be normalize rect with rect2.

" + }, + { + "html": "

Let x1_0 be rect1’s x coordinate.

" + }, + { + "html": "

Let x2_0 be rect2’s x coordinate.

" + }, + { + "html": "

Let x1_1 be rect1’s x coordinate plus rect1’s width dimension.

" + }, + { + "html": "

Let x2_1 be rect2’s x coordinate plus rect2’s width dimension.

" + }, + { + "html": "

Let x_0 be the maximum element of «x1_0, x2_0».

" + }, + { + "html": "

Let x_1 be the minimum element of «x1_1, x2_1».

" + }, + { + "html": "

Let y1_0 be rect1’s y coordinate.

" + }, + { + "html": "

Let y2_0 be rect2’s y coordinate.

" + }, + { + "html": "

Let y1_1 be rect1’s y coordinate plus rect1’s height dimension.

" + }, + { + "html": "

Let y2_1 be rect2’s y coordinate plus rect2’s height dimension.

" + }, + { + "html": "

Let y_0 be the maximum element of «y1_0, y2_0».

" + }, + { + "html": "

Let y_1 be the minimum element of «y1_1, y2_1».

" + }, + { + "html": "

If x_1 is less than x_0, let width be 0. Otherwise let width be x_1 - x_0.

" + }, + { + "html": "

If y_1 is less than y_0, let height be 0. Otherwise let height be y_1 - y_0.

" + }, + { + "html": "

Return a new DOMRectReadOnly with x coordinate x_0, y coordinate y_0, width dimension width and height dimension height.

" + } + ] + }, + { + "name": "render document to a canvas", + "href": "https://www.w3.org/TR/webdriver-bidi/#render-document-to-a-canvas", + "html": "To render document to a canvas given document and rect:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let ratio be determine the device pixel ratio given document’s default view.

" + }, + { + "html": "

Let paint width be rect’s width dimension multiplied by ratio,\n rounded to the nearest integer, so it matches the width of rect in device\n pixels.

" + }, + { + "html": "

Let paint height be rect’s height dimension multiplied by ratio,\n rounded to the nearest integer, so it matches the height of rect in device\n pixels.

" + }, + { + "html": "

Let canvas be a new HTMLCanvasElement with width paint\n width and height paint height.

" + }, + { + "html": "

Let canvas context be the result of running the 2D context creation algorithm with canvas and null.

" + }, + { + "html": "

Set canvas’s context mode to 2D.

" + }, + { + "html": "

Complete implementation specific steps equivalent to drawing the region of\n the framebuffer representing the region of document covered by rect to canvas context, such that each pixel in the framebuffer corresponds to a pixel in canvas context with (rect’s x coordinate, rect’s y coordinate) in\n viewport coordinates corresponding to (0,0) in canvas context and (rect’s x coordinate + rect’s width dimension, rect’s y coordinate + rect’s height dimension) corresponding to (paint\n width, paint height).

" + }, + { + "html": "

Return canvas.

" + } + ] + }, + { + "name": "encode a canvas as Base64", + "href": "https://www.w3.org/TR/webdriver-bidi/#encode-a-canvas-as-base64", + "html": "To encode a canvas as Base64 given canvas and format:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

If format is not null, let type be the type field of format, and let quality be the quality field of format.

" + }, + { + "html": "

Otherwise, let type be \"image/png\" and let quality be undefined.

" + }, + { + "html": "

Let file be a serialization of the bitmap as a file for canvas with type and quality.

" + }, + { + "html": "

Let encoded string be the forgiving-base64 encode of file.

" + }, + { + "html": "

Return success with data encoded string.

" + } + ] + }, + { + "name": "get the origin rectangle", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-origin-rectangle", + "html": "To get the origin rectangle given document and origin:", + "rationale": ".algorithm", + "steps": [ + { + "html": "If origin is \"viewport\":", + "rationale": "let", + "steps": [ + { + "html": "

Let viewport be document’s visual viewport.

" + }, + { + "html": "

Let viewport rect be a DOMRectReadOnly with x coordinate viewport page left, y coordinate viewport page top, width dimension viewport width, and height dimension viewport height.

" + }, + { + "html": "

Return success with data viewport rect.

" + } + ] + }, + { + "html": "

Assert: origin is \"document\".

" + }, + { + "html": "

Let document element be the document element for document.

" + }, + { + "html": "

Let document rect be a DOMRectReadOnly with x coordinate 0, y\n coordinate 0, width dimension document element scroll height,\n and height dimension document element scroll width.

" + }, + { + "html": "

Return success with data document rect.

" + } + ] + }, + { + "html": "The remote end steps with session and command parameters are:", + "rationale": "let", + "steps": [ + { + "html": "

Let navigable id be the value of the context field of command parameters if present, or null otherwise.

" + }, + { + "html": "

Let navigable be the result of trying to get a navigable with navigable id.

" + }, + { + "html": "

If the implementation is unable to capture a screenshot of navigable for any\n reason then return error with error code unsupported operation.

" + }, + { + "html": "

Let document be navigable’s active document.

" + }, + { + "html": "

Immediately after the next invocation of the run the animation frame\n callbacks algorithm for document:

" + }, + { + "html": "

Let origin be the value of the context field of command\n parameters if present, or \"viewport\" otherwise.

" + }, + { + "html": "

Let origin rect be the result of trying to get the origin rectangle given origin and document.

" + }, + { + "html": "

Let clip rect be origin rect.

" + }, + { + "html": "If command parameters contains \"clip\":", + "rationale": "let", + "steps": [ + { + "html": "

Let clip be command parameters[\"clip\"].

" + }, + { + "html": "

Run the steps under the first matching condition:

\n
\n
clip matches the browsingContext.ElementClipRectangle production: \n
\n \n
clip matches the browsingContext.BoxClipRectangle production: \n
\n \n
", + "rationale": "let", + "steps": [ + { + "html": "

Let environment settings be the environment settings object whose relevant global object's associated Document is document.

" + }, + { + "html": "

Let realm be environment settingsrealm execution context's\n Realm component.

" + }, + { + "html": "

Let element be the result of trying to deserialize remote reference with clip[\"element\"], realm, and session.

" + }, + { + "html": "

If element doesn’t implement Element return error with error code no such element.

" + }, + { + "html": "

If element’s node document is not document, return error with error code no such element.

" + }, + { + "html": "

Let viewport rect be get the origin rectangle given\n \"viewport\" and document.

" + }, + { + "html": "

Let element rect be get the bounding box for element.

" + }, + { + "html": "

Let clip rect be a DOMRectReadOnly with x coordinate element rect[\"x\"] + viewport rect[\"x\"]|, y coordinate element rect[\"y\"] + viewport\n rect[\"y\"], width element rect[\"width\"],\n and height element rect[\"height\"].

" + } + ], + "additional": [ + { + "html": "", + "rationale": "let", + "steps": [ + { + "html": "

Let clip x be clip[\"x\"] plus origin rect’s x\n coordinate.

" + }, + { + "html": "

Let clip y be clip[\"y\"] plus origin rect’s y\n coordinate.

" + }, + { + "html": "

Let clip rect be a DOMRectReadOnly with x coordinate clip x, y coordinate clip y, width clip[\"width\"], and height clip[\"height\"].

" + } + ] + } + ] + } + ] + }, + { + "html": "" + }, + { + "html": "

Let rect be the rectangle intersection of origin rect and clip rect.

" + }, + { + "html": "

If rect’s width dimension is 0 or rect’s height dimension is 0,\n return error with error code unable to capture screen.

" + }, + { + "html": "

Let canvas be render document to a canvas with document and rect.

" + }, + { + "html": "

Let format be the format field of command parameters.

" + }, + { + "html": "

Let encoding result be the result of trying to encode a canvas as\n Base64 with canvas and format.

" + }, + { + "html": "

Let body be a map matching the browsingContext.CaptureScreenshotResult production, with the data field set to encoding result.

" + }, + { + "html": "

Return success with data body.

" + } + ] + }, + { + "name": "remote end steps for browsingContext.close", + "html": "The remote end steps with command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let navigable id be the value of the context field of command parameters.

" + }, + { + "html": "

Let prompt unload be the value of the promptUnload field of command parameters.

" + }, + { + "html": "

Let navigable be the result of trying to get a navigable with navigable id.

" + }, + { + "html": "

Assert: navigable is not null.

" + }, + { + "html": "

If navigable is not a top-level traversable, return error with error code invalid argument.

" + }, + { + "html": "If prompt unload is true:", + "rationale": "close", + "steps": [ + { + "html": "

Close navigable.

" + } + ] + }, + { + "html": "Otherwise:", + "rationale": "close", + "steps": [ + { + "html": "

Close navigable without prompting to unload.

" + } + ] + }, + { + "html": "

Return success with data null.

" + } + ] + }, + { + "name": "remote end steps for browsingContext.create", + "html": "The remote end steps with command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let type be the value of the type field of command parameters.

" + }, + { + "html": "

Let reference navigable id be the value of the referenceContext field of command parameters, if present, or null otherwise.

" + }, + { + "html": "

If reference navigable id is not null, let reference navigable be the\n result of trying to get a navigable with reference navigable id. Otherwise let reference navigable be null.

" + }, + { + "html": "

If reference navigable is not null and is not a top-level traversable,\nreturn error with error code invalid argument.

" + }, + { + "html": "

If the implementation is unable to create a new top-level traversable for any\n reason then return error with error code unsupported operation.

" + }, + { + "html": "

Let user context be the default user context if reference navigable is null, and reference navigableassociated user context otherwise.

" + }, + { + "html": "

Let user context id be the value of the userContext field of command parameters if present, or null otherwise.

" + }, + { + "html": "

If user context id is not null, set user context to the result of trying to get user context with user context id.

" + }, + { + "html": "

If user context is null, return error with error code no such user context.

" + }, + { + "html": "

If the implementation is unable to create a new top-level traversable with associated user context user context for any reason, return error with error code unsupported operation.

" + }, + { + "html": "

Let traversable be the result of trying to create a new top-level traversable steps with null and empty string,\n and setting the associated user context for the newly created top-level traversable to user context.\n Which OS window the new top-level traversable is created in depends on type and reference navigable:

\n " + }, + { + "html": "If the value of the command parametersbackground field is false:", + "rationale": "let", + "steps": [ + { + "html": "

Let activate result be the result of activate a navigable with the newly created navigable.

" + }, + { + "html": "

If activate result is an error, return activate result.

" + } + ] + }, + { + "html": "

Let body be a map matching the browsingContext.CreateResult production, with the context field set to traversable’s navigable id.

" + }, + { + "html": "

Return success with data body.

" + } + ] + }, + { + "name": "remote end steps for browsingContext.getTree", + "html": "The remote end steps with session and command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let root id be the value of the root field of command parameters if present, or null otherwise.

" + }, + { + "html": "

Let max depth be the value of the maxDepth field of command\n parameters if present, or null otherwise.

" + }, + { + "html": "

Let navigables be an empty list.

" + }, + { + "html": "

If root id is not null, append the result of trying to get a navigable given root id to navigables.\n Otherwise append all top-level traversables to navigables.

" + }, + { + "html": "

Let navigables infos be an empty list.

" + }, + { + "html": "For each navigable of navigables:", + "rationale": "let", + "steps": [ + { + "html": "

Let info be the result of get the navigable info given navigable, max depth, and true.

" + }, + { + "html": "

Append info to navigables infos

" + } + ] + }, + { + "html": "

Let body be a map matching the browsingContext.GetTreeResult production, with the contexts field set to navigables infos.

" + }, + { + "html": "

Return success with data body.

" + } + ] + }, + { + "name": "remote end steps for browsingContext.handleUserPrompt", + "html": "The remote end steps with session and command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let navigable id be the value of the context field of command parameters.

" + }, + { + "html": "

Let navigable be the result of trying to get a navigable with navigable id.

" + }, + { + "html": "

Let accept be the value of the accept field of command\n parameters if present, or true otherwise.

" + }, + { + "html": "

Let userText be the value of the userText field of command\n parameters if present, or the empty string otherwise.

" + }, + { + "html": "

If navigable is currently showing a simple dialog from a call to alert then\n acknowledge the prompt.

\n

Otherwise if navigable is currently showing a simple dialog from a call to confirm, then respond positively if accept is true, or respond\n negatively if accept is false.

\n

Otherwise if navigable is currently showing a simple dialog from a call to prompt, then respond with the string value userText if accept is\n true, or abort if accept is false.

\n

Otherwise, if navigable is currently showing a prompt as part of the prompt\n to unload steps, then confirm the navigation if accept is true, otherwise\n refuse the navigation.

\n

Otherwise return error with error code no such alert.

" + }, + { + "html": "

Return success with data null.

" + } + ] + }, + { + "name": "locate nodes using CSS", + "href": "https://www.w3.org/TR/webdriver-bidi/#locate-nodes-using-css", + "html": "To locate nodes using CSS with given navigable, context nodes, selector, maximum returned node count, and session:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let returned nodes be an empty list.

" + }, + { + "html": "

Let parse result be the result of parse a selector given selector.

" + }, + { + "html": "

If parse result is failure, return error with error code invalid selector.

" + }, + { + "html": "For each context node of context nodes:", + "rationale": "let", + "steps": [ + { + "html": "

Let elements be the result of match a selector against a tree with parse result and navigable’s active document root using scoping root context node.

" + }, + { + "html": "For each element in elements:", + "rationale": "append", + "steps": [ + { + "html": "

Append element to returned nodes.

" + }, + { + "html": "

If maximum returned node count is not null and size of returned nodes is equal to maximum returned node count,\n return success with data returned nodes.

" + } + ] + } + ] + }, + { + "html": "

Return success with data returned nodes.

" + } + ] + }, + { + "name": "locate nodes using XPath", + "href": "https://www.w3.org/TR/webdriver-bidi/#locate-nodes-using-xpath", + "html": "To locate nodes using XPath with given navigable, context nodes, selector, and maximum returned node count:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let returned nodes be an empty list.

" + }, + { + "html": "For each context node of context nodes:", + "rationale": "let", + "steps": [ + { + "html": "

Let evaluate result be the result of calling evaluate on navigable’s active document, with arguments selector, context node, null, ORDERED_NODE_SNAPSHOT_TYPE, and null. If this throws a \"SyntaxError\" DOMException, return error with error code invalid selector;\n otherwise, if this throws any other exception return error with error code unknown error.

" + }, + { + "html": "

Let index be 0.

" + }, + { + "html": "

Let length be the result of getting the snapshotLength property\n from evaluate result.

" + }, + { + "html": "Repeat, while index is less than length:", + "rationale": "let", + "steps": [ + { + "html": "

Let node be the result of calling snapshotItem with evaluate result as this and index as the argument.

" + }, + { + "html": "

Append node to returned nodes.

" + }, + { + "html": "

If maximum returned node count not null and size of returned nodes is equal to maximum returned node count,\n return success with data returned nodes.

" + }, + { + "html": "

Set index to index + 1.

" + } + ] + } + ] + }, + { + "html": "

Return success with data returned nodes.

" + } + ] + }, + { + "name": "locate nodes using inner text", + "href": "https://www.w3.org/TR/webdriver-bidi/#locate-nodes-using-inner-text", + "html": "To locate nodes using inner text with given context nodes, selector, max depth, match type, ignore case, and maximum returned node count:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

If selector is the empty string, return error with error code invalid selector.

" + }, + { + "html": "

Let returned nodes be an empty list.

" + }, + { + "html": "

If ignore case is false, let search text be selector. Otherwise, let search text be the result of toUppercase with selector according\n to the Unicode Default Case Conversion algorithm.

" + }, + { + "html": "For each context node in context nodes:", + "rationale": "if", + "steps": [ + { + "html": "If context node implements Document or DocumentFragment:", + "rationale": "let", + "steps": [ + { + "html": "

Let child nodes be an empty list.

" + }, + { + "html": "For each node child in the children of context node.", + "rationale": "append", + "steps": [ + { + "html": "

Append child to child nodes.

" + } + ] + }, + { + "html": "

Extend returned nodes with the result of trying to locate nodes using inner text with child nodes, selector, max depth, match type, ignore case, and maximum returned node count.

" + } + ] + }, + { + "html": "

If context node does not implement HTMLElement then continue.

" + }, + { + "html": "

Let node inner text be the result of calling the innerText getter steps with context node as the this value.

" + }, + { + "html": "

If ignore case is false, let node text be node inner text. Otherwise,\n let node text be the result of toUppercase with node inner text according to the Unicode Default Case Conversion algorithm.

" + }, + { + "html": "If search text is a code point substring of node text, perform the\n following steps:", + "rationale": "let", + "steps": [ + { + "html": "Let child nodes be an empty list and, for each node child in the children of context node:", + "rationale": "append", + "steps": [ + { + "html": "

Append child to child nodes.

" + } + ] + }, + { + "html": "If size of child nodes is equal to 0 or max depth is equal to 0,\n perform the following steps:", + "rationale": "if", + "steps": [ + { + "html": "

If match type is \"full\" and node text is search text, append context node to returned nodes.

" + }, + { + "html": "

Otherwise, if match type is \"partial\", append context node to returned nodes.

" + } + ] + }, + { + "html": "Otherwise, perform the following steps:", + "rationale": "let", + "steps": [ + { + "html": "

Let child max depth be null if max depth is null, or max depth - 1 otherwise.

" + }, + { + "html": "

Let child node matches be the result of locate nodes using inner text with child nodes, selector, child max depth , match type, ignore case, and maximum returned node count.

" + }, + { + "html": "

If size of child node matches is equal to 0 and match type is \"partial\", append context node to returned nodes. Otherwise, extend returned nodes with child node matches.

" + } + ] + } + ] + } + ] + }, + { + "html": "

If maximum returned node count is not null, remove all entries\n in returned nodes with an index greater than or equal to maximum returned\n node count.

" + }, + { + "html": "

Return success with data returned nodes.

" + } + ] + }, + { + "name": "collect nodes using accessibility attributes", + "href": "https://www.w3.org/TR/webdriver-bidi/#collect-nodes-using-accessibility-attributes", + "html": "To collect nodes using accessibility attributes with given context nodes, selector, maximum returned node count, and returned nodes:", + "rationale": ".algorithm", + "steps": [ + { + "html": "If returned nodes is null:", + "rationale": "set", + "steps": [ + { + "html": "

Set returned nodes to an empty list.

" + } + ] + }, + { + "html": "For each context node in context nodes:", + "rationale": "let", + "steps": [ + { + "html": "

Let match be true.

" + }, + { + "html": "If context node implements Element:", + "rationale": "if", + "steps": [ + { + "html": "If selector contains \"role\":", + "rationale": "let", + "steps": [ + { + "html": "

Let role be the computed role of context node.

" + }, + { + "html": "If selector[\"role\"] is not role:", + "rationale": "set", + "steps": [ + { + "html": "

Set match to false.

" + } + ] + } + ] + }, + { + "html": "If selector contains \"name\":", + "rationale": "let", + "steps": [ + { + "html": "

Let name be the accessible name of context node.

" + }, + { + "html": "If selector[\"name\"] is not name:", + "rationale": "set", + "steps": [ + { + "html": "

Set match to false.

" + } + ] + } + ] + } + ] + }, + { + "html": "

Otherwise, set match to false.

" + }, + { + "html": "If match is true:", + "rationale": "if", + "steps": [ + { + "html": "

If maximum returned node count is not null and size of returned\nnodes is equal to maximum returned node count, break.

" + }, + { + "html": "

Append context node to returned nodes.

" + } + ] + }, + { + "html": "Let child nodes be an empty list and, for each node child in the children of context node:", + "rationale": "if", + "steps": [ + { + "html": "

If child implements Element, append child to child nodes.

" + } + ] + }, + { + "html": "

Try to collect nodes using accessibility attributes with child nodes, selector, maximum returned node count, and returned nodes.

" + } + ] + }, + { + "html": "

Return returned nodes.

" + } + ] + }, + { + "name": "locate nodes using accessibility attributes", + "href": "https://www.w3.org/TR/webdriver-bidi/#locate-nodes-using-accessibility-attributes", + "html": "To locate nodes using accessibility attributes with given context nodes, selector, and maximum returned node count:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

If selector does not contain \"role\" and selector does not contain \"name\", return error with error code invalid selector.

" + }, + { + "html": "

Return the result of collect nodes using accessibility attributes with context nodes, selector, maximum returned node count, and null.

" + } + ] + }, + { + "name": "remote end steps for browsingContext.locateNodes", + "html": "The remote end steps with session and command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let navigable id be command parameters[\"context\"].

" + }, + { + "html": "

Let navigable be the result of trying to get a navigable with navigable id.

" + }, + { + "html": "

Assert: navigable is not null.

" + }, + { + "html": "

Let realm be the result of trying to get a realm from a navigable with navigable id of navigable and null.

" + }, + { + "html": "

Let locator be command parameters[\"locator\"].

" + }, + { + "html": "

If command parameters contains \"startNodes\", let start nodes parameter be command parameters[\"startNodes\"].\n Otherwise let start nodes parameter be null.

" + }, + { + "html": "

If command parameters contains \"maxNodeCount\", let maximum returned node count be command parameters[\"maxNodeCount\"].\n Otherwise, let maximum returned node count be null.

" + }, + { + "html": "

Let context nodes be an empty list.

" + }, + { + "html": "If start nodes parameter is null, append the document element of navigable’s active document to context nodes. Otherwise, for each serialized start node in start nodes parameter:", + "rationale": "let", + "steps": [ + { + "html": "

Let start node be the result of trying to deserialize shared reference given serialized start node, realm and session.

" + }, + { + "html": "

Append start node to context nodes.

" + } + ] + }, + { + "html": "

Assert size of context nodes is greater than 0.

" + }, + { + "html": "

Let type be locator[\"type\"].

" + }, + { + "html": "

In the following list of conditions and associated steps, run the first set\n of steps for which the associated condition is true:

\n
\n
type is the string \"css\" \n
\n \n
type is the string \"xpath\" \n
\n \n
type is the string \"innerText\" \n
\n \n
type is the string \"accessibility\" \n
\n \n
", + "rationale": "let", + "steps": [ + { + "html": "

Let selector be locator[\"value\"].

" + }, + { + "html": "

Let result nodes be a result of trying to locate nodes using css given navigable, context nodes, selector and maximum returned\n nodes.

" + } + ], + "additional": [ + { + "html": "", + "rationale": "let", + "steps": [ + { + "html": "

Let selector be locator[\"value\"].

" + }, + { + "html": "

Let result nodes be a result of trying to locate nodes using xpath given navigable, context nodes, selector and maximum returned\n nodes.

" + } + ] + }, + { + "html": "", + "rationale": "let", + "steps": [ + { + "html": "

Let selector be locator[\"value\"].

" + }, + { + "html": "

If locator contains maxDepth, let max depth be locator[\"maxDepth\"]. Otherwise, let max depth be null.

" + }, + { + "html": "

If locator contains ignoreCase, let ignore case be locator[\"ignoreCase\"]. Otherwise, let ignore case be false.

" + }, + { + "html": "

If locator contains matchType, let match type be locator[\"matchType\"]. Otherwise, let match type be \"full\".

" + }, + { + "html": "

Let result nodes be a result of trying to locate nodes using inner text given context nodes, selector, max depth, match type, ignore case and maximum returned node count.

" + } + ] + }, + { + "html": "", + "rationale": "let", + "steps": [ + { + "html": "

Let selector be locator[\"value\"].

" + }, + { + "html": "

Let result nodes be locate nodes using accessibility attributes given context nodes, selector, and maximum returned node count.

" + } + ] + } + ] + }, + { + "html": "

Assert: maximum returned node count is null or size of result nodes is less\n than or equal to maximum returned node count.

" + }, + { + "html": "

If command parameters contains \"serializationOptions\",\n let serialization options be command parameters[\"serializationOptions\"].\n Otherwise, let serialization options be a map matching the script.SerializationOptions production with the fields\n set to their default values.

" + }, + { + "html": "

Let result ownership be \"none\".

" + }, + { + "html": "

Let serialized nodes be an empty list.

" + }, + { + "html": "For each result node in result nodes:", + "rationale": "let", + "steps": [ + { + "html": "

Let serialized node be the result of serialize as a remote value with result node, serialization options, result ownership, a new map as serialization internal map, realm and session.

" + }, + { + "html": "

Append serialized node to serialized nodes.

" + } + ] + }, + { + "html": "

Let result be a map matching the browsingContext.LocateNodesResult production, with the nodes field set serialized nodes.

" + }, + { + "html": "

Return success with data result.

" + } + ] + }, + { + "name": "remote end steps for browsingContext.navigate", + "html": "The remote end steps with session and command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let navigable id be the value of the context field of command parameters.

" + }, + { + "html": "

Let navigable be the result of trying to get a navigable with navigable id.

" + }, + { + "html": "

Assert: navigable is not null.

" + }, + { + "html": "

Let wait condition be the value of the wait field of command\n parameters if present, or \"none\" otherwise.

" + }, + { + "html": "

Let url be the value of the url field of command\n parameters.

" + }, + { + "html": "

Let document be navigable’s active document.

" + }, + { + "html": "

Let base be document’s base URL.

" + }, + { + "html": "

Let url record be the result of applying the URL parser to url,\n with base URL base.

" + }, + { + "html": "

If url record is failure, return error with error code invalid\n argument.

" + }, + { + "html": "

Let request be a new request whose URL is url record.

" + }, + { + "html": "

Return the result of await a navigation with navigable, request and wait condition.

" + } + ] + }, + { + "html": "The remote end steps with session and command parameters are:", + "rationale": "let", + "steps": [ + { + "html": "

Let navigable id be the value of the context field of command parameters.

" + }, + { + "html": "

Let navigable be the result of trying to get a navigable with navigable id.

" + }, + { + "html": "

If the implementation is unable to provide a paginated representation of navigable for any reason then return error with error code unsupported operation.

" + }, + { + "html": "

Let margin be the value of the margin field of command\n parameters if present, or otherwise a map matching the browsingContext.PrintMarginParameters with the fields set to\n their default values.

" + }, + { + "html": "

Let page size be the value of the page field of command\n parameters if present, or otherwise a map matching the browsingContext.PrintPageParameters with the fields set to\n their default values.

" + } + ] + }, + { + "html": "The remote end steps with session and command parameters are:", + "rationale": "let", + "steps": [ + { + "html": "

Let page ranges be the value of the pageRanges field of command parameters if present or an empty list otherwise.

" + }, + { + "html": "

Let document be navigable’s active document.

" + }, + { + "html": "Immediately after the next invocation of the run the animation frame\n callbacks algorithm for document:", + "rationale": "let", + "steps": [ + { + "html": "

Let pdf data be the result taking UA-specific steps to generate a\n paginated representation of document, with the CSS media type set to print, encoded as a PDF, with the following paper settings:

\n \n \n \n \n \n \n \n \n \n
Property \n Value \n
Width in cm \n page size[\"width\"] if command parameters[\"orientation\"] is\n \"portrait\" otherwise page size[\"height\"] \n
Height in cm \n page size[\"height\"] if command parameters[\"orientation\"] is\n \"portrait\" otherwise page size[\"width\"] \n
Top margin, in cm \n margin[\"top\"] \n
Bottom margin, in cm \n margin[\"bottom\"] \n
Left margin, in cm \n margin[\"left\"] \n
Right margin, in cm \n margin[\"right\"] \n
\n

In addition, the following formatting hints should be applied by the UA:

\n
\n
If command parameters[\"scale\"] is not equal to 1: \n
Zoom the size of the content by a factor command parameters[\"scale\"] \n
If command parameters[\"background\"] is false: \n
Suppress output of background images \n
If command parameters[\"shrinkToFit\"] is true: \n
Resize the content to match the page width, overriding any page\n width specified in the content \n
" + }, + { + "html": "

If page ranges is not empty, let pages be the result of trying to parse a page range with page ranges and the number of\n pages contained in pdf data, then remove any pages from pdf data whose one-based index is not contained in pages.

" + }, + { + "html": "

Let encoding result be the result of calling Base64 Encode on pdf data.

" + }, + { + "html": "

Let encoded data be encoding result’s data.

" + }, + { + "html": "

Let body be a map matching the browsingContext.PrintResult production, with the data field set to encoded data.

" + }, + { + "html": "

Return success with data body.

" + } + ] + } + ] + }, + { + "name": "remote end steps for browsingContext.reload", + "html": "The remote end steps with command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let navigable id be the value of the context field of command parameters.

" + }, + { + "html": "

Let navigable be the result of trying to get a navigable with navigable id.

" + }, + { + "html": "

Assert: navigable is not null.

" + }, + { + "html": "

Let ignore cache be the the value of the ignoreCache field of command\n parameters if present, or false otherwise.

" + }, + { + "html": "

Let wait condition be the value of the wait field of command\n parameters if present, or \"none\" otherwise.

" + }, + { + "html": "

Let document be navigable’s active document.

" + }, + { + "html": "

Let url be document’s URL.

" + }, + { + "html": "

Let request be a new request whose URL is url.

" + }, + { + "html": "

Return the result of await a navigation with navigable, request, wait\n condition, history handling \"reload\", and ignore\n cache ignore cache.

" + } + ] + }, + { + "name": "remote end steps for browsingContext.setViewport", + "html": "The remote end steps with command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let navigable id be the value of the context field of command\n parameters.

" + }, + { + "html": "

Let navigable be the result of trying to get a navigable with navigable id.

" + }, + { + "html": "

If navigable is not a top-level traversable, return error with error code invalid argument.

" + }, + { + "html": "

If the implementation is unable to adjust the navigable’s layout viewport parameters with the given command parameters for any reason, return error with error code unsupported operation.

" + }, + { + "html": "If command parameters contains the viewport field:", + "rationale": "let", + "steps": [ + { + "html": "

Let viewport be the command parameters[\"viewport\"].

" + }, + { + "html": "

If viewport is not null, set the width of navigable’s layout\n viewport to be the width of viewport in CSS pixels and\n set the height of the navigable’s layout viewport to be the height of viewport in CSS pixels.

" + }, + { + "html": "

Otherwise, set the navigable’s layout viewport to the\n implementation-defined default.

" + } + ] + }, + { + "html": "

Run the CSSOM View § 13.1 Resizing viewports steps.

" + }, + { + "html": "If command parameters contains the devicePixelRatio field:", + "rationale": "let", + "steps": [ + { + "html": "

Let device pixel ratio be the command\n parameters[\"devicePixelRatio\"].

" + }, + { + "html": "For the navigable and all descendant navigables:", + "rationale": "let", + "steps": [ + { + "html": "

Let navigable be the navigable whose active document is navigable’s active document.

" + }, + { + "html": "If device pixel ratio is not null:", + "rationale": "for", + "steps": [ + { + "html": "

When the select an image source from a source set are run, act as if\n the implementation’s pixel density was set to device pixel ratio when selecting an image.

" + }, + { + "html": "

For the purposes of the resolution media feature, act as if\n the implementation’s resolution is device pixel ratio dppx scaled by the page zoom.

" + }, + { + "html": "

Set device pixel ratio overrides[navigable] to device pixel ratio.

" + } + ] + }, + { + "html": "Otherwise:", + "rationale": "for", + "steps": [ + { + "html": "

When the select an image source from a source set steps are run, use the implementation’s default behavior,\n without any changes made by previous invocations of these steps.

" + }, + { + "html": "

For the purposes of the resolution media feature, use the implementation’s default behavior,\n without any changes made by previous invocations of these steps.

" + }, + { + "html": "

Remove navigable from device pixel ratio overrides.

" + } + ] + }, + { + "html": "

Run evaluate media queries and report changes for document currently loaded\n in a specified navigable.

" + } + ] + } + ] + }, + { + "html": "

Return success with data null.

" + } + ] + }, + { + "name": "remote end steps for browsingContext.traverseHistory", + "html": "The remote end steps with command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let navigable be the result of trying to get a navigable with command parameters[\"context\"].

" + }, + { + "html": "

If navigable is not a top-level traversable, return error with error code invalid argument.

" + }, + { + "html": "

Assert: navigable is not null.

" + }, + { + "html": "

Let delta be command parameters[\"delta\"].

" + }, + { + "html": "

Let resume id be a unique string.

" + }, + { + "html": "Queue a task on navigable’s session history traversal queue to run\n the following steps:", + "rationale": "let", + "steps": [ + { + "html": "

Let all steps be the result of getting all used history steps for navigable.

" + }, + { + "html": "

Let current index be the index of navigable’s current session history\n step within all steps.

" + }, + { + "html": "

Let target index be current index plus delta.

" + }, + { + "html": "

Let valid entry be false if all steps[target index] does not exist,\n or true otherwise.

" + }, + { + "html": "

Resume with \"check history\", resume id, and valid entry.

" + } + ] + }, + { + "html": "

Let is valid entry be await with «\"check history\"», and resume id.

" + }, + { + "html": "

If is valid entry is false, return error with error code no such\n history entry.

" + }, + { + "html": "

Traverse the history by a delta given delta and navigable.

" + }, + { + "html": "

TODO: Support waiting for the history traversal to complete.

" + }, + { + "html": "

Let body be a map matching the browsingContext.TraverseHistoryResult production.

" + }, + { + "html": "

Return success with data body.

" + } + ] + }, + { + "name": "WebDriver BiDi page show", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-page-show", + "html": "The WebDriver BiDi page show steps given context and navigation status are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let navigation id be navigation status’s id.

" + }, + { + "html": "

Resume with \"page show\", navigation id, and navigation status.

" + } + ] + }, + { + "name": "WebDriver BiDi pop state", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-pop-state", + "html": "The WebDriver BiDi pop state steps given context and navigation status are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let navigation id be navigation status’s id.

" + }, + { + "html": "

Resume with \"pop state\", navigation id, and navigation status.

" + } + ] + }, + { + "name": "Recursively emit context created events", + "href": "https://www.w3.org/TR/webdriver-bidi/#recursively-emit-context-created-events", + "html": "To Recursively emit context created events given session and navigable:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Emit a context created event with session and navigable.

" + }, + { + "html": "

For each child navigable, child, of navigable:

", + "ignored": [ + "Recursively emit context created events given session and child." + ] + } + ] + }, + { + "name": "Emit a context created event", + "href": "https://www.w3.org/TR/webdriver-bidi/#emit-a-context-created-event", + "html": "To Emit a context created event given session and navigable:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let params be the result of get the navigable info given navigable, 0, and true.

" + }, + { + "html": "

Let body be a map matching the browsingContext.ContextCreated production, with the params field set to params.

" + }, + { + "html": "

Emit an event with session and body.

" + } + ] + }, + { + "name": "remote end event trigger for browsingContext.contextCreated", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-navigable-created", + "html": "The remote end event trigger is\nthe WebDriver BiDi navigable created steps given navigable and opener navigable:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Set navigable’s original opener to opener navigable,\n if opener navigable is provided.

" + }, + { + "html": "

If the navigable cache behavior with navigable is \"bypass\",\n then perform implementation-defined steps to disable any implementation-specific\n resource caches for network requests originating from navigable.

" + }, + { + "html": "

Let related navigables be a set containing navigable.

" + }, + { + "html": "For each session in the set of sessions for which an event is enabled given \"browsingContext.contextCreated\" and related navigables:", + "rationale": "emit", + "steps": [ + { + "html": "

Emit a context created event given session and navigable.

" + } + ] + } + ] + }, + { + "name": "remote end subscribe steps for browsingContext.contextCreated", + "html": "The remote end subscribe steps, with subscribe priority 1, given session, navigables and include global are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

For each navigable in navigables:

", + "ignored": [ + "Recursively emit context created events given session and navigable." + ] + } + ] + }, + { + "name": "remote end event trigger for browsingContext.contexDestroyed", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-navigable-destroyed", + "html": "The remote end event trigger is\nthe WebDriver BiDi navigable destroyed steps given navigable:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let params be the result of get the navigable info, given navigable, null, and true.

" + }, + { + "html": "

Let body be a map matching the browsingContext.ContextDestroyed production, with the params field set to params.

" + }, + { + "html": "

Let related navigables be a set containing the result of get the parent navigable with navigable, if that is not\n null, or an empty set otherwise.

" + }, + { + "html": "For each session in the set of sessions for which an event is enabled given \"browsingContext.contextDestroyed\" and related navigables:", + "rationale": "emit", + "steps": [ + { + "html": "

Emit an event with session and body.

" + } + ] + } + ] + }, + { + "name": "WebDriver BiDi navigation started", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-navigation-started", + "html": "The remote end event trigger is the WebDriver BiDi navigation\nstarted steps given navigable and navigation status:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let params be the result of get the navigation info given navigable and navigation status.

" + }, + { + "html": "

Let body be a map matching the browsingContext.NavigationStarted production, with the params field set to params.

" + }, + { + "html": "

Let navigation id be navigation status’s id.

" + }, + { + "html": "

Let related navigables be a set containing navigable.

" + }, + { + "html": "

Resume with \"navigation started\", navigation id, and navigation status.

" + }, + { + "html": "For each session in the set of sessions for which an event is enabled given \"browsingContext.navigationStarted\" and related navigables:", + "rationale": "emit", + "steps": [ + { + "html": "

Emit an event with session and body.

" + } + ] + } + ] + }, + { + "name": "WebDriver BiDi fragment navigated", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-fragment-navigated", + "html": "The remote end event trigger is the WebDriver BiDi fragment\nnavigated steps given navigable and navigation status:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let params be the result of get the navigation info given navigable and navigation status.

" + }, + { + "html": "

Let body be a map matching the browsingContext.FragmentNavigated production, with the params field set to params.

" + }, + { + "html": "

Let navigation id be navigation status’s id.

" + }, + { + "html": "

Let related navigable be a set containing navigable.

" + }, + { + "html": "

Resume with \"fragment navigated\", navigation id, and navigation status.

" + }, + { + "html": "For each session in the set of sessions for which an event is enabled given \"browsingContext.fragmentNavigated\" and related navigable:", + "rationale": "emit", + "steps": [ + { + "html": "

Emit an event with session and body.

" + } + ] + } + ] + }, + { + "name": "WebDriver BiDi history updated", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-history-updated", + "html": "The remote end event trigger is the WebDriver BiDi history updated steps given navigable:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let url be the result of running the URL serializer,\n given navigable’s active browsing context's active document's URL.

" + }, + { + "html": "

Let params be a map matching the browsingContext.HistoryUpdatedParameters production,\n with the url field set to url and\n the context field set to navigable’s navigable id.

" + }, + { + "html": "

Let body be a map matching the browsingContext.HistoryUpdated production, with the params field set to params.

" + }, + { + "html": "

Let related browsing contexts be a set containing navigable’s active browsing context.

" + }, + { + "html": "For each session in the set of sessions for which an event is enabled given \"browsingContext.historyUpdated\" and related browsing contexts:", + "rationale": "emit", + "steps": [ + { + "html": "

Emit an event with session and body.

" + } + ] + } + ] + }, + { + "name": "WebDriver BiDi DOM content loaded", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-dom-content-loaded", + "html": "The remote end event trigger is the WebDriver BiDi DOM content\nloaded steps given navigable and navigation status:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let params be the result of get the navigation info given navigable and navigation status.

" + }, + { + "html": "

Let body be a map matching the browsingContext.DomContentLoaded production, with the params field set to params.

" + }, + { + "html": "

Let related navigables be a set containing navigable.

" + }, + { + "html": "

Let navigation id be navigation status’s id.

" + }, + { + "html": "

Resume with \"domContentLoaded\", navigation id, and navigation status.

" + }, + { + "html": "For each session in the set of sessions for which an event is enabled given \"browsingContext.domContentLoaded\" and related navigables:", + "rationale": "emit", + "steps": [ + { + "html": "

Emit an event with session and body.

" + } + ] + } + ] + }, + { + "name": "WebDriver BiDi load complete", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-load-complete", + "html": "The remote end event trigger is the WebDriver BiDi load\ncomplete steps given navigable and navigation status:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let params be the result of get the navigation info given navigable and navigation status.

" + }, + { + "html": "

Let body be a map matching the browsingContext.Load production, with the params field set to params.

" + }, + { + "html": "

Let related navigables be a set containing navigable.

" + }, + { + "html": "

Let navigation id be navigation status’s id.

" + }, + { + "html": "

Resume with \"load\", navigation id and navigation status.

" + }, + { + "html": "For each session in the set of sessions for which an event is enabled given \"browsingContext.load\" and related navigables:", + "rationale": "emit", + "steps": [ + { + "html": "

Emit an event with session and body.

" + } + ] + } + ] + }, + { + "name": "WebDriver BiDi download started", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-download-started", + "html": "The remote end event trigger is the WebDriver BiDi download\nstarted steps given navigable and navigation status:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let params be the result of get the navigation info given navigable and navigation status.

" + }, + { + "html": "

Let body be a map matching the browsingContext.DownloadWillBegin production, with the params field set to params.

" + }, + { + "html": "

Let navigation id be navigation status’s id.

" + }, + { + "html": "

Let related navigables be a set containing navigable.

" + }, + { + "html": "

Resume with \"download started\", navigation id, and navigation status.

" + }, + { + "html": "For each session in the set of sessions for which an event is enabled given \"browsingContext.downloadWillBegin\" and related navigables:", + "rationale": "emit", + "steps": [ + { + "html": "

Emit an event with session and body.

" + } + ] + } + ] + }, + { + "name": "WebDriver BiDi navigation aborted", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-navigation-aborted", + "html": "The remote end event trigger is the WebDriver BiDi navigation\naborted steps given navigable and navigation status:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let params be the result of get the navigation info given navigable and navigation status.

" + }, + { + "html": "

Let body be a map matching the browsingContext.NavigationAborted production, with the params field set to params.

" + }, + { + "html": "

Let navigation id be navigation status’s id.

" + }, + { + "html": "

Let related navigables be a set containing navigable.

" + }, + { + "html": "

Resume with \"navigation aborted\", navigation id, and navigation status.

" + }, + { + "html": "For each session in the set of sessions for which an event is enabled given \"browsingContext.navigationAborted\" and related navigables:", + "rationale": "emit", + "steps": [ + { + "html": "

Emit an event with session and body.

" + } + ] + } + ] + }, + { + "name": "WebDriver BiDi navigation failed", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-navigation-failed", + "html": "The remote end event trigger is the WebDriver BiDi navigation\nfailed steps given navigable and navigation status:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let params be the result of get the navigation info given navigable and navigation status.

" + }, + { + "html": "

Let body be a map matching the browsingContext.NavigationFailed production, with the params field set to params.

" + }, + { + "html": "

Let navigation id be navigation status’s id.

" + }, + { + "html": "

Let related navigables be a set containing navigable.

" + }, + { + "html": "

Resume with \"navigation failed\", navigation id, and navigation status.

" + }, + { + "html": "For each session in the set of sessions for which an event is enabled given \"browsingContext.navigationFailed\" and related navigables:", + "rationale": "emit", + "steps": [ + { + "html": "

Emit an event with session and body.

" + } + ] + } + ] + }, + { + "name": "WebDriver BiDi user prompt closed", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-user-prompt-closed", + "html": "The remote end event trigger is the WebDriver BiDi user prompt\nclosed steps given window, type, accepted and optional user text (default: null).", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let navigable be window’s navigable.

" + }, + { + "html": "

Let navigable id be the navigable id for navigable.

" + }, + { + "html": "

Let params be a map matching the browsingContext.UserPromptClosedParameters production with the context field set to navigable id, the accepted field set to accepted, the type field set to type, and the userText field set to user text if user text is not null or\n omitted otherwise.

" + }, + { + "html": "

Let body be a map matching the BrowsingContextUserPromptClosedEvent production, with the params field set to params.

" + }, + { + "html": "

Let related navigables be a set containing navigable.

" + }, + { + "html": "For each session in the set of sessions for which an event is enabled given \"browsingContext.userPromptClosed\" and related navigables:", + "rationale": "emit", + "steps": [ + { + "html": "

Emit an event with session and body.

" + } + ] + } + ] + }, + { + "name": "WebDriver BiDi user prompt opened", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-user-prompt-opened", + "html": "The remote end event trigger is the WebDriver BiDi user prompt\nopened steps given window, type, message, and optional default value (default: null).", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let navigable be window’s navigable.

" + }, + { + "html": "

Let navigable id be the navigable id for navigable.

" + }, + { + "html": "

Let handler configuration be get the prompt handler with type.

" + }, + { + "html": "

Let handler be handler configuration’s handler.

" + }, + { + "html": "

Let params be a map matching the browsingContext.UserPromptOpenedParameters production with the context field set to navigable id, the type field\n set to type, the message field set to message, the defaultValue field set to default value if default value is\n not null or omitted otherwise, and the handler field set to handler.

" + }, + { + "html": "

Let body be a map matching the browsingContext.UserPromptOpened production, with the params field set to params.

" + }, + { + "html": "

Let related navigables be a set containing navigable.

" + }, + { + "html": "For each session in the set of sessions for which an event is enabled given \"browsingContext.userPromptOpened\" and related navigables:", + "rationale": "emit", + "steps": [ + { + "html": "

Emit an event with session and body.

" + } + ] + }, + { + "html": "

If handler is \"ignore\", set handler to \"none\".

" + }, + { + "html": "

Return handler.

" + } + ] + }, + { + "name": "get the network intercepts", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-network-intercepts", + "html": "To get the network intercepts given session, event, request, and navigable id:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let session intercepts be session’s intercept map.

" + }, + { + "html": "

Let intercepts be an empty list.

" + }, + { + "html": "

Run the steps under the first matching condition:

\n
\n
event is \"network.beforeRequestSent\" \n
Set phase to \"beforeRequestSent\". \n
event is \"network.responseStarted\" \n
Set phase to \"responseStarted\". \n
event is \"network.authRequired\" \n
Set phase to \"authRequired\". \n
event is \"network.responseCompleted\" \n
Return intercepts. \n
" + }, + { + "html": "

Let url be the result of running the URL serializer with request’s URL.

" + }, + { + "html": "For each intercept idintercept of session intercepts:", + "rationale": "if", + "steps": [ + { + "html": "If intercept’s contexts is not null:", + "rationale": "if", + "steps": [ + { + "html": "If intercept’s contexts does not contain navigable id:", + "rationale": "continue", + "steps": [ + { + "html": "

Continue.

" + } + ] + } + ] + }, + { + "html": "If intercept’s phases contains phase:", + "rationale": "let", + "steps": [ + { + "html": "

Let url patterns be intercept’s url patterns.

" + }, + { + "html": "If url patterns is empty:", + "rationale": "append", + "steps": [ + { + "html": "

Append intercept id to intercepts.

" + }, + { + "html": "

Continue.

" + } + ] + }, + { + "html": "For each url pattern in url patterns:", + "rationale": "if", + "steps": [ + { + "html": "If match URL pattern with url pattern and url:", + "rationale": "append", + "steps": [ + { + "html": "

Append intercept id to intercepts.

" + }, + { + "html": "

Break.

" + } + ] + } + ] + } + ] + } + ] + }, + { + "html": "

Return intercepts.

" + } + ] + }, + { + "name": "update the response", + "href": "https://www.w3.org/TR/webdriver-bidi/#update-the-response", + "html": "To update the response given session, command and command parameters:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let blocked requests be session’s blocked request map.

" + }, + { + "html": "

Let request id be command parameters[\"request\"].

" + }, + { + "html": "

If blocked requests does not contain request id then return error with error code no such request.

" + }, + { + "html": "

Let (request, phase, response) be blocked requests[request id].

" + }, + { + "html": "

If phase is \"beforeRequestSent\" and command is\n \"continueResponse\", return error with error code \"invalid argument\".

\n

TODO: Consider a different error

" + }, + { + "html": "If response is null:", + "rationale": "assert", + "steps": [ + { + "html": "

Assert: phase is \"beforeRequestSent\".

" + }, + { + "html": "

Set response to a new response.

" + } + ] + }, + { + "html": "If command parameters contains \"statusCode\":", + "rationale": "set", + "steps": [ + { + "html": "

Set responses’s status be command\n parameters[\"statusCode\"].

" + } + ] + }, + { + "html": "If command parameters contains \"reasonPhrase\":", + "rationale": "set", + "steps": [ + { + "html": "

Set responses’s status message be UTF-8 encode with command parameters[\"reasonPhrase\"].

" + } + ] + }, + { + "html": "If command parameters contains \"headers\":", + "rationale": "let", + "steps": [ + { + "html": "

Let headers be an empty header list.

" + }, + { + "html": "For header in command parameters[\"headers\"]:", + "rationale": "let", + "steps": [ + { + "html": "

Let deserialized header be deserialize header with header.

" + }, + { + "html": "

If deserialized header’s name does not match the field-name token production, return error with error code \"invalid argument\".

" + }, + { + "html": "

If deserialized header’s value does not match the header value production, return error with error code \"invalid argument\".

" + }, + { + "html": "

Append deserialized header to headers.

" + } + ] + }, + { + "html": "

Set response’s header list to headers.

" + } + ] + }, + { + "html": "If command parameters contains \"cookies\":", + "rationale": "if", + "steps": [ + { + "html": "Otherwise:", + "rationale": "let", + "steps": [ + { + "html": "

Let headers be an empty header list.

" + }, + { + "html": "For each header in response’s headers list:", + "rationale": "let", + "steps": [ + { + "html": "

Let name be header’s name.

" + }, + { + "html": "If byte-lowercase name is not `set-cookie`:", + "rationale": "append", + "steps": [ + { + "html": "

Append header to headers

" + } + ] + } + ] + } + ] + }, + { + "html": "For cookie in command parameters[\"cookies\"]:", + "rationale": "let", + "steps": [ + { + "html": "

Let header value be serialize set-cookie header with cookie.

" + }, + { + "html": "

Append (`Set-Cookie`, header value) to headers.

" + }, + { + "html": "

Set response’s header list to headers.

" + } + ] + } + ] + }, + { + "html": "If command parameters contains \"credentials\":", + "rationale": "let", + "steps": [ + { + "html": "

Let credentials be command parameters[\"credentials\"].

" + }, + { + "html": "

Assert: credentials[\"type\"] is \"password\".

" + }, + { + "html": "

Set response’s authentication credentials to\n (credentials[\"username\"], credentials[\"password\"])

" + } + ] + }, + { + "html": "

Return response

" + } + ] + }, + { + "name": "extract challenges", + "href": "https://www.w3.org/TR/webdriver-bidi/#extract-challenges", + "html": "To extract challenges given response:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

If response’s status is 401, let header name be\n `WWW-Authenticate`. Otherwise if response’s status is 407, let header name be `Proxy-Authenticate`. Otherwise return null.

" + }, + { + "html": "

Let challenges be a new list.

" + }, + { + "html": "For each (name, value) in response’s header list:", + "rationale": "if", + "steps": [ + { + "html": "If name is a byte-case-insensitive match for header name:", + "rationale": "let", + "steps": [ + { + "html": "

Let header challenges be the result of parsing value into a list of\n challenges, each consisting of a scheme and a list of parameters, each of\n which is a tuple (name, value), according to the rules of [RFC9110].

" + }, + { + "html": "For each header challenge in header challenges:", + "rationale": "let", + "steps": [ + { + "html": "

Let scheme be header challenge’s scheme.

" + }, + { + "html": "

Let realm be the empty string.

" + }, + { + "html": "For each (param name, param value) in header challenge’s\n parameters:", + "rationale": "if", + "steps": [ + { + "html": "

If param name equals `realm` let realm be UTF-8 decode param value.

" + } + ] + }, + { + "html": "

Let challenge be a new map matching the network.AuthChallenge production, with the scheme field set to scheme and the realm field set to realm.

" + } + ] + }, + { + "html": "

Append challenge to challenges.

" + } + ] + } + ] + }, + { + "html": "

Return challenges.

" + } + ] + }, + { + "name": "process a network event", + "href": "https://www.w3.org/TR/webdriver-bidi/#process-a-network-event", + "html": "To process a network event given session, event, and request:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let request data be the result of get the request data with request.

" + }, + { + "html": "

Let navigation be request’s navigation id.

" + }, + { + "html": "

Let navigable id be null.

" + }, + { + "html": "

Let top-level navigable id be null.

" + }, + { + "html": "If request’s window is an environment settings object:", + "rationale": "let", + "steps": [ + { + "html": "

Let environment settings be request’s window

" + }, + { + "html": "

If there is a navigable whose active window is environment\n settingsglobal object, set navigable id to the navigable id for that navigable, and set top-level navigable id to be top-level traversable's navigable id for that\n context.

" + } + ] + }, + { + "html": "

Let intercepts be the result of get the network intercepts with session, event, request, and top-level navigable id.

" + }, + { + "html": "

Let redirect count be request’s redirect count.

" + }, + { + "html": "

Let timestamp be a time value representing the current date and time in UTC.

" + }, + { + "html": "

If intercepts is not empty, let is blocked be true, otherwise\n let is blocked be false.

" + }, + { + "html": "

Let params be map matching the network.BaseParameters production, with the request field set to request data, the navigation field set to navigation, the context field set to navigable id, the timestamp field set to timestamp, the redirectCount field set to redirect count, the isBlocked field set to is blocked, and intercepts field set to intercepts if is blocked is true, or omitted otherwise.

" + }, + { + "html": "

Return params

" + } + ] + }, + { + "name": "deserialize protocol bytes", + "href": "https://www.w3.org/TR/webdriver-bidi/#deserialize-protocol-bytes", + "html": "To deserialize protocol bytes given protocol bytes:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

If protocol bytes matches the network.StringValue production,\n let bytes be UTF-8 encode protocol bytes[\"value\"].

" + }, + { + "html": "

Otherwise if protocol bytes matches the network.Base64Value production. Let bytes be forgiving-base64 decode protocol\n bytes[\"value\"].

" + }, + { + "html": "

Return bytes.

" + } + ] + }, + { + "name": "serialize protocol bytes", + "href": "https://www.w3.org/TR/webdriver-bidi/#serialize-protocol-bytes", + "html": "To serialize protocol bytes given bytes:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let text be UTF-8 decode without BOM or fail bytes.

" + }, + { + "html": "

If text is failure, return a map matching the network.Base64Value production, with value set to forgiving-base64 encode bytes.

" + }, + { + "html": "

Return a map matching the network.StringValue production,\n with value set to text.

" + } + ] + }, + { + "name": "serialize cookie", + "href": "https://www.w3.org/TR/webdriver-bidi/#serialize-cookie", + "html": "To serialize cookie given stored cookie:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let name be the result of UTF-8 decode with stored cookie’s name field.

" + }, + { + "html": "

Let value be serialize protocol bytes with stored cookie’s value.

" + }, + { + "html": "

Let domain be stored cookie’s domain field.

" + }, + { + "html": "

Let path be stored cookie’s path field.

" + }, + { + "html": "

Let expiry be stored cookie’s expiry-time field represented as a unix\n timestamp, if set, or null otherwise.

" + }, + { + "html": "

Let size be the byte length of the result of serializing stored cookie as it would be represented in a Cookie header.

" + }, + { + "html": "

Let http only be true if stored cookie’s http-only-flag is true, or false\n otherwise.

" + }, + { + "html": "

Let secure be true if stored cookie’s secure-only-flag is true, or false\n otherwise.

" + }, + { + "html": "

Let same site be \"none\" if stored cookie’s samesite-flag is\n \"None\", \"lax\" if it is \"Lax\", or\n \"strict\" if it is \"Strict\".

" + }, + { + "html": "

Return a map matching the network.Cookie production,\n with the name field set to name, the value field\n set to value, the domain field set to domain, the path field set to path, the expiry field set to expiry if it’s not null, or omitted otherwise, the size field\n set to size, the httpOnly field set to http only, the secure field set to secure, and the sameSite field set to same site.

" + } + ] + }, + { + "name": "serialize cookie header", + "href": "https://www.w3.org/TR/webdriver-bidi/#serialize-cookie-header", + "html": "To serialize cookie header given protocol cookie:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let name be UTF-8 encode protocol cookie[\"name\"].

" + }, + { + "html": "

Let value be deserialize protocol bytes with protocol\n cookie[\"value\"].

" + }, + { + "html": "

Let header value be the byte sequence formed by concatenating name,\n `=`, and value

" + }, + { + "html": "

Return header value.

" + } + ] + }, + { + "name": "get the fetch timings", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-fetch-timings", + "html": "To get the fetch timings given request:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let global be request’s client.

" + }, + { + "html": "

If global is null, return a map matching the network.FetchTimingInfo production, with all fields set to 0.

" + }, + { + "html": "

Let time origin be get time origin timestamp with global.

" + }, + { + "html": "

Let timings be request’s fetch timing info.

" + }, + { + "html": "

Let connection timing be timingsfinal connection timing info if\n it’s not null, or a new connection timing info otherwise.

" + }, + { + "html": "

Let request time be convert fetch timestamp given timingsstart time and global.

" + }, + { + "html": "

Let redirect start be convert fetch timestamp given timingsredirect start time and global.

" + }, + { + "html": "

Let redirect end be convert fetch timestamp given timingsredirect\n end time and global.

" + }, + { + "html": "

Let fetch start be convert fetch timestamp given timingspost-redirect start time and global.

" + }, + { + "html": "

Let DNS start be convert fetch timestamp given connection timing’s domain lookup start time and global.

" + }, + { + "html": "

Let DNS end be convert fetch timestamp given connection timing’s domain lookup end time and global.

" + }, + { + "html": "

Let TLS start be convert fetch timestamp given connection timing’s secure connection start time and global.

" + }, + { + "html": "

Let connect start be convert fetch timestamp given connection\n timing’s connection start time and global.

" + }, + { + "html": "

Let connect end be convert fetch timestamp given connection timing’s connection end time and global.

" + }, + { + "html": "

Let request start be convert fetch timestamp given timingsfinal\n network-request start time and global.

" + }, + { + "html": "

Let response start be convert fetch timestamp given timingsfinal\n network-response start time and global.

" + }, + { + "html": "

Let response end be convert fetch timestamp given timingsend time and global.

" + }, + { + "html": "

Return a map matching the network.FetchTimingInfo production\n with the timeOrigin field set to time origin, the requestTime field set to request time, the redirectStart field set to redirect start, the redirectEnd field set to redirect end, the fetchStart field set to fetch start, the dnsStart field set to DNS start, the dnsEnd field set to DNS end, the connectStart field set to connect\n start, the connectEnd field set to connect end, the tlsStart field set to TLS start, the requestStart field set to request start, the responseStart field set to response start, and the responseEnd field set to response end.

" + } + ] + }, + { + "name": "serialize header", + "href": "https://www.w3.org/TR/webdriver-bidi/#serialize-header", + "html": "To serialize header given name bytes and value bytes:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let name be the result of UTF-8 decode with name bytes.

\n

Assert: Since header names are constrained to be ASCII-only this cannot fail.

" + }, + { + "html": "

Let value be serialize protocol bytes with value bytes.

" + }, + { + "html": "

Return a map matching the network.Header production, with the name field set to name, and the value field\n set to value.

" + } + ] + }, + { + "name": "deserialize header", + "href": "https://www.w3.org/TR/webdriver-bidi/#deserialize-header", + "html": "To deserialize header given protocol header:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let name be UTF-8 encode protocol header[\"name\"].

" + }, + { + "html": "

Let value be deserialize protocol bytes with protocol\n header[\"value\"].

" + }, + { + "html": "

Return a header (name, value).

" + } + ] + }, + { + "name": "get the initiator", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-initiator", + "html": "To get the initiator given request:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let request id be request’s request id.

" + }, + { + "html": "If request’s initiator type is \"fetch\" or\n \"xmlhttprequest\":", + "rationale": "let", + "steps": [ + { + "html": "

Let stack trace be the current stack trace.

" + }, + { + "html": "

If stack trace has size of 1 or greater, let line number be value of the lineNumber field in stack trace[0], and let column number be\n the value of the columnNumber field in stack trace[0]. Otherwise\n let line number and column number be 0.

" + } + ] + }, + { + "html": "

Return a map matching the network.Initiator production, the columnNumber field set to column number if it’s not null, or\n omitted otherwise, the lineNumber field set to line number if\n it’s not null, or omitted otherwise, the stackTrace field set to stack trace if it’s not null, or omitted otherwise, and the request field set to request id.

" + } + ] + }, + { + "name": "get the request data", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-request-data", + "html": "To get the request data given request:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let request id be request’s request id.

" + }, + { + "html": "

Let url be the result of running the URL serializer with request’s URL.

" + }, + { + "html": "

Let method be request’s method.

" + }, + { + "html": "

Let body size be null.

" + }, + { + "html": "

Let body be request’s body.

" + }, + { + "html": "

If body is a byte sequence, set body size to the length of that\n sequence. Otherwise, if body is a body then set body size to that\n body’s length.

" + }, + { + "html": "

Let headers size be the size in bytes of request’s headers list when\n serialized as mandated by [HTTP11].

" + }, + { + "html": "

Let headers be an empty list.

" + }, + { + "html": "

Let cookies be an empty list.

" + }, + { + "html": "For each (name, value) in request’s headers list:", + "rationale": "append", + "steps": [ + { + "html": "

Append the result of serialize header with name and value to headers.

" + }, + { + "html": "If name is a byte-case-insensitive match for \"Cookie\" then:", + "rationale": "for", + "steps": [ + { + "html": "For each cookie in the user agent’s cookie store that are included in request:", + "rationale": "append", + "steps": [ + { + "html": "

Append the result of serialize cookie given cookie to cookies.

" + } + ] + } + ] + } + ] + }, + { + "html": "

Let destination be request’s destination.

" + }, + { + "html": "

Let initiator type be request’s initiator type.

" + }, + { + "html": "

Let timings be get the fetch timings with request.

" + }, + { + "html": "

Return a map matching the network.RequestData production, with\n the request field set to request id, url field\n set to url, the method field set to method, the headers field set to headers, the cookies field set to cookies, the headersSize field set to headers size, the bodySize field set to body size, the destination field set to destination, the initiatorType field set to initiator type, and the timings field set to timings.

" + } + ] + }, + { + "name": "get the response content info", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-response-content-info", + "html": "To get the response content info given response.", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Return a new map matching the network.ResponseContent production, with the size field set to response’s response body\n info's decoded size

" + } + ] + }, + { + "name": "get the protocol", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-protocol", + "html": "To get the protocol given response:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let protocol be the empty string.

" + }, + { + "html": "

If response’s final connection timing info is not null, set protocol to response’s final connection timing info's ALPN negotiated\n protocol.

" + }, + { + "html": "If protocol is the empty string, or is equal to \"unknown\":", + "rationale": "set", + "steps": [ + { + "html": "

Set protocol to response’s url's scheme

" + }, + { + "html": "If protocol is equal to either \"http\" or\n \"https\" and response has an associated HTTP Response.", + "rationale": "let", + "steps": [ + { + "html": "

Let http version be the HTTP Response’s Status line’s HTTP-version [HTTP11].

" + }, + { + "html": "If http version starts with \"HTTP/\":", + "rationale": "let", + "steps": [ + { + "html": "

Let version be the code unit substring of http version from 5\n to http version’s length.

" + }, + { + "html": "

If version is \"0.9\", set protocol to\n \"http/0.9\", otherwise if version is \"1.0\",\n set protocol to \"http/1.0\", otherwise if version is\n \"1.1\", set protocol to \"http/1.1\".

" + } + ] + } + ] + } + ] + }, + { + "html": "

Return protocol.

" + } + ] + }, + { + "name": "get the response data", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-response-data", + "html": "To get the response data given response:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let url be the result of running the URL serializer with response’s URL.

" + }, + { + "html": "

Set protocol to get the protocol given response.

" + }, + { + "html": "

Let status be response’s status.

" + }, + { + "html": "

Let status text be response’s status message.

" + }, + { + "html": "

If response’s cache state is \"local\", let from cache be\n true, otherwise let it be false.

" + }, + { + "html": "

Let headers be an empty list.

" + }, + { + "html": "

Let mime type be the essence of the computed mime type for response.

" + }, + { + "html": "For each (name, value) in response’s headers list:", + "rationale": "append", + "steps": [ + { + "html": "

Append the result of serialize header with name and value to headers.

" + } + ] + }, + { + "html": "

Let bytes received be the total number of bytes transmitted as part of the\n HTTP response associated with response.

" + }, + { + "html": "

Let headers size be the number of bytes transmitted as part of the header\n fields section of the HTTP response.

" + }, + { + "html": "

Let body size be response’s response body info's encoded size.

" + }, + { + "html": "

Let content be the result of get the response content info with response.

" + }, + { + "html": "

Let auth challenges be the result of extract challenges with response.

" + }, + { + "html": "

Return a map matching the network.ResponseData production,\n with the url field set to url, the protocol field\n set to protocol, the status field set to status, the statusText field set to status text, the fromCache field set to from cache, the headers field set to headers, the mimeType field set to mime type, the bytesReceived field set to bytes received, the headersSize field set to headers size, the bodySize field set to body size, content field set to content, and the authChallenges field set to auth challenges if it’s not null, or omitted otherwise.

" + } + ] + }, + { + "name": "serialize an integer", + "href": "https://www.w3.org/TR/webdriver-bidi/#serialize-an-integer", + "html": "To serialize an integer given input that is an integer:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let serialized be an empty string.

" + }, + { + "html": "

Let value be input.

" + }, + { + "html": "While value is greater than 0:", + "rationale": "let", + "steps": [ + { + "html": "

Let x be value divided by 10.

" + }, + { + "html": "

Let most significant digits be the integer part of x.

" + }, + { + "html": "

Let y be most significant digits multiplied by 10.

" + }, + { + "html": "

Let least significant digit be value - y.

" + }, + { + "html": "

Assert: least significant digit is an integer in the range 0 to 9,\n inclusive.

" + }, + { + "html": "

Let codepoint be the code point whose value is U+0030\n DIGIT ZERO’s value + least significant digit.

" + }, + { + "html": "

Prepend codepoint to serialized.

" + }, + { + "html": "

Set value to most significant digits.

" + } + ] + }, + { + "html": "

Return serialized.

" + } + ] + }, + { + "name": "serialize set-cookie header", + "href": "https://www.w3.org/TR/webdriver-bidi/#serialize-set-cookie-header", + "html": "To serialize set-cookie header given protocol cookie:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let name be UTF-8 encode protocol cookie[\"name\"].

" + }, + { + "html": "

Let value be deserialize protocol bytes with protocol\n cookie[\"value\"].

" + }, + { + "html": "

Let header value be the byte sequence formed by concatenating name,\n `=`, and value.

" + }, + { + "html": "If protocol cookie contains \"expiry\":", + "rationale": "let", + "steps": [ + { + "html": "

Let attribute be `;Expires=`

" + }, + { + "html": "

Append UTF-8 encode protocol cookie[\"expiry\"] to attribute.

" + }, + { + "html": "

Append attribute to header value.

" + } + ] + }, + { + "html": "If protocol cookie contains \"maxAge\":", + "rationale": "let", + "steps": [ + { + "html": "

Let attribute be `;Max-Age=`

" + }, + { + "html": "

Let max age string be serialize an integer protocol\ncookie[\"maxAge\"].

" + }, + { + "html": "

Append UTF-8 encode max age string to attribute.

" + }, + { + "html": "

Append attribute to header value.

" + } + ] + }, + { + "html": "If protocol cookie contains \"domain\":", + "rationale": "let", + "steps": [ + { + "html": "

Let attribute be `;Domain=`

" + }, + { + "html": "

Append UTF-8 encode protocol cookie[\"domain\"] to attribute.

" + }, + { + "html": "

Append attribute to header value.

" + } + ] + }, + { + "html": "If protocol cookie contains \"path\":", + "rationale": "let", + "steps": [ + { + "html": "

Let attribute be `;Path=`

" + }, + { + "html": "

Append UTF-8 encode protocol cookie[\"path\"] to attribute.

" + }, + { + "html": "

Append attribute to header value.

" + } + ] + }, + { + "html": "If protocol cookie contains \"secure\" and protocol\n cookie[\"secure\"] is true:", + "rationale": "append", + "steps": [ + { + "html": "

Append `;Secure` to header value.

" + } + ] + }, + { + "html": "If protocol cookie contains \"httpOnly\" and protocol\n cookie[\"httpOnly\"] is true:", + "rationale": "append", + "steps": [ + { + "html": "

Append `;HttpOnly` to header value.

" + } + ] + }, + { + "html": "If protocol cookie contains \"sameSite\":", + "rationale": "let", + "steps": [ + { + "html": "

Let attribute be `;SameSite=`

" + }, + { + "html": "

Append UTF-8 encode protocol cookie[\"sameSite\"] to attribute.

" + }, + { + "html": "

Append attribute to header value.

" + } + ] + }, + { + "html": "

Return header value.

" + } + ] + }, + { + "name": "unescape URL pattern", + "href": "https://www.w3.org/TR/webdriver-bidi/#unescape-url-pattern", + "html": "To unescape URL pattern given pattern", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let forbidden characters be the set of codepoints «U+0028 ((), U+0029\n ()), U+002A (*), U+007B ({), U+007D (})»

" + }, + { + "html": "

Let result be the empty string.

" + }, + { + "html": "

Let is escaped character be false.

" + }, + { + "html": "For each codepoint in pattern:", + "rationale": "if", + "steps": [ + { + "html": "If is escaped character is false:", + "rationale": "if", + "steps": [ + { + "html": "

If forbidden characters contains codepoint, return error with error code invalid argument.

" + }, + { + "html": "If codepoint is U+005C (\\):", + "rationale": "set", + "steps": [ + { + "html": "

Set is escaped character to true.

" + }, + { + "html": "

Continue.

" + } + ] + } + ] + }, + { + "html": "

Append codepoint to result.

" + }, + { + "html": "

Set is escaped character to false.

" + } + ] + }, + { + "html": "

Return success with data result.

" + } + ] + }, + { + "name": "parse URL pattern", + "href": "https://www.w3.org/TR/webdriver-bidi/#parse-url-pattern", + "html": "To parse URL pattern, given pattern:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let has protocol be true.

" + }, + { + "html": "

Let has hostname be true.

" + }, + { + "html": "

Let has port be true.

" + }, + { + "html": "

Let has pathname be true.

" + }, + { + "html": "

Let has search be true.

" + }, + { + "html": "If pattern matches the network.UrlPatternPattern production:", + "rationale": "let", + "steps": [ + { + "html": "

Let pattern url be the empty string.

" + }, + { + "html": "If pattern contains \"protocol\":", + "rationale": "if", + "steps": [ + { + "html": "

If pattern[\"protocol\"] is the empty string, return error with error code invalid argument.

" + }, + { + "html": "

Let protocol be the result of trying to unescape\n URL Pattern with pattern[\"protocol\"].

" + }, + { + "html": "For each codepoint in protocol:", + "rationale": "if", + "steps": [ + { + "html": "If codepoint is not ASCII alphanumeric and «U+002B (+), U+002D\n (-), U+002E (.)» does not contain codepoint:", + "rationale": "return", + "steps": [ + { + "html": "

Return error with error code invalid argument.

" + } + ] + } + ] + }, + { + "html": "

Append protocol to pattern url.

" + } + ] + }, + { + "html": "Otherwise:", + "rationale": "set", + "steps": [ + { + "html": "

Set has protocol to false.

" + }, + { + "html": "

Append \"http\" to pattern url.

" + } + ] + }, + { + "html": "

Let scheme be ASCII lowercase with pattern url.

" + }, + { + "html": "

Append \":\" to pattern url.

" + }, + { + "html": "

If scheme is special, append \"//\" to pattern url.

" + }, + { + "html": "If pattern contains \"hostname\":", + "rationale": "if", + "steps": [ + { + "html": "

If pattern[\"hostname\"] is the empty string, return error with error code invalid argument.

" + }, + { + "html": "

If scheme is \"file\" return error with error code invalid argument.

" + }, + { + "html": "

Let hostname be the result of trying to unescape\n URL Pattern with pattern[\"hostname\"].

" + }, + { + "html": "

Let inside brackets be false.

" + }, + { + "html": "For each codepoint in hostname:", + "rationale": "if", + "steps": [ + { + "html": "If «U+002F (/), U+003F (?), U+0023 (#)» contains codepoint:", + "rationale": "return", + "steps": [ + { + "html": "

Return error with error code invalid argument.

" + } + ] + }, + { + "html": "If inside brackets is false and codepoint is U+003A (:):", + "rationale": "return", + "steps": [ + { + "html": "

Return error with error code invalid argument.

" + } + ] + }, + { + "html": "

If codepoint is U+005B ([), set inside brackets to true.

" + }, + { + "html": "

If codepoint is U+005D (]), set inside brackets to false.

" + } + ] + }, + { + "html": "

Append hostname to pattern url.

" + } + ] + }, + { + "html": "Otherwise:", + "rationale": "if", + "steps": [ + { + "html": "

If scheme is not \"file\", append \"placeholder\" to pattern url.

" + }, + { + "html": "

Set has hostname to false.

" + } + ] + }, + { + "html": "If pattern contains \"port\":", + "rationale": "if", + "steps": [ + { + "html": "

If pattern[\"port\"] is the empty string, return error with error code invalid argument.

" + }, + { + "html": "

Let port be the result of trying to unescape\n URL Pattern with pattern[\"port\"].

" + }, + { + "html": "

Append \":\" to pattern url.

" + }, + { + "html": "For each codepoint in port:", + "rationale": "if", + "steps": [ + { + "html": "If codepoint is not an ASCII digit:", + "rationale": "return", + "steps": [ + { + "html": "

Return error with error code invalid argument.

" + } + ] + } + ] + }, + { + "html": "

Append port to pattern url.

" + } + ] + }, + { + "html": "Otherwise:", + "rationale": "set", + "steps": [ + { + "html": "

Set has port to false.

" + } + ] + }, + { + "html": "If pattern contains \"pathname\":", + "rationale": "let", + "steps": [ + { + "html": "

Let pathname be the result of trying to unescape URL Pattern with pattern[\"pathname\"].

" + }, + { + "html": "

If pathname does not start with U+002F (/), then\n append \"/\" to pattern url.

" + }, + { + "html": "For each codepoint in pathname:", + "rationale": "if", + "steps": [ + { + "html": "If «U+003F (?), U+0023 (#)» contains codepoint:", + "rationale": "return", + "steps": [ + { + "html": "

Return error with error code invalid argument.

" + } + ] + } + ] + }, + { + "html": "

Append pathname to pattern url.

" + } + ] + }, + { + "html": "Otherwise:", + "rationale": "set", + "steps": [ + { + "html": "

Set has pathname to false.

" + } + ] + }, + { + "html": "If pattern contains \"search\":", + "rationale": "let", + "steps": [ + { + "html": "

Let search be the result of trying to unescape URL pattern with pattern[\"search\"].

" + }, + { + "html": "

If search does not start with U+003F (?), then\n append \"?\" to pattern url.

" + }, + { + "html": "For each codepoint in search:", + "rationale": "if", + "steps": [ + { + "html": "If codepoint is U+0023 (#):", + "rationale": "return", + "steps": [ + { + "html": "

Return error with error code invalid argument.

" + } + ] + } + ] + }, + { + "html": "

Append search to pattern url.

" + } + ] + }, + { + "html": "Otherwise:", + "rationale": "set", + "steps": [ + { + "html": "

Set has search to false.

" + } + ] + } + ] + }, + { + "html": "Otherwise, if pattern matches the network.UrlPatternString production:", + "rationale": "let", + "steps": [ + { + "html": "

Let pattern url be the result of trying to unescape URL\n pattern with pattern[\"pattern\"].

" + } + ] + }, + { + "html": "

Let url be the result of parsing pattern url.

" + }, + { + "html": "

If url is failure, return error with error code invalid argument.

" + }, + { + "html": "

Let parsed be a struct with the following fields:

\n
\n
protocol \n
url’s scheme if has protocol is true, or null otherwise. \n
hostname \n
url’s host if has hostname is true, or null otherwise. \n
port \n
\n \n
pathname \n
\n \n
search \n
\n \n
", + "rationale": "if", + "steps": [ + { + "html": "

If has port is false:

", + "ignored": [ + "null." + ] + }, + { + "html": "Otherwise:", + "rationale": "if", + "steps": [ + { + "html": "

If url’s scheme is special and url’s scheme's default port is not null, and url’s port is null or is\n equal to scheme's default port:

", + "ignored": [ + "The empty string." + ] + }, + { + "html": "Otherwise, if url’s port is not null:", + "rationale": "serialize", + "steps": [ + { + "html": "

Serialize an integer with url’s port.

" + } + ] + }, + { + "html": "

Otherwise:

", + "ignored": [ + "null." + ] + } + ] + } + ], + "additional": [ + { + "html": "", + "rationale": "if", + "steps": [ + { + "html": "

If has pathname is false:

", + "ignored": [ + "null." + ] + }, + { + "html": "

Otherwise:

", + "ignored": [ + "The result of running the URL path serializer with url, if url’s path is not the empty string and is not empty, or null otherwise." + ] + } + ] + }, + { + "html": "", + "rationale": "if", + "steps": [ + { + "html": "

If has search is false:

", + "ignored": [ + "null." + ] + }, + { + "html": "

Otherwise:

", + "ignored": [ + "The empty string if url’s query is null, or url’s query otherwise." + ] + } + ] + } + ] + }, + { + "html": "

Return success with data parsed.

" + } + ] + }, + { + "name": "match URL pattern", + "href": "https://www.w3.org/TR/webdriver-bidi/#match-url-pattern", + "html": "To match URL pattern given url pattern and url string:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let url be the result of parsing url string.

" + }, + { + "html": "

If url pattern’s protocol is not null and is not equal to url’s scheme, return false.

" + }, + { + "html": "

If url pattern’s hostname is not null and is not equal to url’s host, return false.

" + }, + { + "html": "If url pattern’s port is not null:", + "rationale": "let", + "steps": [ + { + "html": "

Let port be null.

" + }, + { + "html": "If url’s scheme is special and url’s scheme's default port is not null, and url’s port is\n null or is equal to scheme's default port:", + "rationale": "set", + "steps": [ + { + "html": "

Set port to the empty string.

" + } + ] + }, + { + "html": "Otherwise, if url’s port, is not null:", + "rationale": "set", + "steps": [ + { + "html": "

Set port to serialize an integer with url’s port.

" + } + ] + }, + { + "html": "

If url pattern’s port is not equal to port, return false.

" + } + ] + }, + { + "html": "

If url pattern’s pathname is not null and is not equal to the result of\n running the URL path serializer with url, return false.

" + }, + { + "html": "If url pattern’s search is not null:", + "rationale": "let", + "steps": [ + { + "html": "

Let url query be url’s query.

" + }, + { + "html": "

If url query is null, set url query to the empty string.

" + }, + { + "html": "

If url pattern’s search is not equal to url query, return false.

" + } + ] + }, + { + "html": "

Return true.

" + } + ] + }, + { + "name": "remote end steps for network.addRequestIntercept", + "html": "The remote end steps given session and command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let intercept be the string representation of a UUID.

" + }, + { + "html": "

Let url patterns be the urlPatterns field of command\n parameters if present, or an empty list otherwise.

" + }, + { + "html": "

Let navigables be null.

" + }, + { + "html": "If the contexts field of command parameters is present:", + "rationale": "set", + "steps": [ + { + "html": "

Set navigables to an empty set.

" + }, + { + "html": "For each navigable id of command parameters[\"contexts\"]", + "rationale": "let", + "steps": [ + { + "html": "

Let navigable be the result of trying to get a navigable with navigable id.

" + }, + { + "html": "

If navigable is not a top-level traversable, return error with error code invalid argument.

" + }, + { + "html": "

Append navigable to navigables.

" + } + ] + }, + { + "html": "

If navigables is an empty set, return error with error code invalid argument.

" + } + ] + }, + { + "html": "

Let intercept map be session’s intercept map.

" + }, + { + "html": "

Let parsed patterns be an empty list.

" + }, + { + "html": "For each url pattern in url patterns:", + "rationale": "let", + "steps": [ + { + "html": "

Let parsed be the result of trying to parse url pattern with url\n pattern.

" + }, + { + "html": "

Append parsed to parsed patterns.

" + } + ] + }, + { + "html": "

Set intercept map[intercept] to a struct with url patterns parsed patterns, phases command\n parameters[\"phases\"] and browsingContexts navigables.

" + }, + { + "html": "

Return a new map matching the network.AddInterceptResult production with the intercept field set to intercept.

" + } + ] + }, + { + "name": "remote end steps for network.continueRequest", + "html": "The remote end steps given session and command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let blocked requests be session’s blocked request map.

" + }, + { + "html": "

Let request id be command parameters[\"request\"].

" + }, + { + "html": "

If blocked requests does not contain request id then return error with error code no such request.

" + }, + { + "html": "

Let (request, phase, response) be blocked requests[request id].

" + }, + { + "html": "

If phase is not \"beforeRequestSent\", then return error with error code invalid argument.

" + }, + { + "html": "If command parameters contains \"url\":", + "rationale": "let", + "steps": [ + { + "html": "

Let url record be the result of applying the URL parser to command\n parameters[\"url\"], with base URL null.

" + }, + { + "html": "

If url record is failure, return error with error code invalid\n argument.

\n

TODO: Should we also resume here?

" + }, + { + "html": "

Let request’s url be url record.

" + } + ] + }, + { + "html": "If command parameters contains \"method\":", + "rationale": "let", + "steps": [ + { + "html": "

Let method be command parameters[\"method\"].

" + }, + { + "html": "

If method does not match the method token production, return error with error code \"invalid argument\".

" + }, + { + "html": "

Let request’s method be method.

" + } + ] + }, + { + "html": "If command parameters contains \"headers\":", + "rationale": "let", + "steps": [ + { + "html": "

Let headers be an empty header list.

" + }, + { + "html": "For header in command parameters[\"headers\"]:", + "rationale": "let", + "steps": [ + { + "html": "

Let deserialized header be deserialize header with header.

" + }, + { + "html": "

If deserialized header’s name does not match the field-name token production, return error with error code \"invalid argument\".

" + }, + { + "html": "

If deserialized header’s value does not match the header value production, return error with error code \"invalid argument\".

" + }, + { + "html": "

Append deserialized header to headers.

" + } + ] + }, + { + "html": "

Set request’s headers list to headers.

" + } + ] + }, + { + "html": "If command parameters contains \"cookies\":", + "rationale": "let", + "steps": [ + { + "html": "

Let cookie header be an empty byte sequence.

" + }, + { + "html": "For each cookie in command parameters[\"cookies\"]:", + "rationale": "if", + "steps": [ + { + "html": "

If cookie header is not empty, append `;` to cookie\n header.

" + }, + { + "html": "

Append serialize cookie header with cookie to cookie header.

" + } + ] + }, + { + "html": "

Let found cookie header be false.

" + }, + { + "html": "For each header in request’s headers list:", + "rationale": "let", + "steps": [ + { + "html": "

Let name be header’s name.

" + }, + { + "html": "If byte-lowercase name is `cookie`:", + "rationale": "set", + "steps": [ + { + "html": "

Set header’s value to cookie header.

" + }, + { + "html": "

Set found cookie header to true.

" + }, + { + "html": "

Break.

" + } + ] + } + ] + }, + { + "html": "If found cookie header is false:", + "rationale": "append", + "steps": [ + { + "html": "

Append the header (`Cookie`, cookie header) to request’s headers list.

" + } + ] + } + ] + }, + { + "html": "If command parameters contains \"body\":", + "rationale": "let", + "steps": [ + { + "html": "

Let body be deserialize protocol bytes with command\n parameters[\"body\"].

" + }, + { + "html": "

Set request’s body to body.

" + } + ] + }, + { + "html": "

Resume with \"continue request\", request id, and (null,\n \"incomplete\").

" + }, + { + "html": "

Return success with data null.

" + } + ] + }, + { + "name": "remote end steps for network.continueResponse", + "html": "The remote end steps given session and command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let request id be command parameters[\"request\"].

" + }, + { + "html": "

Let response be the result of trying to update the response with session, \"continueResponse\" and command parameters.

" + }, + { + "html": "

Resume with \"continue request\", request id, and\n (response, \"incomplete\").

" + }, + { + "html": "

Return success with data null.

" + } + ] + }, + { + "name": "remote end steps for network.continueWithAuth", + "html": "The remote end steps given session and command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let blocked requests be session’s blocked request map.

" + }, + { + "html": "

Let request id be command parameters[\"request\"].

" + }, + { + "html": "

If blocked requests does not contain request id then return error with error code no such request.

" + }, + { + "html": "

Let (request, phase, response) be blocked requests[request id].

" + }, + { + "html": "

If phase is not \"authRequired\", then return error with error code invalid argument.

" + }, + { + "html": "

If command parameters \"action\" is \"cancel\", set response’s authentication credentials to\n \"cancelled\".

" + }, + { + "html": "If command parameters \"action\" is\n \"provideCredentials\":", + "rationale": "let", + "steps": [ + { + "html": "

Let credentials be command parameters[\"credentials\"].

" + }, + { + "html": "

Assert: credentials[\"type\"] is \"password\".

" + }, + { + "html": "

Set response’s authentication credentials to\n (credentials[\"username\"], credentials[\"password\"])

" + } + ] + }, + { + "html": "

Resume with \"continue request\", request id, and\n (response, \"incomplete\").

" + }, + { + "html": "

Return success with data null.

" + } + ] + }, + { + "name": "remote end steps for network.failRequest", + "html": "The remote end steps given session and command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let blocked requests be session’s blocked request map.

" + }, + { + "html": "

Let request id be command parameters[\"request\"].

" + }, + { + "html": "

If blocked requests does not contain request id then return error with error code no such request.

" + }, + { + "html": "

Let (request, phase, response) be blocked requests[request id].

" + }, + { + "html": "

If phase is \"authRequired\", then return error with error code invalid argument.

" + }, + { + "html": "

Let response be a new network error.

" + }, + { + "html": "

Resume with \"continue request\", request id, and\n (response, \"complete\").

" + }, + { + "html": "

Return success with data null.

" + } + ] + }, + { + "name": "remote end steps for network.provideResponse", + "html": "The remote end steps given session and command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let request id be command parameters[\"request\"].

" + }, + { + "html": "

Let response be the result of trying to update the response with session, \"provideResponse\", and command parameters.

" + }, + { + "html": "If command parameters contains \"body\":", + "rationale": "let", + "steps": [ + { + "html": "

Let body be deserialize protocol bytes with command\n parameters[\"body\"].

" + }, + { + "html": "

Set response’s body to body as a body.

" + } + ] + }, + { + "html": "

Resume with \"continue request\", request id, and\n (response,\"complete\").

" + }, + { + "html": "

Return success with data null.

" + } + ] + }, + { + "name": "remote end steps for network.removeIntercept", + "html": "The remote end steps given session and command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let intercept be the value of the \"intercept\" field in command\n parameters.

" + }, + { + "html": "

Let intercept map be session’s intercept map.

" + }, + { + "html": "

If intercept map does not contain intercept, return error with error code no such intercept.

" + }, + { + "html": "

Remove intercept from intercept map.

" + } + ] + }, + { + "name": "remote end steps for network.removeIntercept", + "html": "The remote end steps given session and command parameters are:", + "rationale": "return", + "steps": [ + { + "html": "

Return success with data null.

" + } + ] + }, + { + "name": "WebDriver BiDi cache behavior", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-cache-behavior", + "html": "The WebDriver BiDi cache behavior steps given request are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let navigable be null.

" + }, + { + "html": "If request’s window is an environment settings object:", + "rationale": "let", + "steps": [ + { + "html": "

Let environment settings be request’s window

" + }, + { + "html": "

If there is a navigable whose active window is environment\n settingsglobal object, set navigable to\n the top-level browsing context for that browsing context.

" + } + ] + }, + { + "html": "

If navigable is not null and navigable cache behavior map contains navigable, return navigable cache behavior map[navigable].

" + }, + { + "html": "

Return default cache behavior.

" + } + ] + }, + { + "name": "navigable cache behavior", + "href": "https://www.w3.org/TR/webdriver-bidi/#navigable-cache-behavior", + "html": "The navigable cache behavior steps given navigable are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let top-level navigable be navigable’s top-level traversable.

" + }, + { + "html": "

If navigable cache behavior map contains top-level navigable, return navigable cache behavior map[top-level navigable].

" + }, + { + "html": "

Return default cache behavior.

" + } + ] + }, + { + "name": "remote end steps for network.setCacheBehavior", + "html": "The remote end steps given session and command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let behavior be command parameters[\"cacheBehavior\"].

" + }, + { + "html": "If command parameters does not contain \"contexts\":", + "rationale": "set", + "steps": [ + { + "html": "

Set the default cache behavior to behavior.

" + }, + { + "html": "

Clear navigable cache behavior map.

" + }, + { + "html": "

Switch on the value of behavior:

\n
\n
\"bypass\" \n
Perform implementation-defined steps to disable any\n implementation-specific resource caches. \n
\"default\" \n
Perform implementation-defined steps to enable any\n implementation-specific resource caches that are usually enabled in the\n current remote end configuration. \n
" + }, + { + "html": "

Return success with data null.

" + } + ] + }, + { + "html": "

Let navigables be an empty set.

" + }, + { + "html": "For each navigable id of command parameters[\"contexts\"]:", + "rationale": "let", + "steps": [ + { + "html": "

Let context be the result of trying to get a navigable with navigable id.

" + }, + { + "html": "

If context is not a top-level browsing context, return error with error code invalid argument.

" + }, + { + "html": "

Append context to navigables.

" + } + ] + }, + { + "html": "For each navigable in navigables:", + "rationale": "if", + "steps": [ + { + "html": "

If navigable cache behavior map contains navigable, and navigable cache behavior map[navigable] is equal to behavior then\n continue.

" + }, + { + "html": "

Switch on the value of behavior:

\n
\n
\"bypass\" \n
Perform implementation-defined steps to disable any implementation-specific\n resource caches for network requests originating from any browsing\n context for which navigable is the top-level browsing context. \n
\"default\" \n
Perform implementation-defined steps to enable any\n implementation-specific resource caches that are usually enabled in the\n current remote end configuration for network requests\n originating from any browsing context for which navigable is the top-level browsing context. \n
" + }, + { + "html": "If behavior is equal to default cache behavior:", + "rationale": "if", + "steps": [ + { + "html": "

If navigable cache behavior map contains navigable, remove navigable cache behavior map[navigable].

" + } + ] + }, + { + "html": "Otherwise:", + "rationale": "set", + "steps": [ + { + "html": "

Set navigable cache behavior map[navigable] to behavior.

" + } + ] + } + ] + }, + { + "html": "

Return success with data null.

" + } + ] + }, + { + "name": "WebDriver BiDi auth required", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-auth-required", + "html": "The remote end event trigger is the WebDriver BiDi auth required steps given request and response:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let redirect count be request’s redirect count.

" + }, + { + "html": "

Assert: before request sent map[request] is equal to redirect count.

" + }, + { + "html": "

If request’s client is not null, let related navigables be the result of get related navigables with request’s client. Otherwise let related navigables be an empty\n set.

" + }, + { + "html": "For each session in the set of sessions for which an event is enabled given \"network.authRequired\" and related navigables:", + "rationale": "let", + "steps": [ + { + "html": "

Let params be the result of process a network event with session \"network.authRequired\", and request.

" + }, + { + "html": "

Let response data be the result of get the response data with response.

" + }, + { + "html": "

Assert: response data contains \"authChallenge\".

" + }, + { + "html": "

Set the response field of params to response data.

" + }, + { + "html": "

Assert: params matches the network.AuthRequiredParameters production.

" + }, + { + "html": "

Let body be a map matching the network.AuthRequired production, with the params field set to params.

" + }, + { + "html": "

Emit an event with session and body.

" + }, + { + "html": "If params[\"isBlocked\"] is true:", + "rationale": "let", + "steps": [ + { + "html": "

Let blocked requests be session’s blocked request map.

" + }, + { + "html": "

Let request id be request’s request id.

" + }, + { + "html": "

Set blocked requests[request id] to (request,\n \"authRequired\", response).

" + }, + { + "html": "

Await with «\"continue request\"», and request id.

" + }, + { + "html": "

Remove blocked requests[request id].

" + } + ] + } + ] + } + ] + }, + { + "name": "WebDriver BiDi before request sent", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-before-request-sent", + "html": "The remote end event trigger is the WebDriver BiDi before\nrequest sent steps given request:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

If before request sent map does not contain request, set before\n request sent map[request] to a new set.

" + }, + { + "html": "

Let redirect count be request’s redirect count.

" + }, + { + "html": "

Add redirect count to before request sent map[request].

" + }, + { + "html": "

If request’s client is not null, let related navigables be the result of get related navigables with request’s client. Otherwise let related navigables be an empty\n set.

" + }, + { + "html": "

Let response be null.

" + }, + { + "html": "

Let response status be \"incomplete\".

" + }, + { + "html": "For each session in the set of sessions for which an event is enabled given \"network.beforeRequestSent\" and related navigables:", + "rationale": "let", + "steps": [ + { + "html": "

Let params be the result of process a network event with session,\n \"network.beforeRequestSent\", and request.

" + }, + { + "html": "

If params is null then continue.

" + }, + { + "html": "

Let initiator be the result of get the initiator with request.

" + }, + { + "html": "

If initiator is not empty, set the initiator field\n of params to initiator.

" + }, + { + "html": "

Assert: params matches the network.BeforeRequestSentParameters production.

" + }, + { + "html": "

Let body be a map matching the network.BeforeRequestSent production, with the params field set to params.

" + }, + { + "html": "

Emit an event with session and body.

" + }, + { + "html": "If params[\"isBlocked\"] is true, then:", + "rationale": "let", + "steps": [ + { + "html": "

Let blocked requests be session’s blocked request map.

" + }, + { + "html": "

Let request id be request’s request id.

" + }, + { + "html": "

Set blocked requests[request id] to (request,\n \"beforeRequestSent\", null).

" + }, + { + "html": "

Let (response, status) be await with «\"continue\n request\"», and request’s request id.

" + }, + { + "html": "

If status is \"complete\" set response status to status.

" + }, + { + "html": "

Remove blocked requests[request id].

" + } + ] + } + ] + }, + { + "html": "

Return (response, response status).

" + } + ] + }, + { + "name": "WebDriver BiDi fetch error", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-fetch-error", + "html": "The remote end event trigger is the WebDriver BiDi fetch\nerror steps given request:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

If before request sent map[request] does not contain request’s redirect count, then run the WebDriver BiDi before request sent steps\n with request.

" + }, + { + "html": "

If request’s client is not null, let related navigables be the result of get related navigables with request’s client. Otherwise let related navigables be an empty\n set.

" + }, + { + "html": "For each session in the set of sessions for which an event is enabled given \"network.fetchError\" and related navigables:", + "rationale": "let", + "steps": [ + { + "html": "

Let params be the result of process a network event with session \"network.fetchError\", and request.

" + }, + { + "html": "

TODO: Set the errorText field of params.

" + }, + { + "html": "

Assert: params matches the network.FetchErrorParameters production.

" + }, + { + "html": "

Let body be a map matching the network.FetchError production, with the params field set to params.

" + }, + { + "html": "

Emit an event with session and body.

" + } + ] + } + ] + }, + { + "name": "WebDriver BiDi response completed", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-response-completed", + "html": "The remote end event trigger is the WebDriver BiDi response\ncompleted steps given request and response:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let redirect count be request’s redirect count.

" + }, + { + "html": "

Assert: before request sent map[request] contains redirect count.

" + }, + { + "html": "

If request’s client is not null, let related navigables be the result of get related navigables with request’s client. Otherwise let related navigables be an empty\n set.

" + }, + { + "html": "For each session in the set of sessions for which an event is enabled given \"network.responseCompleted\" and related navigables:", + "rationale": "let", + "steps": [ + { + "html": "

Let params be the result of process a network event with session \"network.responseCompleted\", and request.

" + }, + { + "html": "

Assert: params[\"isBlocked\"] is false.

" + }, + { + "html": "

Let response data be the result of get the response data with response.

" + }, + { + "html": "

Set the response field of params to response data.

" + }, + { + "html": "

Assert: params matches the network.ResponseCompletedParameters production.

" + }, + { + "html": "

Let body be a map matching the network.ResponseCompleted production, with the params field set to params.

" + }, + { + "html": "

Emit an event with session and body.

" + } + ] + } + ] + }, + { + "name": "WebDriver BiDi response started", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-response-started", + "html": "The remote end event trigger is the WebDriver BiDi response\nstarted steps given request and response:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let redirect count be request’s redirect count.

" + }, + { + "html": "

Assert: before request sent map[request] is equal to redirect count.

" + }, + { + "html": "

If request’s client is not null, let related navigables be the result of get related navigables with request’s client. Otherwise let related navigables be an empty\n set.

" + }, + { + "html": "

Let response status be \"incomplete\".

" + }, + { + "html": "For each session in the set of sessions for which an event is enabled given \"network.responseStarted\" and related navigables:", + "rationale": "let", + "steps": [ + { + "html": "

Let params be the result of process a network event with session \"network.responseStarted\", and request.

" + }, + { + "html": "

Let response data be the result of get the response data with response.

" + }, + { + "html": "

Set the response field of params to response data.

" + }, + { + "html": "

Assert: params matches the network.ResponseStartedParameters production.

" + }, + { + "html": "

Let body be a map matching the network.ResponseStarted production, with the params field set to params.

" + }, + { + "html": "

Emit an event with session and body.

" + }, + { + "html": "If params[\"isBlocked\"] is true:", + "rationale": "let", + "steps": [ + { + "html": "

Let blocked requests be session’s blocked request map.

" + }, + { + "html": "

Let request id be request’s request id.

" + }, + { + "html": "

Set blocked requests[request id] to (request,\n \"beforeRequestSent\", response).

" + }, + { + "html": "

Let (response, status) be await with «\"continue request\"», and request id.

" + }, + { + "html": "

If status is \"complete\", set response status to status.

" + }, + { + "html": "

Remove blocked requests[request id].

" + } + ] + } + ] + }, + { + "html": "

Return (response, response status).

" + } + ] + }, + { + "name": "run WebDriver BiDi preload scripts", + "href": "https://www.w3.org/TR/webdriver-bidi/#run-webdriver-bidi-preload-scripts", + "html": "To run WebDriver BiDi preload scripts given environment settings:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let document be environment settingsrelevant global object's associated Document.

" + }, + { + "html": "

Let navigable be document’s navigable.

" + }, + { + "html": "For each session in active BiDi sessions:", + "rationale": "for", + "steps": [ + { + "html": "For each preload script in session’s preload script map's values:", + "rationale": "if", + "steps": [ + { + "html": "If preload script’s contexts is not null:", + "rationale": "let", + "steps": [ + { + "html": "

Let navigable id be navigable’s top-level traversable's id.

" + }, + { + "html": "

If preload script’s contexts does not contain navigable id, continue.

" + } + ] + }, + { + "html": "

If preload script’s sandbox is not null, let realm be get\n or create a sandbox realm with preload script’s sandbox and navigable. Otherwise let realm be environment settingsrealm execution context's Realm component.

" + }, + { + "html": "

Let exception reporting global be be environment settingsrealm execution context's Realm component’s global object.

" + }, + { + "html": "

Let arguments be preload script’s arguments.

" + }, + { + "html": "

Let deserialized arguments be an empty list.

" + }, + { + "html": "For each argument in arguments:", + "rationale": "let", + "steps": [ + { + "html": "

Let channel be create a channel with session, realm and argument.

" + }, + { + "html": "

Append channel to deserialized arguments.

" + } + ] + }, + { + "html": "

Let base URL be the API base URL of environment settings.

" + }, + { + "html": "

Let options be the default script fetch options.

" + }, + { + "html": "

Let function declaration be preload script’s function declaration.

" + }, + { + "html": "

Let (script, function body evaluation status) be the result of evaluate function body with function declaration, environment settings, base URL, and options.

" + }, + { + "html": "

If function body evaluation status is an abrupt completion, then report an exception given by function body evaluation status.[[Value]]\n for exception reporting global.

" + }, + { + "html": "

Let function object be function body evaluation status.[[Value]].

" + }, + { + "html": "If IsCallable(function object) is false:", + "rationale": "let", + "steps": [ + { + "html": "

Let error be a new TypeError object in realm.

" + }, + { + "html": "

Report an exception error for exception reporting global.

" + } + ] + }, + { + "html": "

Prepare to run script with environment settings.

" + }, + { + "html": "

Set evaluation status to Call(function object, null, deserialized arguments).

" + }, + { + "html": "

Clean up after running script with environment settings.

" + }, + { + "html": "

If evaluation status is an abrupt completion, then report an exception given by evaluation status.[[Value]] for exception reporting global.

" + } + ] + } + ] + } + ] + }, + { + "name": "create a channel", + "href": "https://www.w3.org/TR/webdriver-bidi/#create-a-channel", + "html": "To create a channel given session, realm and protocol value:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let channel properties be protocol value[\"value\"].

" + }, + { + "html": "Let steps be the following steps given the argument message:", + "rationale": "let", + "steps": [ + { + "html": "

Let current realm be the current Realm Record.

" + }, + { + "html": "

Emit a script message with session, current realm, channel properties and message.

" + } + ] + }, + { + "html": "

Return CreateBuiltinFunction(steps, 1, \"\", « », realm).

" + } + ] + }, + { + "name": "get exception details", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-exception-details", + "html": "To get exception details given a realm, a completion record record, an ownership type and a session:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Assert: record.[[Type]] is throw.

" + }, + { + "html": "

Let text be an implementation-defined textual description of the error\n represented by record.

\n

TODO: Tighten up the requirements here; people will probably try to parse\n this data with regex or something equally bad.

" + }, + { + "html": "

Let serialization options be a map matching the script.SerializationOptions production with the fields set to\n their default values.

" + }, + { + "html": "

Let exception be the result of serialize as a remote value with record.[[Value]], serialization options, ownership type,\n a new map as serialization internal map, realm and session.

" + }, + { + "html": "

Let stack trace be the stack trace for an exception given record.

" + }, + { + "html": "

If stack trace has size of 1 or greater, let line number be value of the lineNumber field in stack trace[0], and let column number be\n the value of the columnNumber field stack trace[0]. Otherwise\n let line number and column number be 0.

" + }, + { + "html": "

Let exception details be a map matching the script.ExceptionDetails production, with the text field set to text, the exception field set to exception, the lineNumber field set to line number, the columnNumber field set to column number, and the stackTrace field set to stack trace.

" + }, + { + "html": "

Return exception details.

" + } + ] + }, + { + "name": "deserialize key-value list", + "href": "https://www.w3.org/TR/webdriver-bidi/#deserialize-key-value-list", + "html": "To deserialize key-value list given serialized key-value list, realm and session:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let deserialized key-value list be a new list.

" + }, + { + "html": "For each serialized key-value in the serialized key-value list:", + "rationale": "if", + "steps": [ + { + "html": "

If size of serialized key-value is not 2,\n return error with error code invalid argument.

" + }, + { + "html": "

Let serialized key be serialized key-value[0].

" + }, + { + "html": "

If serialized key is a string,\n let deserialized key be serialized key.

" + }, + { + "html": "

Otherwise let deserialized key be result of trying to\n given deserialize local value with serialized key, realm and session.

" + }, + { + "html": "

Let serialized value be serialized key-value[1].

" + }, + { + "html": "

Let deserialized value be result of trying to deserialize local value given serialized value, realm and session.

" + }, + { + "html": "

Append CreateArrayFromListdeserialized key, deserialized value») to deserialized key-value list.

" + } + ] + }, + { + "html": "

Return success with data deserialized key-value list.

" + } + ] + }, + { + "name": "deserialize value list", + "href": "https://www.w3.org/TR/webdriver-bidi/#deserialize-value-list", + "html": "To deserialize value list given serialized value list, realm and session:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let deserialized values be a new list.

" + }, + { + "html": "For each serialized value in the serialized value list:", + "rationale": "let", + "steps": [ + { + "html": "

Let deserialized value be result of trying to deserialize local value given serialized value, realm and session.

" + }, + { + "html": "

Append deserialized value to deserialized values;

" + } + ] + }, + { + "html": "

Return success with data deserialized values.

" + } + ] + }, + { + "name": "deserialize local value", + "href": "https://www.w3.org/TR/webdriver-bidi/#deserialize-local-value", + "html": "To deserialize local value given local protocol value, realm and session:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

If local protocol value matches the script.RemoteReference production, return deserialize remote reference of given local protocol value, realm and session.

" + }, + { + "html": "

If local protocol value matches the script.PrimitiveProtocolValue production, return deserialize primitive protocol value with local protocol value.

" + }, + { + "html": "

If local protocol value matches the script.ChannelValue production,\n return create a channel with session, realm and local protocol value.

" + }, + { + "html": "

Let type be the value of the type field of local protocol value or undefined if\n no such a field.

" + }, + { + "html": "

Let value be the value of the value field of local protocol value or undefined\n if no such a field.

" + }, + { + "html": "

In the following list of conditions and associated steps, run the first set of steps for which\n the associated condition is true:

\n
\n
type is the string \"array\" \n
\n \n
type is the string \"date\" \n
\n \n
type is the string \"map\" \n
\n \n
type is the string \"object\" \n
\n \n
type is the string \"regexp\" \n
\n \n
type is the string \"set\" \n
\n \n
otherwise \n
Return error with error code invalid argument. \n
", + "rationale": "let", + "steps": [ + { + "html": "

Let deserialized value list be a result of trying to deserialize value list given value, realm and session.

" + }, + { + "html": "

Return success with data CreateArrayFromList(deserialized value list).

" + } + ], + "additional": [ + { + "html": "", + "rationale": "if", + "steps": [ + { + "html": "

If value does not match Date Time String Format, return error with error code invalid argument.

" + }, + { + "html": "

Let date result be Construct(Date, value).

" + }, + { + "html": "

Assert: date result is not an abrupt completion.

" + }, + { + "html": "

Return success with data date result.

" + } + ] + }, + { + "html": "", + "rationale": "let", + "steps": [ + { + "html": "

Let deserialized key-value list be a result of trying to deserialize key-value list with value, realm and session.

" + }, + { + "html": "

Let iterable be CreateArrayFromList(deserialized key-value list)

" + }, + { + "html": "

Return success with data Map(iterable).

" + } + ] + }, + { + "html": "", + "rationale": "let", + "steps": [ + { + "html": "

Let deserialized key-value list be a result of trying to deserialize key-value list with value, realm and session.

" + }, + { + "html": "

Let iterable be CreateArrayFromList(deserialized key-value list)

" + }, + { + "html": "

Return success with data Object.fromEntries(iterable).

" + } + ] + }, + { + "html": "", + "rationale": "let", + "steps": [ + { + "html": "

Let pattern be the value of the pattern field of local protocol value.

" + }, + { + "html": "

Let flags be the value of the flags field of local protocol value or\n undefined if no such a field.

" + }, + { + "html": "

Let regex_result be Regexp(pattern, flags). If this throws exception, return error with error code invalid argument.

" + }, + { + "html": "

Return success with data regex_result.

" + } + ] + }, + { + "html": "", + "rationale": "let", + "steps": [ + { + "html": "

Let deserialized value list be a result of trying to deserialize value list given value, realm and session.

" + }, + { + "html": "

Let iterable be CreateArrayFromList(deserialized key-value list)

" + }, + { + "html": "

Return success with data Set object(iterable).

" + } + ] + } + ] + } + ] + }, + { + "name": "get a realm", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-a-realm", + "html": "To get a realm given realm id:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

If realm id is null, return success with data null.

" + }, + { + "html": "

If there is no realm with id realm id return error with error code no such frame

" + }, + { + "html": "

Let realm be the realm with id realm id.

" + }, + { + "html": "

Return success with data realm

" + } + ] + }, + { + "name": "serialize primitive protocol value", + "href": "https://www.w3.org/TR/webdriver-bidi/#serialize-primitive-protocol-value", + "html": "To serialize primitive protocol value given a value:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let remote value be undefined.

" + }, + { + "html": "

In the following list of conditions and associated steps, run the first set\n of steps for which the associated condition is true, if any:

\n
\n
Type(value) is undefined \n
Let remote value be a map matching the script.UndefinedValue production in the local end definition. \n
Type(value) is Null \n
Let remote value be a map matching the script.NullValue production in the local end definition. \n
Type(value) is String \n
\n Let remote value be a map matching the script.StringValue production in the local end definition, with the value property set to value. \n \n
Type(value) is Number \n
\n \n
Type(value) is Boolean \n
Let remote value be a map matching the script.BooleanValue production in the local end definition, with the value property set to value. \n
Type(value) is BigInt \n
Let remote value be a map matching the script.BigIntValue production in the local end definition, with the value property set to the result of running the ToString operation on value. \n
", + "rationale": "switch", + "steps": [ + { + "html": "

Switch on the value of value:

\n
\n
NaN \n
Let serialized be \"NaN\" \n
-0 \n
Let serialized be \"-0\" \n
Infinity \n
Let serialized be \"Infinity\" \n
-Infinity \n
Let serialized be \"-Infinity\" \n
Otherwise: \n
Let serialized be value \n
" + }, + { + "html": "

Let remote value be a map matching the script.NumberValue production in the local end definition, with the value property set to serialized.

" + } + ] + }, + { + "html": "

Return remote value

" + } + ] + }, + { + "name": "deserialize primitive protocol value", + "href": "https://www.w3.org/TR/webdriver-bidi/#deserialize-primitive-protocol-value", + "html": "To deserialize primitive protocol value given a primitive protocol value:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let type be the value of the type field of primitive protocol value.

" + }, + { + "html": "

Let value be undefined.

" + }, + { + "html": "If primitive protocol value has field value:", + "rationale": "let", + "steps": [ + { + "html": "

Let value be the value of the value field of primitive protocol value.

" + } + ] + }, + { + "html": "

In the following list of conditions and associated steps, run the first set of steps for which\n the associated condition is true:

\n
\n
type is the string \"undefined\" \n
Return success with data undefined. \n
type is the string \"null\" \n
Return success with data null. \n
type is the string \"string\" \n
Return success with data value. \n
type is the string \"number\" \n
\n \n
type is the string \"boolean\" \n
Return success with data value. \n
type is the string \"bigint\" \n
\n \n
", + "rationale": "if", + "steps": [ + { + "html": "

If Type(value) is Number, return success with data value.

" + }, + { + "html": "

Assert: Type(value) is String.

" + }, + { + "html": "

If value is the string \"NaN\", return success with\n data NaN.

" + }, + { + "html": "

Let number_result be StringToNumber(value).

" + }, + { + "html": "

If number_result is NaN, return error with error code invalid argument

" + }, + { + "html": "

Return success with data number_result.

" + } + ], + "additional": [ + { + "html": "", + "rationale": "let", + "steps": [ + { + "html": "

Let bigint_result be StringToBigInt(value).

" + }, + { + "html": "

If bigint_result is undefined, return error with error code invalid argument

" + }, + { + "html": "

Return success with data bigint_result.

" + } + ] + } + ] + }, + { + "html": "

Return error with error code invalid argument

" + } + ] + }, + { + "name": "get the navigable", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-navigable", + "html": "To get the navigable with given realm:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let global object be the global object of the realm.

" + }, + { + "html": "

Let global object be the unwrapped global object.

" + }, + { + "html": "

If global object is not a Window object, return null.

" + }, + { + "html": "

Let document be global object’s wrapped Window's associated Document.

" + }, + { + "html": "

Return document’s node navigable.

" + } + ] + }, + { + "name": "get the worker’s owners", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-workers-owners", + "html": "To get the worker’s owners with given global object:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Assert: global object is a WorkerGlobalScope object.

" + }, + { + "html": "

Let owners be an empty list.

" + }, + { + "html": "For each owner in the global object’s associated owner set:", + "rationale": "let", + "steps": [ + { + "html": "

Let owner environment settings be owner’s relevant settings object.

" + }, + { + "html": "

Let owner realm info be the result of get the realm info given owner environment settings.

" + }, + { + "html": "

If owner realm info is null, continue.

" + }, + { + "html": "

Append owner realm info[\"id\"] to owners.

" + } + ] + }, + { + "html": "

Return owners.

" + } + ] + }, + { + "name": "get the realm info", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-realm-info", + "html": "To get the realm info given environment settings:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let realm be environment settingsrealm execution context's Realm component.

" + }, + { + "html": "

Let realm id be the realm id for realm.

" + }, + { + "html": "

Let origin be the serialization of an origin given environment settings’s origin.

" + }, + { + "html": "

Let global object be the global object specified by environment settings

" + }, + { + "html": "

Run the steps under the first matching condition:

\n
\n
global object is a Window object \n
\n \n
global object is SandboxWindowProxy object \n
\n TODO: Unclear if this is the right formulation for handling sandboxes. \n \n
global object is a DedicatedWorkerGlobalScope object \n
\n \n
global object is a SharedWorkerGlobalScope object \n
\n \n
global object is a ServiceWorkerGlobalScope object \n
\n \n
global object is a WorkerGlobalScope object \n
\n \n
global object is a PaintWorkletGlobalScope object \n
\n \n
global object is a AudioWorkletGlobalScope object \n
\n \n
global object is a WorkletGlobalScope object \n
\n \n
Otherwise: \n
\n \n
", + "rationale": "let", + "steps": [ + { + "html": "

Let document be environment settingsrelevant global object's associated Document.

" + }, + { + "html": "

Let navigable be document’s node navigable.

" + }, + { + "html": "

If navigable is null, return null.

" + }, + { + "html": "

Let navigable id be the navigable id for navigable.

" + }, + { + "html": "

Let realm info be a map matching the script.WindowRealmInfo production,\n with the realm field set to realm id, the origin field set to origin, and the context field set to navigable id.

" + } + ], + "additional": [ + { + "html": "TODO: Unclear if this is the right formulation for handling sandboxes.", + "rationale": "let", + "steps": [ + { + "html": "

Let document be global object’s wrapped Window's associated Document.

" + }, + { + "html": "

Let navigable be document’s node navigable.

" + }, + { + "html": "

If navigable is null, return null.

" + }, + { + "html": "

Let navigable id be the navigable id for navigable.

" + }, + { + "html": "

Let sandbox name be the result of get a sandbox name given realm.

" + }, + { + "html": "

Assert: sandbox name is not null.

" + }, + { + "html": "

Let realm info be a map matching the script.WindowRealmInfo production,\n with the realm field set to realm id, the origin field set to origin, the context field set to navigable id,\n and the sandbox field set to sandbox name.

" + } + ] + }, + { + "html": "", + "rationale": "let", + "steps": [ + { + "html": "

Let owners be the result of get the worker’s owners given global object.

" + }, + { + "html": "

Assert: owners has precisely one item.

" + }, + { + "html": "

Let realm info be a map matching the script.DedicatedWorkerRealmInfo production,\n with the realm field set to realm id, the origin field\n set to origin, and the owners field set to owners.

" + } + ] + }, + { + "html": "", + "rationale": "let", + "steps": [ + { + "html": "

Let realm info be a map matching the script.SharedWorkerRealmInfo production,\n with the realm field set to realm id, and the origin field\n set to origin.

" + } + ] + }, + { + "html": "", + "rationale": "let", + "steps": [ + { + "html": "

Let realm info be a map matching the script.ServiceWorkerRealmInfo production,\n with the realm field set to realm id, and the origin field\n set to origin.

" + } + ] + }, + { + "html": "", + "rationale": "let", + "steps": [ + { + "html": "

Let realm info be a map matching the script.WorkerRealmInfo production,\n with the realm field set to realm id, and the origin field set to origin.

" + } + ] + }, + { + "html": "", + "rationale": "let", + "steps": [ + { + "html": "

Let realm info be a map matching the script.PaintWorkletRealmInfo production,\n with the realm field set to realm id, and the origin field set to origin.

" + } + ] + }, + { + "html": "", + "rationale": "let", + "steps": [ + { + "html": "

Let realm info be a map matching the script.AudioWorkletRealmInfo production,\n with the realm field set to realm id, and the origin field set to origin.

" + } + ] + }, + { + "html": "", + "rationale": "let", + "steps": [ + { + "html": "

Let realm info be a map matching the script.WorkletRealmInfo production,\n with the realm field set to realm id, and the origin field set to origin.

" + } + ] + }, + { + "html": "", + "rationale": "let", + "steps": [ + { + "html": "

Let realm info be null.

" + } + ] + } + ] + }, + { + "html": "

Return realm info

" + } + ] + }, + { + "name": "deserialize remote reference", + "href": "https://www.w3.org/TR/webdriver-bidi/#deserialize-remote-reference", + "html": "To deserialize remote reference given remote reference, realm and session:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Assert remote reference matches the script.RemoteReference production.

" + }, + { + "html": "

If remote reference matches the script.SharedReference production, return deserialize shared reference with remote reference, realm and session.

" + }, + { + "html": "

Return deserialize remote object reference with remote reference and realm.

" + } + ] + }, + { + "name": "deserialize remote object reference", + "href": "https://www.w3.org/TR/webdriver-bidi/#deserialize-remote-object-reference", + "html": "To deserialize remote object reference given remote object reference and realm:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let handle id be the value of the handle field of remote object reference.

" + }, + { + "html": "

Let handle map be realm’s handle object map

" + }, + { + "html": "

If handle map does not contain handle id, then return error with error code no such handle.

" + }, + { + "html": "

Return success with data handle map[handle id].

" + } + ] + }, + { + "name": "deserialize shared reference", + "href": "https://www.w3.org/TR/webdriver-bidi/#deserialize-shared-reference", + "html": "To deserialize shared reference given shared reference, realm and session:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Assert shared reference matches the script.SharedReference production.

" + }, + { + "html": "

Let navigable be get the navigable with realm.

" + }, + { + "html": "

If navigable is null, return error with error code no such node.

" + }, + { + "html": "

Let shared id be the value of the sharedId field of shared reference.

" + }, + { + "html": "

Let node be result of trying to get a node with session, navigable and shared id.

" + }, + { + "html": "

If node is null, return error with error code no such node.

" + }, + { + "html": "

Let environment settings be the environment settings object whose realm execution context's Realm component is realm.

" + }, + { + "html": "

If node’s node document's origin is not same origin\n domain with environment settings’s origin then return error with error code no such node.

" + }, + { + "html": "

Let realm global object be the global object of the realm.

" + }, + { + "html": "

If the realm global object is SandboxWindowProxy object, set node to the SandboxProxy wrapping node in the realm.

" + }, + { + "html": "

Return success with data node.

" + } + ] + }, + { + "name": "handle for an object", + "href": "https://www.w3.org/TR/webdriver-bidi/#handle-for-an-object", + "html": "To get the handle for an object given realm, ownership type and object:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

If ownership type is equal \"none\", return null.

" + }, + { + "html": "

Let handle id be a new, unique, string handle for object.

" + }, + { + "html": "

Let handle map be realm’s handle object map

" + }, + { + "html": "

Set handle map[handle id] to object.

" + }, + { + "html": "

Return handle id as a result.

" + } + ] + }, + { + "name": "get shared id for a node", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-shared-id-for-a-node", + "html": "To get shared id for a node given node, and session:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let node be unwrapped node.

" + }, + { + "html": "

If node does not implement Node, return null.

" + }, + { + "html": "

Let navigable be node’s node navigable.

" + }, + { + "html": "

If navigable is null, return null.

" + }, + { + "html": "

Return get or create a node reference with session, navigable and node.

" + } + ] + }, + { + "name": "set internal ids if needed", + "href": "https://www.w3.org/TR/webdriver-bidi/#set-internal-ids-if-needed", + "html": "To set internal ids if needed given serialization internal map, remote value and object:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

If the serialization internal map does not contain object, set serialization internal map[object] to remote value.

" + }, + { + "html": "Otherwise, run the following steps:", + "rationale": "let", + "steps": [ + { + "html": "

Let previously serialized remote value be serialization internal map[object].

" + }, + { + "html": "If previously serialized remote value does not have a field internalId, run the following steps:", + "rationale": "let", + "steps": [ + { + "html": "

Let internal id be the string representation of a UUID based on truly random, or pseudo-random numbers.

" + }, + { + "html": "

Set the internalId field of previously serialized remote value to internal id.

" + } + ] + }, + { + "html": "

Set the internalId field of remote value to a field internalId in previously serialized remote value.

" + } + ] + } + ] + }, + { + "name": "serialize as a remote value", + "href": "https://www.w3.org/TR/webdriver-bidi/#serialize-as-a-remote-value", + "html": "To serialize as a remote value given value, serialization options,\nan ownership type, a serialization internal map, a realm and a session:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let remote value be a result of serialize primitive protocol value given a value.

" + }, + { + "html": "

If remote value is not undefined, return remote value.

" + }, + { + "html": "

In the following list of conditions and associated steps, run the first set\n of steps for which the associated condition is true:

" + }, + { + "html": "

Let handle id be the handle for an object with realm, ownership type and value.

" + }, + { + "html": "

Set ownership type to \"none\".

" + }, + { + "html": "

Let known object be true, if value is in the serialization internal map, otherwise false.

\n
\n
Type(value) is Symbol \n
Let remote value be a map matching the script.SymbolRemoteValue production in the local end definition, with the handle property set to handle id if it’s not null, or omitted otherwise. \n
IsArray(value) \n
Let remote value be serialize an Array-like with session, script.ArrayRemoteValue, handle id, known object, value, serialization options, ownership type, serialization internal map, realm, and session. \n
IsRegExp(value) \n
\n \n
value has a [[DateValue]] internal slot. \n
\n \n
value has a [[MapData]] internal slot \n
\n \n
value has a [[SetData]] internal slot \n
\n \n
value has a [[WeakMapData]] internal slot \n
Let remote value be a map matching the script.WeakMapRemoteValue production in the local end definition, with the handle property set to handle id if it’s not null, or omitted otherwise. \n
value has a [[WeakSetData]] internal slot \n
Let remote value be a map matching the script.WeakSetRemoteValue production in the local end definition, with the handle property set to handle id if it’s not null, or omitted otherwise. \n
value has a [[GeneratorState]] internal slot or [[AsyncGeneratorState]] internal slot \n
Let remote value be a map matching the script.GeneratorRemoteValue production in the local end definition, with the handle property set to handle id if it’s not null, or omitted otherwise. \n
value has an [[ErrorData]] internal slot \n
Let remote value be a map matching the script.ErrorRemoteValue production in the local end definition, with the handle property set to handle id if it’s not null, or omitted otherwise. \n
value has a [[ProxyHandler]] internal slot and a [[ProxyTarget]] internal slot \n
Let remote value be a map matching the script.ProxyRemoteValue production in the local end definition, with the handle property set to handle id if it’s not null, or omitted otherwise. \n
IsPromise(value) \n
Let remote value be a map matching the script.PromiseRemoteValue production in the local end definition, with the handle property set to handle id if it’s not null, or omitted otherwise. \n
value has a [[TypedArrayName]] internal slot \n
Let remote value be a map matching the script.TypedArrayRemoteValue production in the local end definition, with the handle property set to handle id if it’s not null, or omitted otherwise. \n
value has an [[ArrayBufferData]] internal slot \n
Let remote value be a map matching the script.ArrayBufferRemoteValue production in the local end definition, with the handle property set to handle id if it’s not null, or omitted otherwise. \n
value is a platform object that implements NodeList \n
Let remote value be serialize an Array-like with script.NodeListRemoteValue,handle id, known object, value, serialization options, ownership type, serialization internal map, realm, and session. \n
value is a platform object that implements HTMLCollection \n
Let remote value be serialize an Array-like with script.HTMLCollectionRemoteValue, handle id, known object, value, serialization options, ownership type, known object, serialization internal map, realm, and session. \n
value is a platform object that implements Node \n
\n \n
value is a platform object that implements WindowProxy \n
\n \n
value is a platform object \n
1. Let remote value be a map matching the script.ObjectRemoteValue production in the local end definition, with the handle property set to handle id if it’s not null, or omitted otherwise. \n
IsCallable(value) \n
Let remote value be a map matching the script.FunctionRemoteValue production in the local end definition, with the handle property set to handle id if it’s not null, or omitted otherwise. \n
Otherwise: \n
\n \n
", + "rationale": "let", + "steps": [ + { + "html": "

Let pattern be ToString(Get(value, \"source\")).

" + }, + { + "html": "

Let flags be ToString(Get(value, \"flags\")).

" + }, + { + "html": "

Let serialized be a map matching the script.RegExpValue production in the local end definition, with the pattern property set to the pattern and the the flags property set to the flags.

" + }, + { + "html": "

Let remote value be a map matching the script.RegExpRemoteValue production in the local end definition, with the handle property set to handle id if it’s not null, or omitted otherwise, and\n the value property set to serialized.

" + } + ], + "additional": [ + { + "html": "", + "rationale": "set", + "steps": [ + { + "html": "

Set serialized to Call(Date.prototype.toISOString, value).

" + }, + { + "html": "

Assert: serialized is not a throw completion.

" + }, + { + "html": "

Let remote value be a map matching the script.DateRemoteValue production in the local end definition, with the handle property set to handle id if it’s not null, or omitted otherwise, and the\n value set to serialized.

" + } + ] + }, + { + "html": "", + "rationale": "let", + "steps": [ + { + "html": "

Let remote value be a map matching the script.MapRemoteValue production in the local end definition, with the handle property set to handle id if it’s not null, or omitted\n otherwise.

" + }, + { + "html": "

Set internal ids if needed with serialization internal map, remote value and value.

" + }, + { + "html": "

Let serialized be null.

" + }, + { + "html": "If known object is false, and serialization\n options[\"maxObjectDepth\"] is not 0, run the following\n steps:", + "rationale": "let", + "steps": [ + { + "html": "

Let serialized be the result of serialize as a mapping with CreateMapIterator(value, key+value), serialization options, ownership type, serialization internal map, realm, and session.

" + } + ] + }, + { + "html": "

If serialized is not null, set field value of remote value to serialized.

" + } + ] + }, + { + "html": "", + "rationale": "let", + "steps": [ + { + "html": "

Let remote value be a map matching the script.SetRemoteValue production in the local end definition, with the handle property set to handle id if it’s not null, or omitted\n otherwise.

" + }, + { + "html": "

Set internal ids if needed with serialization internal map, remote value and value.

" + }, + { + "html": "

Let serialized be null.

" + }, + { + "html": "If known object is false, and serialization\n options[\"maxObjectDepth\"] is not 0, run the following\n steps:", + "rationale": "let", + "steps": [ + { + "html": "

Let serialized be the result of serialize as a list with CreateSetIterator(value, value), serialization options, ownership type, serialization internal map, realm, and session.

" + } + ] + }, + { + "html": "

If serialized is not null, set field value of remote value to serialized.

" + } + ] + }, + { + "html": "", + "rationale": "let", + "steps": [ + { + "html": "

Let shared id be get shared id for a node with value and session.

" + }, + { + "html": "

Let remote value be a map matching the script.NodeRemoteValue production in the local end definition, with the sharedId property set to shared id if it’s not null, or omitted otherwise, and the handle property set to handle id if it’s not null, or omitted\n otherwise.

" + }, + { + "html": "

Set internal ids if needed with serialization internal map, remote value and value.

" + }, + { + "html": "

Let serialized be null.

" + }, + { + "html": "If known object is false, run the following steps:", + "rationale": "let", + "steps": [ + { + "html": "

Let serialized be a map.

" + }, + { + "html": "

Set serialized[\"nodeType\"] to Get(value, \"nodeType\").

" + }, + { + "html": "

Set node value to Get(value, \"nodeValue\").

" + }, + { + "html": "

If node value is not null set serialized[\"nodeValue\"] to node value.

" + }, + { + "html": "If value implements Element or Attr:", + "rationale": "set", + "steps": [ + { + "html": "

Set serialized[\"localName\"] to Get(value, \"localName\").

" + }, + { + "html": "

Set serialized[\"namespaceURI\"] to Get(value, \"namespaceURI\")

" + } + ] + }, + { + "html": "

Let child node count be the size of value’s children.

" + }, + { + "html": "

Set serialized[\"childNodeCount\"] to child node count.

" + }, + { + "html": "Otherwise, let children be an empty list and, for each node child in the children of value:", + "rationale": "let", + "steps": [ + { + "html": "

Let child serialization options be a clone of serialization options.

" + }, + { + "html": "

If child serialization options[\"maxDomDepth\"] is\n not null, set child serialization\n options[\"maxDomDepth\"] to child serialization\n options[\"maxDomDepth\"] - 1.

" + }, + { + "html": "

Let serialized be the result of serialize as a remote value with child, child serialization options, ownership type, serialization internal map, realm, and session.

" + }, + { + "html": "

Append serialized to children.

" + } + ] + }, + { + "html": "

If children is not null, set serialized[\"children\"] to children.

" + }, + { + "html": "If value implements Element:", + "rationale": "let", + "steps": [ + { + "html": "

Let attributes be a new map.

" + }, + { + "html": "For each attribute in value’s attribute list:", + "rationale": "let", + "steps": [ + { + "html": "

Let name be attribute’s qualified name

" + }, + { + "html": "

Let value be attribute’s value.

" + }, + { + "html": "

Set attributes[name] to value

" + } + ] + }, + { + "html": "

Set serialized[\"attributes\"] to attributes.

" + }, + { + "html": "

Let shadow root be value’s shadow root.

" + }, + { + "html": "If shadow root is null, let serialized shadow be null.\n Otherwise run the following substeps:", + "rationale": "let", + "steps": [ + { + "html": "

Let serialized shadow be the result of serialize as a remote value with shadow root, serialization options, ownership type, serialization internal map, realm, and session.

" + } + ] + }, + { + "html": "

Set serialized[\"shadowRoot\"] to serialized shadow.

" + } + ] + }, + { + "html": "

If value implements ShadowRoot, set serialized[\"mode\"]\n to value’s mode.

" + } + ] + }, + { + "html": "

If serialized is not null, set field value of remote value to serialized.

" + } + ] + }, + { + "html": "", + "rationale": "let", + "steps": [ + { + "html": "

Let window be the value of value’s [[WindowProxy]] internal\n slot.

" + }, + { + "html": "

Let navigable be window’s navigable.

" + }, + { + "html": "

Let navigable id be the navigable id for navigable.

" + }, + { + "html": "

Let serialized be a map matching the script.WindowProxyProperties production in the local end\n definition with the context property set to navigable id.

" + }, + { + "html": "

Let remote value be a map matching the script.WindowProxyRemoteValue production in the local end definition, with the handle property set to handle id if it’s not null, or omitted otherwise, and\n the value property set to serialized.

" + } + ] + }, + { + "html": "", + "rationale": "assert", + "steps": [ + { + "html": "

Assert: type(value) is Object

" + }, + { + "html": "

Let remote value be a map matching the script.ObjectRemoteValue production\n in the local end definition, with the handle property set\n to handle id if it’s not null, or omitted otherwise.

" + }, + { + "html": "

Set internal ids if needed with serialization internal map, remote value and value.

" + }, + { + "html": "

Let serialized be null.

" + }, + { + "html": "If known object is false, and serialization\n options[\"maxObjectDepth\"] is not 0, run the following\n steps:", + "rationale": "let", + "steps": [ + { + "html": "

Let serialized be the result of serialize as a mapping with EnumerableOwnPropertyNames(value, key+value), serialization options, ownership type, serialization internal map, realm, and session.

" + } + ] + }, + { + "html": "

If serialized is not null, set field value of remote value to serialized.

" + } + ] + } + ] + }, + { + "html": "

Return remote value

" + } + ] + }, + { + "name": "serialize an Array-like", + "href": "https://www.w3.org/TR/webdriver-bidi/#serialize-an-array-like", + "html": "To serialize an Array-like given production, handle id, known object, value, serialization options, ownership type, serialization internal map, realm,\nand session:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let remote value be a map matching production, with the handle property set to handle id if it’s not null, or omitted\n otherwise.

" + }, + { + "html": "

Set internal ids if needed with serialization internal map, remote value and value.

" + }, + { + "html": "If known object is false, and serialization\n options[\"maxObjectDepth\"]| is not 0:", + "rationale": "let", + "steps": [ + { + "html": "

Let serialized be the result of serialize as a list with CreateArrayIterator(value, value), serialization options, ownership type, serialization internal map, realm, and session.

" + }, + { + "html": "

If serialized is not null, set field value of remote value to serialized.

" + } + ] + }, + { + "html": "

Return remote value

" + } + ] + }, + { + "name": "serialize as a list", + "href": "https://www.w3.org/TR/webdriver-bidi/#serialize-as-a-list", + "html": "To serialize as a list given iterable, serialization options, ownership type, serialization internal map, realm, and session:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

If serialization options[\"maxObjectDepth\"] is not null,\n assert: serialization options[\"maxObjectDepth\"] is\n greater than 0.

" + }, + { + "html": "

Let serialized be a new list.

" + }, + { + "html": "For each child value in IteratorToList(GetIterator(iterable, sync)):", + "rationale": "let", + "steps": [ + { + "html": "

Let child serialization options be a clone of serialization options.

" + }, + { + "html": "

If child serialization options[\"maxObjectDepth\"] is\n not null, set child serialization\n options[\"maxObjectDepth\"] to child serialization\n options[\"maxObjectDepth\"] - 1.

" + }, + { + "html": "

Let serialized child be the result of serialize as a remote value with child value, child serialization options, ownership type, serialization internal map, realm, and session.

" + }, + { + "html": "

Append serialized child to serialized.

" + } + ] + }, + { + "html": "

Return serialized

" + } + ] + }, + { + "name": "serialize as a mapping", + "href": "https://www.w3.org/TR/webdriver-bidi/#serialize-as-a-mapping", + "html": "To serialize as a mapping given iterable, serialization options, ownership type, serialization internal map, realm, and session:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

If serialization options[\"maxObjectDepth\"] is not null,\n assert: serialization options[\"maxObjectDepth\"] is\n greater than 0.

" + }, + { + "html": "

Let serialized be a new list.

" + }, + { + "html": "For item in IteratorToList(GetIterator(iterable, sync)):", + "rationale": "assert", + "steps": [ + { + "html": "

Assert: IsArray(item)

" + }, + { + "html": "

Let property be CreateListFromArrayLike(item)

" + }, + { + "html": "

Assert: property is a list of size 2

" + }, + { + "html": "

Let key be property[0] and let value be property[1]

" + }, + { + "html": "

Let child serialization options be a clone of serialization options.

" + }, + { + "html": "

If child serialization options[\"maxObjectDepth\"] is\n not null, set child serialization\n options[\"maxObjectDepth\"] to child serialization\n options[\"maxObjectDepth\"] - 1.

" + }, + { + "html": "

If Type(key) is String, let serialized key be child key,\n otherwise let serialized key be the result of serialize as a remote value with child key, child serialization options, ownership type, serialization internal map, realm, and session.

" + }, + { + "html": "

Let serialized value be the result of serialize as a remote value with value, child serialization options, ownership type, serialization internal map, realm, and session.

" + }, + { + "html": "

Let serialized child be («serialized key, serialized value»).

" + }, + { + "html": "

Append serialized child to serialized.

" + } + ] + }, + { + "html": "

Return serialized

" + } + ] + }, + { + "name": "construct a stack trace", + "href": "https://www.w3.org/TR/webdriver-bidi/#construct-a-stack-trace", + "html": "To construct a stack trace, with a list of stack frames stack:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let call frames be a new list.

" + }, + { + "html": "For each stack frame frame in stack,\n starting from the most recently executed frame, run the following steps:", + "rationale": "let", + "steps": [ + { + "html": "

Let url be the result of running the URL serializer, given\n the URL of frame’s script url.

" + }, + { + "html": "

Let frame info be a new map matching the script.StackFrame production, with the url field set to url, the functionName field set to frame’s function,\n the lineNumber field set to frame’s line\n number and the columnNumber field set to frame’s column number.

" + } + ] + }, + { + "html": "

Append frame info to call frames.

" + }, + { + "html": "

Let stack trace be a new map matching the script.StackTrace production, with the callFrames property set to call frames.

" + }, + { + "html": "

Return stack trace.

" + } + ] + }, + { + "name": "stack trace for an exception", + "href": "https://www.w3.org/TR/webdriver-bidi/#stack-trace-for-an-exception", + "html": "The stack trace for an exception with an exception, or a Completion\nRecord of type throw, exception, is given by:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

If exception is a value that has been thrown as an exception, let record be the Completion Record created to throw exception. Otherwise let record be exception.

" + }, + { + "html": "

Let stack be the list of stack frames corresponding to execution at the\n point record was created.

" + }, + { + "html": "

Return construct a stack trace given stack.

" + } + ] + }, + { + "name": "get the source", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-source", + "html": "To get the source given source realm:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let realm be the realm id for source realm.

" + }, + { + "html": "

Let environment settings be the environment settings object whose realm execution context's Realm component is source realm.

" + }, + { + "html": "If environment settings has a associated Document:", + "rationale": "let", + "steps": [ + { + "html": "

Let document be environment settings’ associated Document.

" + }, + { + "html": "

Let navigable be document’s node navigable.

" + }, + { + "html": "

Let navigable id be the navigable id for navigable if navigable is not null.

" + } + ] + }, + { + "html": "

Let source be a map matching the script.Source production with the realm field set to realm, and the context field set\n to navigable id if navigable is not null, or unset otherwise.

" + }, + { + "html": "

Return source.

" + } + ] + }, + { + "name": "get a realm from a navigable", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-a-realm-from-a-navigable", + "html": "To get a realm from a navigable given navigable id and sandbox:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let navigable be the result of trying to get a navigable with navigable id.

" + }, + { + "html": "If sandbox is null or is an empty string:", + "rationale": "let", + "steps": [ + { + "html": "

Let document be navigable’s active document.

" + }, + { + "html": "

Let environment settings be the environment settings object whose relevant global object's associated Document is document.

" + }, + { + "html": "

Let realm be environment settingsrealm execution context's\n Realm component.

" + } + ] + }, + { + "html": "

Otherwise: let realm be result of trying to get or create a sandbox realm given sandbox and navigable.

" + }, + { + "html": "

Return success with data realm

" + } + ] + }, + { + "name": "get a realm from a target", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-a-realm-from-a-target", + "html": "To get a realm from a target given target:", + "rationale": ".algorithm", + "steps": [ + { + "html": "If target matches the script.ContextTarget production:", + "rationale": "let", + "steps": [ + { + "html": "

Let sandbox be null.

" + }, + { + "html": "

If target contains \"sandbox\", set sandbox to target[\"sandbox\"].

" + }, + { + "html": "

Let realm be get a realm from a navigable with target[\"context\"] and sandbox.

" + } + ] + }, + { + "html": "Otherwise:", + "rationale": "assert", + "steps": [ + { + "html": "

Assert: target matches the script.RealmTarget production.

" + }, + { + "html": "

Let realm id be the value of the realm field of target.

" + }, + { + "html": "

Let realm be get a realm given realm id.

" + } + ] + }, + { + "html": "

Return success with data realm

" + } + ] + }, + { + "name": "remote end steps for script.addPreloadScript", + "html": "The remote end steps given session and command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let function declaration be the functionDeclaration field of command\n parameters.

" + }, + { + "html": "

Let arguments be the arguments field of command\n parameters if present, or an empty list otherwise.

" + }, + { + "html": "

Let navigables be null.

" + }, + { + "html": "If the contexts field of command parameters is present:", + "rationale": "set", + "steps": [ + { + "html": "

Set navigables to an empty set.

" + }, + { + "html": "For each navigable id of command parameters[\"contexts\"]", + "rationale": "let", + "steps": [ + { + "html": "

Let navigable be the result of trying to get a navigable with navigable id.

" + }, + { + "html": "

If navigable is not a top-level traversable, return error with error code invalid argument.

" + }, + { + "html": "

Append navigable to navigables.

" + } + ] + } + ] + }, + { + "html": "

Let sandbox be the value of the \"sandbox\" field in command\n parameters, if present, or null otherwise.

" + }, + { + "html": "

Let script be the string representation of a UUID.

" + }, + { + "html": "

Let preload script map be session’s preload script map.

" + }, + { + "html": "

Set preload script map[script] to a struct with function\n declaration function declaration, arguments arguments, contexts navigables, and sandbox sandbox.

" + }, + { + "html": "

Return a new map matching the script.AddPreloadScriptResult with the script field set to script.

" + } + ] + }, + { + "name": "remote end steps for script.disown", + "html": "The remote end steps with command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let realm be the result of trying to get a realm from a target given the value of the target field of command parameters.

" + }, + { + "html": "

Let handles the value of the handles field of command parameters.

" + }, + { + "html": "For each handle id of handles:", + "rationale": "let", + "steps": [ + { + "html": "

Let handle map be realm’s handle object map

" + }, + { + "html": "

If handle map contains handle id, remove handle id from the handle map.

" + } + ] + }, + { + "html": "

Return success with data null.

" + } + ] + }, + { + "name": "deserialize arguments", + "href": "https://www.w3.org/TR/webdriver-bidi/#deserialize-arguments", + "html": "To deserialize arguments with given realm, serialized arguments list and session:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let deserialized arguments list be an empty list.

" + }, + { + "html": "For each serialized argument of serialized arguments list:", + "rationale": "let", + "steps": [ + { + "html": "

Let deserialized argument be the result of trying to deserialize local value given serialized argument, realm and session.

" + }, + { + "html": "

Append deserialized argument to the deserialized arguments list.

" + } + ] + }, + { + "html": "

Return success with data deserialized arguments list.

" + } + ] + }, + { + "name": "evaluate function body", + "href": "https://www.w3.org/TR/webdriver-bidi/#evaluate-function-body", + "html": "To evaluate function body given function declaration, environment settings, base URL, and options:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let parenthesized function declaration be concatenate «\"(\", function declaration, \")\"»

" + }, + { + "html": "

Let function script be the result of create a classic script with parenthesized function declaration, environment settings, base URL, and options.

" + }, + { + "html": "

Prepare to run script with environment settings.

" + }, + { + "html": "

Let function body evaluation status be ScriptEvaluation(function script’s record).

" + }, + { + "html": "

Clean up after running script with environment settings.

" + }, + { + "html": "

Return (function script, function body evaluation status).

" + } + ] + }, + { + "name": "remote end steps for script.callFunction", + "html": "The remote end steps with session and command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let realm be the result of trying to get a realm from a target given the value of the target field of command parameters.

" + }, + { + "html": "

Let realm id be realm’s realm id.

" + }, + { + "html": "

Let environment settings be the environment settings object whose realm execution context's Realm component is realm.

" + }, + { + "html": "

Let command arguments be the value of the arguments field\n of command parameters.

" + }, + { + "html": "

Let deserialized arguments be an empty list.

" + }, + { + "html": "

If command arguments is not null, set deserialized arguments to the result of trying to deserialize arguments given realm, command arguments and session.

" + }, + { + "html": "

Let this parameter be the value of the this field\n of command parameters.

" + }, + { + "html": "

Let this object be null.

" + }, + { + "html": "

If this parameter is not null, set this object to the result of trying to deserialize local value given this parameter, realm and session.

" + }, + { + "html": "

Let function declaration be the value of the functionDeclaration field of command parameters.

" + }, + { + "html": "

Let await promise be the value of the awaitPromise field of command parameters.

" + }, + { + "html": "

Let serialization options be the value of the serializationOptions field of command parameters, if present,\n or otherwise a map matching the script.SerializationOptions production with the fields set to their default values.

" + }, + { + "html": "

Let result ownership be the value of the resultOwnership field of command parameters, if present, or none otherwise.

" + }, + { + "html": "

Let base URL be the API base URL of environment settings.

" + }, + { + "html": "

Let options be the default script fetch options.

" + }, + { + "html": "

Let (script, function body evaluation status) be the\n result of evaluate function body with function declaration, environment settings, base URL, and options.

" + }, + { + "html": "If function body evaluation status.[[Type]] is throw:", + "rationale": "let", + "steps": [ + { + "html": "

Let exception details be the result of get exception details given realm, function body evaluation status, result ownership and session.

" + }, + { + "html": "

Return a new map matching the script.EvaluateResultException production, with the exceptionDetails field set to exception details.

" + } + ] + }, + { + "html": "

Let function object be function body evaluation status.[[Value]].

" + }, + { + "html": "If IsCallable(function object) is false:", + "rationale": "return", + "steps": [ + { + "html": "

Return an error with error code invalid argument

" + } + ] + }, + { + "html": "

If command parameters[\"userActivation\"] is true, run activation notification steps.

" + }, + { + "html": "

Prepare to run script with environment settings.

" + }, + { + "html": "

Set evaluation status to Call(function object, this object, deserialized arguments).

" + }, + { + "html": "If evaluation status.[[Type]] is normal, and await promise is true, and IsPromise(evaluation status.[[Value]]):", + "rationale": "set", + "steps": [ + { + "html": "

Set evaluation status to Await(evaluation status.[[Value]]).

" + } + ] + }, + { + "html": "

Clean up after running script with environment settings.

" + }, + { + "html": "If evaluation status.[[Type]] is throw:", + "rationale": "let", + "steps": [ + { + "html": "

Let exception details be the result of get exception details given realm, evaluation status, result ownership and session.

" + }, + { + "html": "

Return a new map matching the script.EvaluateResultException production, with the exceptionDetails field set to exception details.

" + } + ] + }, + { + "html": "

Assert: evaluation status.[[Type]] is normal.

" + }, + { + "html": "

Let result be the result of serialize as a remote value with evaluation status.[[Value]], serialization options, result ownership,\n a new map as serialization internal map, realm and session.

" + }, + { + "html": "

Return a new map matching the script.EvaluateResultSuccess production, with the realm field set to realm id,\n and the result field set to result.

" + } + ] + }, + { + "name": "remote end steps for script.evaluate", + "html": "The remote end steps given session and command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let realm be the result of trying to get a realm from a target given the value of the target field of command parameters.

" + }, + { + "html": "

Let realm id be realm’s realm id.

" + }, + { + "html": "

Let environment settings be the environment settings object whose realm execution context's Realm component is realm.

" + }, + { + "html": "

Let source be the value of the expression field of command\n parameters.

" + }, + { + "html": "

Let await promise be the value of the awaitPromise field of command parameters.

" + }, + { + "html": "

Let serialization options be the value of the serializationOptions field of command parameters, if present,\n or otherwise a map matching the script.SerializationOptions production with the fields set to their default values.

" + }, + { + "html": "

Let result ownership be the value of the resultOwnership field of command parameters, if present, or none otherwise.

" + }, + { + "html": "

Let options be the default script fetch options.

" + }, + { + "html": "

Let base URL be the API base URL of environment settings.

" + }, + { + "html": "

Let script be the result of create a classic script with source, environment settings, base URL, and options.

" + }, + { + "html": "

If command parameters[\"userActivation\"] is true, run activation notification steps.

" + }, + { + "html": "

Prepare to run script with environment settings.

" + }, + { + "html": "

Set evaluation status to ScriptEvaluation(script’s record).

" + }, + { + "html": "If evaluation status.[[Type]] is normal, await promise is\n true, and IsPromise(evaluation status.[[Value]]):", + "rationale": "set", + "steps": [ + { + "html": "

Set evaluation status to Await(evaluation status.[[Value]]).

" + } + ] + }, + { + "html": "

Clean up after running script with environment settings.

" + }, + { + "html": "If evaluation status.[[Type]] is throw:", + "rationale": "let", + "steps": [ + { + "html": "

Let exception details be the result of get exception details with realm, evaluation status, result ownership and session.

" + }, + { + "html": "

Return a new map matching the script.EvaluateResultException production, with the realm field set to realm id, and the exceptionDetails field set to exception details.

" + } + ] + }, + { + "html": "

Assert: evaluation status.[[Type]] is normal.

" + }, + { + "html": "

Let result be the result of serialize as a remote value with evaluation status.[[Value]], serialization options, result ownership,\n a new map as serialization internal map, realm and session.

" + }, + { + "html": "

Return a new map matching the script.EvaluateResultSuccess production, with the with the realm field set to realm id, and\n the result field set to result.

" + } + ] + }, + { + "name": "remote end steps for script.getRealms", + "html": "The remote end steps with session and command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let environment settings be a list of all the environment settings objects that have their execution ready flag set.

" + }, + { + "html": "If command parameters contains context:", + "rationale": "let", + "steps": [ + { + "html": "

Let navigable be the result of trying to get a navigable with command parameters[\"context\"].

" + }, + { + "html": "

Let document be navigable’s active document.

" + }, + { + "html": "

Let navigable environment settings be a list.

" + }, + { + "html": "For each settings of environment settings:", + "rationale": "if", + "steps": [ + { + "html": "

If any of the following conditions hold:

\n \n

Append settings to navigable environment settings.

" + } + ] + }, + { + "html": "

Set environment settings to navigable environment settings.

" + } + ] + }, + { + "html": "

Let realms be a list.

" + }, + { + "html": "For each settings of environment settings:", + "rationale": "let", + "steps": [ + { + "html": "

Let realm info be the result of get the realm info given settings.

" + }, + { + "html": "

If command parameters contains type and realm\n info[\"type\"] is not equal to command\n parameters[\"type\"] then continue.

" + }, + { + "html": "

If realm info is not null, append realm info to realms.

" + } + ] + }, + { + "html": "

Let body be a map matching the script.GetRealmsResult production,\n with the realms field set to realms.

" + }, + { + "html": "

Return success with data body.

" + } + ] + }, + { + "name": "remote end steps for script.removePreloadScript", + "html": "The remote end steps given session and command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let script be the value of the \"script\" field in command\n parameters.

" + }, + { + "html": "

Let preload script map be session’s preload script map.

" + }, + { + "html": "

If preload script map does not contain script, return error with error code no such script.

" + }, + { + "html": "

Remove script from preload script map.

" + }, + { + "html": "

Return null

" + } + ] + }, + { + "name": "remote end event trigger for script.message", + "href": "https://www.w3.org/TR/webdriver-bidi/#emit-a-script-message", + "html": "The remote end event trigger is the emit a script message steps,\ngiven session, realm, channel properties, and message:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let environment settings be the environment settings object whose realm execution context's Realm component is realm.

" + }, + { + "html": "

Let related navigables be the result of get related navigables given environment settings.

" + }, + { + "html": "If event is enabled given session, \"script.message\"\n and related navigables:", + "rationale": "if", + "steps": [ + { + "html": "

If channel properties contains \"serializationOptions\", let serialization options be the\n value of the serializationOptions field of channel\n properties. Otherwise let serialization options be a map matching the script.SerializationOptions production with the\n fields set to their default values.

" + }, + { + "html": "

Let if channel properties contains \"ownership\", let ownership type be channel properties[\"ownership\"]. Otherwise let ownership type be \"none\".

" + }, + { + "html": "

Let data be the result of serialize as a remote value given message, serialization options, ownership type, a new map as serialization\n internal map and realm.

" + }, + { + "html": "

Let source be the get the source with realm.

" + }, + { + "html": "

Let params be a map matching the script.MessageParameters production, with the channel field set to channel properties[\"channel\"],\n the data field set to data, and the source field set to source.

" + }, + { + "html": "

Let body be a map matching the script.Message production, with the params field set to params.

" + }, + { + "html": "

Emit an event with session and body.

" + } + ] + } + ] + }, + { + "name": "remote end event trigger for script.realmCreated", + "html": "When any of the set up a window environment settings object, set up a\nworker environment settings object or set up a worklet environment settings\nobject algorithms are invoked, immediately prior to returning the settings\nobject:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let environment settings be the newly created environment settings\n object.

" + }, + { + "html": "

Let realm info be the result of get the realm info given environment settings.

" + }, + { + "html": "

If realm info is null, return.

" + }, + { + "html": "

Let related navigables be the result of get related navigables given environment settings.

" + }, + { + "html": "

Let body be a map matching the script.RealmCreated production, with the params field set to realm info.

" + }, + { + "html": "For each session in the set of sessions for which an event is enabled given \"script.realmCreated\" and related navigables:", + "rationale": "emit", + "steps": [ + { + "html": "

Emit an event with session and body.

" + } + ] + } + ] + }, + { + "name": "remote end subscribe steps for script.realmCreated", + "html": "The remote end subscribe steps with subscribe priority 2, given session, navigables and include global are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let environment settings be a list of all the environment settings objects that have their execution ready flag set.

" + }, + { + "html": "For each settings of environment settings:", + "rationale": "let", + "steps": [ + { + "html": "

Let related navigables be a new set.

" + }, + { + "html": "If the associated Document of settingsrelevant global object is a Document:", + "rationale": "let", + "steps": [ + { + "html": "

Let navigable be settings’s relevant global object's associated Document’s node navigable.

" + }, + { + "html": "

If navigable is null, continue.

" + }, + { + "html": "

Let top-level traversible be navigable’s top-level traversable.

" + }, + { + "html": "

If top-level traversible is not in navigables, continue.

" + }, + { + "html": "

Append top-level traversible to related navigables.

" + } + ] + }, + { + "html": "

Let realm info be the result of get the realm info given settings.

" + }, + { + "html": "

If realm info is null, continue.

" + }, + { + "html": "

Let body be a map matching the script.RealmCreated production, with the params field set to realm info.

" + }, + { + "html": "If event is enabled given session,\n \"script.realmCreated\" and related navigables:", + "rationale": "emit", + "steps": [ + { + "html": "

Emit an event with session and body.

" + } + ] + } + ] + } + ] + }, + { + "name": "remote end event trigger for script.realmDestroyed", + "html": "Define the following unloading document cleanup steps with document:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let related navigables be an empty set.

" + }, + { + "html": "

Append document’s navigable to related navigables.

" + }, + { + "html": "For each worklet global scope in document’s worklet global scopes:", + "rationale": "let", + "steps": [ + { + "html": "

Let realm be worklet global scope’s relevant Realm.

" + }, + { + "html": "

Let realm id be the realm id for realm.

" + }, + { + "html": "

Let params be a map matching the script.RealmDestroyedParameters production, with the realm field set of realm id.

" + }, + { + "html": "

Let body be a map matching the script.RealmDestroyed production, with the params field set to params.

" + }, + { + "html": "For each session in the set of sessions for which an event is enabled given \"script.realmDestroyed\" and related navigables:", + "rationale": "emit", + "steps": [ + { + "html": "

Emit an event with session and body.

" + } + ] + } + ] + }, + { + "html": "

Let environment settings be the environment settings object whose relevant global object's associated Document is document.

" + }, + { + "html": "

Let realm be environment settingsrealm execution context's Realm component.

" + }, + { + "html": "

Let realm id be the realm id for realm.

" + }, + { + "html": "

Let params be a map matching the script.RealmDestroyedParameters production, with the realm field set to realm id.

" + }, + { + "html": "

Let body be a map matching the script.RealmDestroyed production, with the params field set to params.

" + }, + { + "html": "For each session in the set of sessions for which an event is enabled given \"script.realmDestroyed\" and related navigables:", + "rationale": "emit", + "steps": [ + { + "html": "

Emit an event with session and body.

" + } + ] + } + ] + }, + { + "name": "remote end event trigger for script.realmDestroyed", + "html": "Whenever a worker event loop event loop is destroyed, either because the\nworker comes to the end of its lifecycle, or prematurely via the terminate a\nworker algorithm:", + "rationale": "let", + "steps": [ + { + "html": "

Let environment settings be the environment settings object for which event loop is the responsible event loop.

" + }, + { + "html": "

Let related navigables be the result of get related navigables given environment settings.

" + }, + { + "html": "

Let realm be environment settings’s environment settings object’s Realm.

" + }, + { + "html": "

Let realm id be the realm id for realm.

" + }, + { + "html": "

Let params be a map matching the script.RealmDestroyedParameters production, with the realm field set of realm id.

" + }, + { + "html": "

Let body be a map matching the script.RealmDestroyed production, with the params field set to params.

" + } + ] + }, + { + "name": "deserialize filter", + "href": "https://www.w3.org/TR/webdriver-bidi/#deserialize-filter", + "html": "To deserialize filter given filter:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let deserialized filter to be an empty map.

" + }, + { + "html": "For each namevalue in filter:", + "rationale": "let", + "steps": [ + { + "html": "

Let deserialized name be the field name corresponding to the JSON key name in\nthe table for cookie conversion.

" + }, + { + "html": "

If name is \"value\", set deserialized value to deserialize protocol bytes with value,\n otherwise let deserialized value be value.

" + }, + { + "html": "

Set deserialized filter[deserialized name] to deserialized value.

" + } + ] + }, + { + "html": "

Return deserialized filter.

" + } + ] + }, + { + "name": "expand a storage partition spec", + "href": "https://www.w3.org/TR/webdriver-bidi/#expand-a-storage-partition-spec", + "html": "To expand a storage partition spec given partition spec:", + "rationale": ".algorithm", + "steps": [ + { + "html": "If partition spec is null:", + "rationale": "set", + "steps": [ + { + "html": "

Set partition spec to an empty map.

" + } + ] + }, + { + "html": "Otherwise, if partition spec[\"type\"] is \"context\":", + "rationale": "let", + "steps": [ + { + "html": "

Let navigable be the result of trying to get a navigable given partition spec[\"context\"].

" + }, + { + "html": "

Let partition key be the key of navigable’s associated storage partition.

" + }, + { + "html": "

Return success with data partition key.

" + } + ] + }, + { + "html": "

Let partition key be an empty map.

" + }, + { + "html": "For each namedefault value in the default values for storage partition key attributes:", + "rationale": "let", + "steps": [ + { + "html": "

Let value be partition spec[name] if it exists or default value otherwise.

" + }, + { + "html": "

Set partition key[name] to value.

" + } + ] + }, + { + "html": "For each name in the remote end’s required partition key attributes:", + "rationale": "if", + "steps": [ + { + "html": "If partition spec[name] exists:", + "rationale": "set", + "steps": [ + { + "html": "

Set partition key][name] to partition spec[name].

" + } + ] + }, + { + "html": "Otherwise:", + "rationale": "return", + "steps": [ + { + "html": "

Return error with error code underspecified storage partition.

" + } + ] + } + ] + }, + { + "html": "

Return success with data partition key.

" + } + ] + }, + { + "name": "get the cookie store", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-cookie-store", + "html": "To get the cookie store given storage partition key:", + "rationale": ".algorithm", + "steps": [ + { + "html": "If storage partition key uniquely identifies an extant storage partition:", + "rationale": "let", + "steps": [ + { + "html": "

Let store be the cookie store of that storage partition.

" + }, + { + "html": "

Return success with data store.

" + } + ] + }, + { + "html": "

Return error with error code no such storage partition.

" + } + ] + }, + { + "name": "match cookie", + "href": "https://www.w3.org/TR/webdriver-bidi/#match-cookie", + "html": "To match cookie given stored cookie and filter:", + "rationale": ".algorithm", + "steps": [ + { + "html": "For each namevalue in filter:", + "rationale": "if", + "steps": [ + { + "html": "If stored cookie[name] does not equal value:", + "rationale": "return", + "steps": [ + { + "html": "

Return false.

" + } + ] + } + ] + }, + { + "html": "

Return true.

" + } + ] + }, + { + "name": "get matching cookies", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-matching-cookies", + "html": "To get matching cookies given cookie store and filter:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let cookies be a new list.

" + }, + { + "html": "

Set deserialized filter to deserialize filter with filter.

" + }, + { + "html": "For each stored cookie in cookie store:", + "rationale": "if", + "steps": [ + { + "html": "If match cookie with stored cookie and deserialized filter is true:", + "rationale": "append", + "steps": [ + { + "html": "

Append stored cookie to cookies.

" + } + ] + } + ] + }, + { + "html": "

Return cookies.

" + } + ] + }, + { + "name": "remote end steps for storage.getCookies", + "html": "The remote end steps with session and command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let filter be the value of the filter field of command parameters if it is present or an empty map if it isn’t.

" + }, + { + "html": "

Let partition spec be the value of the partition field of command parameters if it is present or null if it isn’t.

" + }, + { + "html": "

Let partition key be the result of trying to expand a storage partition spec with partition spec.

" + }, + { + "html": "

Let store be the result of trying to get the cookie store with partition key.

" + }, + { + "html": "

Let cookies be the result of get matching cookies with store and filter.

" + }, + { + "html": "

Let serialized cookies be a new list.

" + }, + { + "html": "For each cookie in cookies:", + "rationale": "let", + "steps": [ + { + "html": "

Let serialized cookie be the result of serialize cookie given cookie.

" + }, + { + "html": "

Append serialized cookie to serialized cookies.

" + } + ] + }, + { + "html": "

Let body be a map matching the storage.GetCookiesResult production,\nwith the cookies field set to serialized cookies and the partitionKey field set to partition key.

" + }, + { + "html": "

Return success with data body.

" + } + ] + }, + { + "name": "remote end steps for storage.setCookie", + "html": "The remote end steps with session and command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let cookie spec be the value of the cookie field of command parameters.

" + }, + { + "html": "

Let partition spec be the value of the partition field of command parameters if it is present or null if it isn’t.

" + }, + { + "html": "

Let partition key be the result of trying to expand a storage partition spec with partition spec.

" + }, + { + "html": "

Let store be the result of trying to get the cookie store with partition key.

" + }, + { + "html": "

Let deserialized value be deserialize protocol bytes with cookie spec[\"value\"].

" + }, + { + "html": "

Create a cookie in store using cookie name cookie spec[\"name\"], cookie value deserialized value, cookie domain cookie spec[\"domain\"], and an attribute-value list of the\nfollowing cookie concepts listed in the table for cookie conversion:

\n
\n
Cookie path \n
\n

cookie spec[\"path\"] if it exists, otherwise \"/\".

\n
Cookie secure only \n
\n

cookie spec[\"secure\"] if it exists, otherwise false.

\n
Cookie HTTP only \n
\n

cookie spec[\"httpOnly\"] if it exists, otherwise false.

\n
Cookie expiry time \n
\n

cookie spec[\"expiry\"] if it exists, otherwise leave unset to\n indicate that this is a session cookie.

\n
Cookie same site \n
\n

cookie spec[\"sameSite\"] if it exists, otherwise leave unset to\n indicate that no same site policy is defined.

\n
\n

If this step is aborted without inserting a cookie into the cookie store, return error with error code unable to set cookie.

" + }, + { + "html": "

Let body be a map matching the storage.SetCookieResult production,\nwith the partitionKey field set to partition key.

" + }, + { + "html": "

Return success with data body.

" + } + ] + }, + { + "name": "remote end steps for storage.deleteCookies", + "html": "The remote end steps with session and command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let filter be the value of the filter field of command parameters if it is present or an empty map if it isn’t.

" + }, + { + "html": "

Let partition spec be the value of the partition field of command parameters if it is present or null if it isn’t.

" + }, + { + "html": "

Let partition key be the result of trying to expand a storage partition spec with partition spec.

" + }, + { + "html": "

Let store be the result of trying to get the cookie store with partition key.

" + }, + { + "html": "

Let cookies be the result of get matching cookies with store and filter.

" + }, + { + "html": "For each cookie in cookies:", + "rationale": "remove", + "steps": [ + { + "html": "

Remove cookie from store.

" + } + ] + }, + { + "html": "

Let body be a map matching the storage.DeleteCookiesResult production,\nwith the partitionKey field set to partition key.

" + }, + { + "html": "

Return success with data body.

" + } + ] + }, + { + "name": "buffer a log event", + "href": "https://www.w3.org/TR/webdriver-bidi/#buffer-a-log-event", + "html": "To buffer a log event given session, navigables and event:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let buffer be session’s log event buffer.

" + }, + { + "html": "

Let navigable ids be a new list.

" + }, + { + "html": "For each navigable of navigables:", + "rationale": "append", + "steps": [ + { + "html": "

Append the navigable id for navigable to navigable ids.

" + } + ] + }, + { + "html": "For each navigable id in navigable ids:", + "rationale": "let", + "steps": [ + { + "html": "

Let other navigables be an empty list

" + }, + { + "html": "

For each other id in navigable ids:

" + }, + { + "html": "

If other id is not equal to navigable id, append other id to other\n navigables.

" + }, + { + "html": "

If buffer does not contain navigable id, let buffer[navigable id] be a\n new list.

" + }, + { + "html": "

Append (event, other navigables) to buffer[navigable id].

" + } + ] + } + ] + }, + { + "name": "remote end event trigger for log.entryAdded", + "html": "Define the following console steps with method, args, and options:", + "rationale": ".algorithm", + "steps": [ + { + "html": "For each session in active BiDI sessions:", + "rationale": "if", + "steps": [ + { + "html": "

If method is \"error\" or \"assert\", let level be\n \"error\". If method is \"debug\" or \"trace\"\n let level be \"debug\". If method is \"warn\", let level be \"warn\". Otherwise let level be \"info\".

" + }, + { + "html": "

Let timestamp be a time value representing the current date and time in UTC.

" + }, + { + "html": "

Let text be an empty string.

" + }, + { + "html": "

If Type(args[0]) is String, and args[0] contains a formatting specifier, let formatted args be Formatter(args). Otherwise\n let formatted args be args.

" + }, + { + "html": "For each arg in formatted args:", + "rationale": "if", + "steps": [ + { + "html": "

If arg is not the first entry in args, append a U+0020 SPACE to text.

" + }, + { + "html": "

If arg is a primitive ECMAScript value, append ToString(arg) to text. Otherwise append an implementation-defined string to text.

" + } + ] + }, + { + "html": "

Let realm be the realm id of the current Realm Record.

" + }, + { + "html": "

Let serialized args be a new list.

" + }, + { + "html": "

Let serialization options be a map matching the script.SerializationOptions production with the fields set to\n their default values.

" + }, + { + "html": "For each arg of args:", + "rationale": "let", + "steps": [ + { + "html": "

Let serialized arg be the result of serialize as a remote value with arg as value, serialization options, none as\n ownership type, a new map as serialization internal map, realm and session.

" + }, + { + "html": "

Add serialized arg to serialized args.

" + } + ] + }, + { + "html": "

Let source be the result of get the source given current Realm Record.

" + }, + { + "html": "

If method is \"assert\", \"error\",\n \"trace\", or \"warn\", let stack be the current\n stack trace. Otherwise let stack be null.

" + }, + { + "html": "

Let entry be a map matching the log.ConsoleLogEntry production,\n with the the level field set to level, the text field set to text, the timestamp field set to timestamp, the stackTrace field set to stack if stack is not null, or\n omitted otherwise, the method field set to method, the source field set to source and the args field set to serialized\n args.

" + }, + { + "html": "

Let body be a map matching the log.EntryAdded production, with\n the params field set to entry.

" + }, + { + "html": "

Let settings be the current settings object

" + }, + { + "html": "

Let related navigables be the result of get related navigables given settings.

" + }, + { + "html": "

If event is enabled with session, \"log.entryAdded\" and related navigables, emit an event with session and body.

\n

Otherwise, buffer a log event with session, related browsing\n contexts, and body.

" + } + ] + } + ] + }, + { + "name": "remote end event trigger for log.entryAdded", + "html": "Define the following error reporting steps with arguments script, line number, column number, message and handled:", + "rationale": "if", + "steps": [ + { + "html": "

If handled is true return.

" + }, + { + "html": "

Let settings be script’s settings object.

" + }, + { + "html": "

Let stack be the stack trace for an exception with the exception\n corresponding to the error being reported.

" + }, + { + "html": "

Let source be the result of get the source given current Realm Record.

" + }, + { + "html": "

Let entry be a map matching the log.JavascriptLogEntry production,\n with level set to \"error\", text set to message, source set to source, and the timestamp field set to timestamp.

" + }, + { + "html": "

Let related navigables be the result of get related navigables given settings.

" + }, + { + "html": "For each session in active BiDi sessions:", + "rationale": "if", + "steps": [ + { + "html": "

If event is enabled with session, \"log.entryAdded\" and related navigables, emit an event with session and body.

\n

Otherwise, buffer a log event with session, related browsing\n contexts, and body.

" + } + ] + } + ] + }, + { + "name": "remote end subscribe steps for log.entryAdded", + "html": "The remote end subscribe steps, with subscribe priority 10, given session, navigables and include global are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "For each navigable idevents in session’s log event buffer:", + "rationale": "let", + "steps": [ + { + "html": "

Let maybe context be the result of getting a navigable given navigable id.

" + }, + { + "html": "

If maybe context is an error, remove navigable id from log event\n buffer and continue.

" + }, + { + "html": "

Let navigable be maybe context’s data

" + }, + { + "html": "

Let top level navigable be navigable’s top-level traversable.

" + }, + { + "html": "If include global is true and top level navigable is not in navigables,\n or if include global is false and top level navigable is in navigables:", + "rationale": "for", + "steps": [ + { + "html": "For each (event, other navigables) in events:", + "rationale": "emit", + "steps": [ + { + "html": "

Emit an event with session and event.

" + }, + { + "html": "For each other context id in other navigables:", + "rationale": "if", + "steps": [ + { + "html": "

If log event buffer contains other context id, remove event from log event buffer[other context id].

" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": "is input.ElementOrigin", + "href": "https://www.w3.org/TR/webdriver-bidi/#is-inputelementorigin", + "html": "The is input.ElementOrigin steps given object are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

If object is a map matching the input.ElementOrigin production, return true.

" + }, + { + "html": "

Return false.

" + } + ] + }, + { + "name": "get Element from input.ElementOrigin steps", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-element-from-inputelementorigin-steps", + "html": "To get Element from input.ElementOrigin steps given session:", + "rationale": ".algorithm", + "steps": [ + { + "html": "Return the following steps, given origin and navigable:", + "rationale": "assert", + "steps": [ + { + "html": "

Assert: origin matches input.ElementOrigin.

" + }, + { + "html": "

Let document be navigable’s active document.

" + }, + { + "html": "

Let reference be origin[\"element\"]

" + }, + { + "html": "

Let environment settings be the environment settings object whose relevant global object's associated Document is document.

" + }, + { + "html": "

Let realm be environment settingsrealm execution context's\n Realm component.

" + }, + { + "html": "

Let element be the result of trying to deserialize remote reference with reference, realm, and session.

" + }, + { + "html": "

If element doesn’t implement Element return error with error code no such element.

" + }, + { + "html": "

Return success with data element.

" + } + ] + } + ] + }, + { + "name": "remote end steps for input.performActions", + "html": "The remote end steps with session and command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let navigable id be the value of the context field of command parameters.

" + }, + { + "html": "

Let navigable be the result of trying to get a navigable with navigable id.

" + }, + { + "html": "

Let input state be get the input state with session and navigable’s top-level traversable.

" + }, + { + "html": "

Let actions options be a new actions options with the is element\n origin steps set to is input.ElementOrigin, and the get element origin steps set to the result of get Element from\n input.ElementOrigin steps given session.

" + }, + { + "html": "

Let actions by tick be the result of trying to extract an action\n sequence with input state, command parameters, and actions options.

" + }, + { + "html": "

Try to dispatch actions with input state, actions by tick, navigable, and actions options.

" + }, + { + "html": "

Return success with data null.

" + } + ] + }, + { + "name": "remote end steps for input.releaseActions", + "html": "The remote end steps given session, and command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let navigable id be the value of the context field of command parameters.

" + }, + { + "html": "

Let navigable be the result of trying to get a navigable with navigable id.

" + }, + { + "html": "

Let top-level traversable be navigable’s top-level traversable.

" + }, + { + "html": "

Let input state be get the input state with session and top-level traversable.

" + }, + { + "html": "

Let actions options be a new actions options with the is element\n origin steps set to is input.ElementOrigin, and the get element origin steps set to get Element from\n input.ElementOrigin steps given session.

" + }, + { + "html": "

Let undo actions be input state’s input cancel list in reverse order.

" + }, + { + "html": "

Try to dispatch tick actions with undo actions, 0, navigable, and actions options.

" + }, + { + "html": "

Reset the input state with session and top-level traversable.

" + }, + { + "html": "

Return success with data null.

" + } + ] + }, + { + "name": "remote end steps for input.setFiles", + "html": "The remote end steps given session and command parameters are:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let navigable id be the value of the command\n parameters[\"context\"] field.

" + }, + { + "html": "

Let navigable be the result of trying to get a navigable with navigable id.

" + }, + { + "html": "

Let document be navigable’s active document.

" + }, + { + "html": "

Let environment settings be the environment settings object whose relevant global object's associated Document is document.

" + }, + { + "html": "

Let realm be environment settings’s realm execution context's\n Realm component.

" + }, + { + "html": "

Let element be the result of trying to deserialize remote reference with command parameters[\"element\"], realm, and session.

" + }, + { + "html": "

If element doesn’t implement Element, return error with error code no such element.

" + }, + { + "html": "

If element doesn’t implement HTMLInputElement, element’s type is not in the File Upload state, or element is disabled,\n return error with error code unable to set file input.

" + }, + { + "html": "

If the size of files is greater than 1 and element’s multiple attribute is not set, return error with error code unable to set file input.

" + }, + { + "html": "

Let files be the value of the command parameters[\"files\"]\n field.

" + }, + { + "html": "

Let selected files be element’s selected files.

" + }, + { + "html": "

If the size of the intersection of files and selected\n files is equal to the size of selected files and equal to the size of files, queue an element task on the user interaction task source given element to fire an event named cancel at element, with\n the bubbles attribute initialized to true.

" + }, + { + "html": "

Otherwise, update the file selection for element with files as the\n user’s selection.

" + }, + { + "html": "

If, for any reason, the remote end is unable to set the selected files of element to the files with paths given in files,\n return error with error code unsupported operation.

" + }, + { + "html": "

Return success with data null.

" + } + ] + }, + { + "name": "error reporting steps", + "href": "https://www.w3.org/TR/webdriver-bidi/#error-reporting-steps", + "html": "", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Call any error reporting steps defined in external specifications\n with script, line, col, message, and true if the error is\n handled, or false otherwise.

" + } + ] + }, + { + "html": "Insert the following steps at the start of the determine the device pixel ratio algorithm:", + "rationale": "if", + "steps": [ + { + "html": "

If device pixel ratio overrides contains window’s navigable, return device pixel ratio overrides[window’s navigable].

" + } + ] + } + ] +} \ No newline at end of file diff --git a/tr/dfns/gpc.json b/tr/dfns/gpc.json new file mode 100644 index 000000000000..30959d5eade2 --- /dev/null +++ b/tr/dfns/gpc.json @@ -0,0 +1,127 @@ +{ + "spec": { + "title": "Global Privacy Control (GPC)", + "url": "https://www.w3.org/TR/gpc/" + }, + "dfns": [ + { + "id": "dfn-do-not-sell-or-share-interaction", + "href": "https://www.w3.org/TR/gpc/#dfn-do-not-sell-or-share-interaction", + "linkingText": [ + "do-not-sell-or-share interaction" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "definitions", + "href": "https://www.w3.org/TR/gpc/#definitions", + "title": "Definitions", + "number": "2" + }, + "definedIn": "prose" + }, + { + "id": "dfn-preference", + "href": "https://www.w3.org/TR/gpc/#dfn-preference", + "linkingText": [ + "preference", + "do-not-sell-or-share preference" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "definitions", + "href": "https://www.w3.org/TR/gpc/#definitions", + "title": "Definitions", + "number": "2" + }, + "definedIn": "prose" + }, + { + "id": "dfn-gpcatnavigation", + "href": "https://www.w3.org/TR/gpc/#dfn-gpcatnavigation", + "linkingText": [ + "gpcAtNavigation" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "preference-caching", + "href": "https://www.w3.org/TR/gpc/#preference-caching", + "title": "Preference Caching", + "number": "3.2" + }, + "definedIn": "prose" + }, + { + "id": "dfn-sec-gpc", + "href": "https://www.w3.org/TR/gpc/#dfn-sec-gpc", + "linkingText": [ + "Sec-GPC" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "the-sec-gpc-header-field-for-http-requests", + "href": "https://www.w3.org/TR/gpc/#the-sec-gpc-header-field-for-http-requests", + "title": "The Sec-GPC Header Field for HTTP Requests", + "number": "3.3" + }, + "definedIn": "prose" + }, + { + "id": "dom-globalprivacycontrol", + "href": "https://www.w3.org/TR/gpc/#dom-globalprivacycontrol", + "linkingText": [ + "GlobalPrivacyControl" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "javascript-property-to-detect-preference", + "href": "https://www.w3.org/TR/gpc/#javascript-property-to-detect-preference", + "title": "JavaScript Property to Detect Preference", + "number": "3.4" + }, + "definedIn": "pre" + }, + { + "id": "dom-globalprivacycontrol-globalprivacycontrol", + "href": "https://www.w3.org/TR/gpc/#dom-globalprivacycontrol-globalprivacycontrol", + "linkingText": [ + "globalPrivacyControl" + ], + "localLinkingText": [ + "GlobalPrivacyControl.globalPrivacyControl" + ], + "type": "attribute", + "for": [ + "GlobalPrivacyControl" + ], + "access": "public", + "informative": false, + "heading": { + "id": "javascript-property-to-detect-preference", + "href": "https://www.w3.org/TR/gpc/#javascript-property-to-detect-preference", + "title": "JavaScript Property to Detect Preference", + "number": "3.4" + }, + "definedIn": "pre" + } + ] +} \ No newline at end of file diff --git a/tr/dfns/vibration.json b/tr/dfns/vibration.json index b2db87c9040a..e84df99488f1 100644 --- a/tr/dfns/vibration.json +++ b/tr/dfns/vibration.json @@ -1,6 +1,6 @@ { "spec": { - "title": "Vibration API (Second Edition)", + "title": "Vibration API", "url": "https://www.w3.org/TR/vibration/" }, "dfns": [ @@ -23,6 +23,70 @@ }, "definedIn": "prose" }, + { + "id": "dom-navigator-vibrate", + "href": "https://www.w3.org/TR/vibration/#dom-navigator-vibrate", + "linkingText": [ + "vibrate()", + "vibrate(pattern)" + ], + "localLinkingText": [ + "Navigator.vibrate", + "Navigator.vibrate()", + "vibrate" + ], + "type": "method", + "for": [ + "Navigator" + ], + "access": "public", + "informative": false, + "heading": { + "id": "vibration-interface", + "href": "https://www.w3.org/TR/vibration/#vibration-interface", + "title": "Vibration Interface", + "number": "3" + }, + "definedIn": "prose" + }, + { + "id": "dfn-vibration-pattern", + "href": "https://www.w3.org/TR/vibration/#dfn-vibration-pattern", + "linkingText": [ + "vibration pattern" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "vibration-interface", + "href": "https://www.w3.org/TR/vibration/#vibration-interface", + "title": "Vibration Interface", + "number": "3" + }, + "definedIn": "prose" + }, + { + "id": "dom-vibratepattern", + "href": "https://www.w3.org/TR/vibration/#dom-vibratepattern", + "linkingText": [ + "VibratePattern" + ], + "localLinkingText": [], + "type": "typedef", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "vibration-interface", + "href": "https://www.w3.org/TR/vibration/#vibration-interface", + "title": "Vibration Interface", + "number": "3" + }, + "definedIn": "prose" + }, { "id": "dfn-processing-vibration-patterns", "href": "https://www.w3.org/TR/vibration/#dfn-processing-vibration-patterns", @@ -38,7 +102,7 @@ "id": "vibration-interface", "href": "https://www.w3.org/TR/vibration/#vibration-interface", "title": "Vibration Interface", - "number": "4" + "number": "3" }, "definedIn": "prose" }, @@ -57,7 +121,7 @@ "id": "vibration-interface", "href": "https://www.w3.org/TR/vibration/#vibration-interface", "title": "Vibration Interface", - "number": "4" + "number": "3" }, "definedIn": "prose" }, @@ -76,7 +140,7 @@ "id": "vibration-interface", "href": "https://www.w3.org/TR/vibration/#vibration-interface", "title": "Vibration Interface", - "number": "4" + "number": "3" }, "definedIn": "prose" } diff --git a/tr/dfns/webaudio-1.0.json b/tr/dfns/webaudio-1.0.json index 7799bbeed577..85e8eb767db3 100644 --- a/tr/dfns/webaudio-1.0.json +++ b/tr/dfns/webaudio-1.0.json @@ -1,12 +1,12 @@ { "spec": { - "title": "Web Audio API 1.1", - "url": "https://www.w3.org/TR/webaudio/" + "title": "Web Audio API", + "url": "https://www.w3.org/TR/webaudio-1.0/" }, "dfns": [ { "id": "inputs", - "href": "https://www.w3.org/TR/webaudio/#inputs", + "href": "https://www.w3.org/TR/webaudio-1.0/#inputs", "linkingText": [ "inputs" ], @@ -17,14 +17,14 @@ "informative": false, "heading": { "id": "ModularRouting", - "href": "https://www.w3.org/TR/webaudio/#ModularRouting", + "href": "https://www.w3.org/TR/webaudio-1.0/#ModularRouting", "title": "Modular Routing" }, "definedIn": "prose" }, { "id": "outputs", - "href": "https://www.w3.org/TR/webaudio/#outputs", + "href": "https://www.w3.org/TR/webaudio-1.0/#outputs", "linkingText": [ "outputs" ], @@ -35,14 +35,14 @@ "informative": false, "heading": { "id": "ModularRouting", - "href": "https://www.w3.org/TR/webaudio/#ModularRouting", + "href": "https://www.w3.org/TR/webaudio-1.0/#ModularRouting", "title": "Modular Routing" }, "definedIn": "prose" }, { "id": "source-node", - "href": "https://www.w3.org/TR/webaudio/#source-node", + "href": "https://www.w3.org/TR/webaudio-1.0/#source-node", "linkingText": [ "source node" ], @@ -53,14 +53,14 @@ "informative": false, "heading": { "id": "ModularRouting", - "href": "https://www.w3.org/TR/webaudio/#ModularRouting", + "href": "https://www.w3.org/TR/webaudio-1.0/#ModularRouting", "title": "Modular Routing" }, "definedIn": "prose" }, { "id": "destination-node", - "href": "https://www.w3.org/TR/webaudio/#destination-node", + "href": "https://www.w3.org/TR/webaudio-1.0/#destination-node", "linkingText": [ "destination node" ], @@ -71,16 +71,16 @@ "informative": false, "heading": { "id": "ModularRouting", - "href": "https://www.w3.org/TR/webaudio/#ModularRouting", + "href": "https://www.w3.org/TR/webaudio-1.0/#ModularRouting", "title": "Modular Routing" }, "definedIn": "prose" }, { "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext", "linkingText": [ - "BaseAudioContext" + "baseaudiocontext" ], "localLinkingText": [], "type": "interface", @@ -89,7 +89,7 @@ "informative": false, "heading": { "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext", "title": "The BaseAudioContext Interface", "number": "1.1" }, @@ -97,7 +97,7 @@ }, { "id": "dom-baseaudiocontext-pending-promises-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-pending-promises-slot", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-pending-promises-slot", "linkingText": [ "[[pending promises]]" ], @@ -110,7 +110,7 @@ "informative": false, "heading": { "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext", "title": "The BaseAudioContext Interface", "number": "1.1" }, @@ -118,7 +118,7 @@ }, { "id": "dom-baseaudiocontext-rendering-thread-state-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-rendering-thread-state-slot", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-rendering-thread-state-slot", "linkingText": [ "[[rendering thread state]]" ], @@ -131,7 +131,7 @@ "informative": false, "heading": { "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext", "title": "The BaseAudioContext Interface", "number": "1.1" }, @@ -139,7 +139,7 @@ }, { "id": "dom-baseaudiocontext-control-thread-state-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-control-thread-state-slot", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-control-thread-state-slot", "linkingText": [ "[[control thread state]]" ], @@ -152,28 +152,7 @@ "informative": false, "heading": { "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", - "title": "The BaseAudioContext Interface", - "number": "1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-baseaudiocontext-render-quantum-size-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-render-quantum-size-slot", - "linkingText": [ - "[[render quantum size]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext", "title": "The BaseAudioContext Interface", "number": "1.1" }, @@ -181,7 +160,7 @@ }, { "id": "enumdef-audiocontextstate", - "href": "https://www.w3.org/TR/webaudio/#enumdef-audiocontextstate", + "href": "https://www.w3.org/TR/webaudio-1.0/#enumdef-audiocontextstate", "linkingText": [ "AudioContextState" ], @@ -192,7 +171,7 @@ "informative": false, "heading": { "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext", "title": "The BaseAudioContext Interface", "number": "1.1" }, @@ -200,7 +179,7 @@ }, { "id": "dom-audiocontextstate-suspended", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontextstate-suspended", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontextstate-suspended", "linkingText": [ "\"suspended\"", "suspended" @@ -214,7 +193,7 @@ "informative": false, "heading": { "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext", "title": "The BaseAudioContext Interface", "number": "1.1" }, @@ -222,7 +201,7 @@ }, { "id": "dom-audiocontextstate-running", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontextstate-running", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontextstate-running", "linkingText": [ "\"running\"", "running" @@ -236,7 +215,7 @@ "informative": false, "heading": { "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext", "title": "The BaseAudioContext Interface", "number": "1.1" }, @@ -244,7 +223,7 @@ }, { "id": "dom-audiocontextstate-closed", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontextstate-closed", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontextstate-closed", "linkingText": [ "\"closed\"", "closed" @@ -258,112 +237,68 @@ "informative": false, "heading": { "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", - "title": "The BaseAudioContext Interface", - "number": "1.1" - }, - "definedIn": "table" - }, - { - "id": "enumdef-audiocontextrendersizecategory", - "href": "https://www.w3.org/TR/webaudio/#enumdef-audiocontextrendersizecategory", - "linkingText": [ - "AudioContextRenderSizeCategory" - ], - "localLinkingText": [], - "type": "enum", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", - "title": "The BaseAudioContext Interface", - "number": "1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiocontextrendersizecategory-default", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontextrendersizecategory-default", - "linkingText": [ - "\"default\"", - "default" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "AudioContextRenderSizeCategory" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext", "title": "The BaseAudioContext Interface", "number": "1.1" }, "definedIn": "table" }, { - "id": "dom-audiocontextrendersizecategory-hardware", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontextrendersizecategory-hardware", + "id": "dom-decodeerrorcallback-error", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-decodeerrorcallback-error", "linkingText": [ - "\"hardware\"", - "hardware" + "error" ], "localLinkingText": [], - "type": "enum-value", + "type": "argument", "for": [ - "AudioContextRenderSizeCategory" + "DecodeErrorCallback" ], "access": "public", "informative": false, "heading": { "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext", "title": "The BaseAudioContext Interface", "number": "1.1" }, - "definedIn": "table" + "definedIn": "pre" }, { - "id": "dom-decodeerrorcallback-error", - "href": "https://www.w3.org/TR/webaudio/#dom-decodeerrorcallback-error", + "id": "dom-decodesuccesscallback-decodeddata", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-decodesuccesscallback-decodeddata", "linkingText": [ - "error" + "decodedData" ], "localLinkingText": [], "type": "argument", "for": [ - "DecodeErrorCallback" + "DecodeSuccessCallback" ], "access": "public", "informative": false, "heading": { "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext", "title": "The BaseAudioContext Interface", "number": "1.1" }, "definedIn": "pre" }, { - "id": "dom-decodesuccesscallback-decodeddata", - "href": "https://www.w3.org/TR/webaudio/#dom-decodesuccesscallback-decodeddata", + "id": "baseaudiocontext", + "href": "https://www.w3.org/TR/webaudio-1.0/#baseaudiocontext", "linkingText": [ - "decodedData" + "BaseAudioContext" ], "localLinkingText": [], - "type": "argument", - "for": [ - "DecodeSuccessCallback" - ], + "type": "interface", + "for": [], "access": "public", "informative": false, "heading": { "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext", "title": "The BaseAudioContext Interface", "number": "1.1" }, @@ -371,7 +306,7 @@ }, { "id": "dom-baseaudiocontext-createbuffer-numberofchannels-length-samplerate-numberofchannels", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbuffer-numberofchannels-length-samplerate-numberofchannels", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createbuffer-numberofchannels-length-samplerate-numberofchannels", "linkingText": [ "numberOfChannels" ], @@ -384,7 +319,7 @@ "informative": false, "heading": { "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext", "title": "The BaseAudioContext Interface", "number": "1.1" }, @@ -392,7 +327,7 @@ }, { "id": "dom-baseaudiocontext-createbuffer-numberofchannels-length-samplerate-length", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbuffer-numberofchannels-length-samplerate-length", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createbuffer-numberofchannels-length-samplerate-length", "linkingText": [ "length" ], @@ -405,7 +340,7 @@ "informative": false, "heading": { "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext", "title": "The BaseAudioContext Interface", "number": "1.1" }, @@ -413,7 +348,7 @@ }, { "id": "dom-baseaudiocontext-createbuffer-numberofchannels-length-samplerate-samplerate", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbuffer-numberofchannels-length-samplerate-samplerate", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createbuffer-numberofchannels-length-samplerate-samplerate", "linkingText": [ "sampleRate" ], @@ -426,7 +361,7 @@ "informative": false, "heading": { "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext", "title": "The BaseAudioContext Interface", "number": "1.1" }, @@ -434,7 +369,7 @@ }, { "id": "dom-baseaudiocontext-createiirfilter-feedforward-feedback-feedforward", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createiirfilter-feedforward-feedback-feedforward", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createiirfilter-feedforward-feedback-feedforward", "linkingText": [ "feedforward" ], @@ -447,7 +382,7 @@ "informative": false, "heading": { "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext", "title": "The BaseAudioContext Interface", "number": "1.1" }, @@ -455,7 +390,7 @@ }, { "id": "dom-baseaudiocontext-createiirfilter-feedforward-feedback-feedback", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createiirfilter-feedforward-feedback-feedback", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createiirfilter-feedforward-feedback-feedback", "linkingText": [ "feedback" ], @@ -468,7 +403,7 @@ "informative": false, "heading": { "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext", "title": "The BaseAudioContext Interface", "number": "1.1" }, @@ -476,7 +411,7 @@ }, { "id": "dom-baseaudiocontext-createperiodicwave-real-imag-constraints-real", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createperiodicwave-real-imag-constraints-real", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createperiodicwave-real-imag-constraints-real", "linkingText": [ "real" ], @@ -490,7 +425,7 @@ "informative": false, "heading": { "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext", "title": "The BaseAudioContext Interface", "number": "1.1" }, @@ -498,7 +433,7 @@ }, { "id": "dom-baseaudiocontext-createperiodicwave-real-imag-constraints-imag", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createperiodicwave-real-imag-constraints-imag", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createperiodicwave-real-imag-constraints-imag", "linkingText": [ "imag" ], @@ -512,7 +447,7 @@ "informative": false, "heading": { "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext", "title": "The BaseAudioContext Interface", "number": "1.1" }, @@ -520,7 +455,7 @@ }, { "id": "dom-baseaudiocontext-createperiodicwave-real-imag-constraints-constraints", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createperiodicwave-real-imag-constraints-constraints", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createperiodicwave-real-imag-constraints-constraints", "linkingText": [ "constraints" ], @@ -534,7 +469,7 @@ "informative": false, "heading": { "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext", "title": "The BaseAudioContext Interface", "number": "1.1" }, @@ -542,7 +477,7 @@ }, { "id": "dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata", "linkingText": [ "audioData" ], @@ -557,7 +492,7 @@ "informative": false, "heading": { "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext", "title": "The BaseAudioContext Interface", "number": "1.1" }, @@ -565,7 +500,7 @@ }, { "id": "dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-successcallback", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-successcallback", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-successcallback", "linkingText": [ "successCallback" ], @@ -580,7 +515,7 @@ "informative": false, "heading": { "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext", "title": "The BaseAudioContext Interface", "number": "1.1" }, @@ -588,7 +523,7 @@ }, { "id": "dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-errorcallback", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-errorcallback", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-errorcallback", "linkingText": [ "errorCallback" ], @@ -603,7 +538,7 @@ "informative": false, "heading": { "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext", "title": "The BaseAudioContext Interface", "number": "1.1" }, @@ -611,7 +546,7 @@ }, { "id": "dom-baseaudiocontext-audioworklet", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-audioworklet", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-audioworklet", "linkingText": [ "audioWorklet" ], @@ -624,7 +559,7 @@ "informative": false, "heading": { "id": "BaseAudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext-attributes", "title": "Attributes", "number": "1.1.1" }, @@ -632,7 +567,7 @@ }, { "id": "dom-baseaudiocontext-currenttime", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-currenttime", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-currenttime", "linkingText": [ "currentTime" ], @@ -645,7 +580,7 @@ "informative": false, "heading": { "id": "BaseAudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext-attributes", "title": "Attributes", "number": "1.1.1" }, @@ -653,7 +588,7 @@ }, { "id": "dom-baseaudiocontext-destination", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-destination", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-destination", "linkingText": [ "destination" ], @@ -666,7 +601,7 @@ "informative": false, "heading": { "id": "BaseAudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext-attributes", "title": "Attributes", "number": "1.1.1" }, @@ -674,7 +609,7 @@ }, { "id": "dom-baseaudiocontext-listener", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-listener", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-listener", "linkingText": [ "listener" ], @@ -687,7 +622,7 @@ "informative": false, "heading": { "id": "BaseAudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext-attributes", "title": "Attributes", "number": "1.1.1" }, @@ -695,7 +630,7 @@ }, { "id": "dom-baseaudiocontext-onstatechange", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-onstatechange", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-onstatechange", "linkingText": [ "onstatechange" ], @@ -708,36 +643,15 @@ "informative": false, "heading": { "id": "BaseAudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext-attributes", "title": "Attributes", "number": "1.1.1" }, "definedIn": "dt" }, - { - "id": "eventdef-baseaudiocontext-statechange", - "href": "https://www.w3.org/TR/webaudio/#eventdef-baseaudiocontext-statechange", - "linkingText": [ - "statechange" - ], - "localLinkingText": [], - "type": "event", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext-attributes", - "title": "Attributes", - "number": "1.1.1" - }, - "definedIn": "prose" - }, { "id": "dom-baseaudiocontext-samplerate", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-samplerate", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-samplerate", "linkingText": [ "sampleRate" ], @@ -750,7 +664,7 @@ "informative": false, "heading": { "id": "BaseAudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext-attributes", "title": "Attributes", "number": "1.1.1" }, @@ -758,7 +672,7 @@ }, { "id": "--nyquist-frequency", - "href": "https://www.w3.org/TR/webaudio/#--nyquist-frequency", + "href": "https://www.w3.org/TR/webaudio-1.0/#--nyquist-frequency", "linkingText": [ "Nyquist frequency" ], @@ -771,7 +685,7 @@ "informative": false, "heading": { "id": "BaseAudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext-attributes", "title": "Attributes", "number": "1.1.1" }, @@ -779,7 +693,7 @@ }, { "id": "dom-baseaudiocontext-state", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-state", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-state", "linkingText": [ "state" ], @@ -792,28 +706,7 @@ "informative": false, "heading": { "id": "BaseAudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext-attributes", - "title": "Attributes", - "number": "1.1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-renderquantumsize", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-renderquantumsize", - "linkingText": [ - "renderQuantumSize" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext-attributes", "title": "Attributes", "number": "1.1.1" }, @@ -821,7 +714,7 @@ }, { "id": "dom-baseaudiocontext-createanalyser", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createanalyser", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createanalyser", "linkingText": [ "createAnalyser()" ], @@ -834,7 +727,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -842,7 +735,7 @@ }, { "id": "dom-baseaudiocontext-createbiquadfilter", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbiquadfilter", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createbiquadfilter", "linkingText": [ "createBiquadFilter()" ], @@ -855,7 +748,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -863,7 +756,7 @@ }, { "id": "dom-baseaudiocontext-createbuffer", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbuffer", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createbuffer", "linkingText": [ "createBuffer(numberOfChannels, length, sampleRate)" ], @@ -876,7 +769,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -884,7 +777,7 @@ }, { "id": "dom-baseaudiocontext-createbuffer-numberofchannels", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbuffer-numberofchannels", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createbuffer-numberofchannels", "linkingText": [ "numberOfChannels" ], @@ -897,7 +790,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -905,7 +798,7 @@ }, { "id": "dom-baseaudiocontext-createbuffer-length", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbuffer-length", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createbuffer-length", "linkingText": [ "length" ], @@ -918,7 +811,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -926,7 +819,7 @@ }, { "id": "dom-baseaudiocontext-createbuffer-samplerate", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbuffer-samplerate", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createbuffer-samplerate", "linkingText": [ "sampleRate" ], @@ -939,7 +832,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -947,7 +840,7 @@ }, { "id": "dom-baseaudiocontext-createbuffersource", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbuffersource", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createbuffersource", "linkingText": [ "createBufferSource()" ], @@ -960,7 +853,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -968,7 +861,7 @@ }, { "id": "dom-baseaudiocontext-createchannelmerger", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createchannelmerger", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createchannelmerger", "linkingText": [ "createChannelMerger(numberOfInputs)", "createChannelMerger()" @@ -982,7 +875,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -990,7 +883,7 @@ }, { "id": "dom-baseaudiocontext-createchannelmerger-numberofinputs-numberofinputs", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createchannelmerger-numberofinputs-numberofinputs", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createchannelmerger-numberofinputs-numberofinputs", "linkingText": [ "numberOfInputs" ], @@ -1003,7 +896,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -1011,7 +904,7 @@ }, { "id": "dom-baseaudiocontext-createchannelsplitter", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createchannelsplitter", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createchannelsplitter", "linkingText": [ "createChannelSplitter(numberOfOutputs)", "createChannelSplitter()" @@ -1025,7 +918,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -1033,7 +926,7 @@ }, { "id": "dom-baseaudiocontext-createchannelsplitter-numberofoutputs-numberofoutputs", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createchannelsplitter-numberofoutputs-numberofoutputs", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createchannelsplitter-numberofoutputs-numberofoutputs", "linkingText": [ "numberOfOutputs" ], @@ -1046,7 +939,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -1054,7 +947,7 @@ }, { "id": "dom-baseaudiocontext-createconstantsource", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createconstantsource", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createconstantsource", "linkingText": [ "createConstantSource()" ], @@ -1067,7 +960,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -1075,7 +968,7 @@ }, { "id": "dom-baseaudiocontext-createconvolver", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createconvolver", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createconvolver", "linkingText": [ "createConvolver()" ], @@ -1088,7 +981,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -1096,7 +989,7 @@ }, { "id": "dom-baseaudiocontext-createdelay", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createdelay", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createdelay", "linkingText": [ "createDelay(maxDelayTime)", "createDelay()" @@ -1110,7 +1003,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -1118,7 +1011,7 @@ }, { "id": "dom-baseaudiocontext-createdelay-maxdelaytime-maxdelaytime", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createdelay-maxdelaytime-maxdelaytime", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createdelay-maxdelaytime-maxdelaytime", "linkingText": [ "maxDelayTime" ], @@ -1131,7 +1024,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -1139,7 +1032,7 @@ }, { "id": "dom-baseaudiocontext-createdynamicscompressor", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createdynamicscompressor", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createdynamicscompressor", "linkingText": [ "createDynamicsCompressor()" ], @@ -1152,7 +1045,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -1160,7 +1053,7 @@ }, { "id": "dom-baseaudiocontext-creategain", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-creategain", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-creategain", "linkingText": [ "createGain()" ], @@ -1173,7 +1066,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -1181,7 +1074,7 @@ }, { "id": "dom-baseaudiocontext-createiirfilter", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createiirfilter", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createiirfilter", "linkingText": [ "createIIRFilter(feedforward, feedback)" ], @@ -1194,7 +1087,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -1202,7 +1095,7 @@ }, { "id": "dom-baseaudiocontext-createiirfilter-feedforward", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createiirfilter-feedforward", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createiirfilter-feedforward", "linkingText": [ "feedforward" ], @@ -1215,7 +1108,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -1223,7 +1116,7 @@ }, { "id": "dom-baseaudiocontext-createiirfilter-feedback", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createiirfilter-feedback", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createiirfilter-feedback", "linkingText": [ "feedback" ], @@ -1236,7 +1129,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -1244,7 +1137,7 @@ }, { "id": "dom-baseaudiocontext-createoscillator", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createoscillator", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createoscillator", "linkingText": [ "createOscillator()" ], @@ -1257,7 +1150,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -1265,7 +1158,7 @@ }, { "id": "dom-baseaudiocontext-createpanner", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createpanner", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createpanner", "linkingText": [ "createPanner()" ], @@ -1278,7 +1171,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -1286,7 +1179,7 @@ }, { "id": "dom-baseaudiocontext-createperiodicwave", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createperiodicwave", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createperiodicwave", "linkingText": [ "createPeriodicWave(real, imag, constraints)", "createPeriodicWave(real, imag)" @@ -1300,7 +1193,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -1308,7 +1201,7 @@ }, { "id": "dom-baseaudiocontext-createperiodicwave-real", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createperiodicwave-real", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createperiodicwave-real", "linkingText": [ "real" ], @@ -1321,7 +1214,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -1329,7 +1222,7 @@ }, { "id": "dom-baseaudiocontext-createperiodicwave-imag", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createperiodicwave-imag", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createperiodicwave-imag", "linkingText": [ "imag" ], @@ -1342,7 +1235,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -1350,7 +1243,7 @@ }, { "id": "dom-baseaudiocontext-createperiodicwave-constraints", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createperiodicwave-constraints", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createperiodicwave-constraints", "linkingText": [ "constraints" ], @@ -1363,7 +1256,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -1371,7 +1264,7 @@ }, { "id": "dom-baseaudiocontext-createscriptprocessor", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createscriptprocessor", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createscriptprocessor", "linkingText": [ "createScriptProcessor(bufferSize, numberOfInputChannels, numberOfOutputChannels)", "createScriptProcessor(bufferSize, numberOfInputChannels)", @@ -1387,7 +1280,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -1395,7 +1288,7 @@ }, { "id": "dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-buffersize", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-buffersize", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-buffersize", "linkingText": [ "bufferSize" ], @@ -1408,7 +1301,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -1416,7 +1309,7 @@ }, { "id": "dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels", "linkingText": [ "numberOfInputChannels" ], @@ -1429,7 +1322,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -1437,7 +1330,7 @@ }, { "id": "dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels", "linkingText": [ "numberOfOutputChannels" ], @@ -1450,7 +1343,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -1458,7 +1351,7 @@ }, { "id": "dom-baseaudiocontext-createstereopanner", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createstereopanner", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createstereopanner", "linkingText": [ "createStereoPanner()" ], @@ -1471,7 +1364,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -1479,7 +1372,7 @@ }, { "id": "dom-baseaudiocontext-createwaveshaper", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createwaveshaper", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createwaveshaper", "linkingText": [ "createWaveShaper()" ], @@ -1492,7 +1385,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -1500,7 +1393,7 @@ }, { "id": "dom-baseaudiocontext-decodeaudiodata", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decodeaudiodata", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-decodeaudiodata", "linkingText": [ "decodeAudioData(audioData, successCallback, errorCallback)", "decodeAudioData(audioData, successCallback)", @@ -1515,7 +1408,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -1523,7 +1416,7 @@ }, { "id": "dom-baseaudiocontext-decoding-thread", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decoding-thread", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-decoding-thread", "linkingText": [ "decoding thread" ], @@ -1536,7 +1429,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -1544,7 +1437,7 @@ }, { "id": "dom-baseaudiocontext-decodeaudiodata-audiodata", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decodeaudiodata-audiodata", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-decodeaudiodata-audiodata", "linkingText": [ "audioData" ], @@ -1557,7 +1450,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -1565,7 +1458,7 @@ }, { "id": "dom-baseaudiocontext-decodeaudiodata-successcallback", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decodeaudiodata-successcallback", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-decodeaudiodata-successcallback", "linkingText": [ "successCallback" ], @@ -1578,7 +1471,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -1586,7 +1479,7 @@ }, { "id": "dom-baseaudiocontext-decodeaudiodata-errorcallback", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decodeaudiodata-errorcallback", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-decodeaudiodata-errorcallback", "linkingText": [ "errorCallback" ], @@ -1599,7 +1492,7 @@ "informative": false, "heading": { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "title": "Methods", "number": "1.1.2" }, @@ -1607,7 +1500,7 @@ }, { "id": "callback-decodesuccesscallback-parameters", - "href": "https://www.w3.org/TR/webaudio/#callback-decodesuccesscallback-parameters", + "href": "https://www.w3.org/TR/webaudio-1.0/#callback-decodesuccesscallback-parameters", "linkingText": [ "DecodeSuccessCallback", "DecodeSuccessCallback()" @@ -1619,7 +1512,7 @@ "informative": false, "heading": { "id": "callback-decodesuccesscallback-parameters", - "href": "https://www.w3.org/TR/webaudio/#callback-decodesuccesscallback-parameters", + "href": "https://www.w3.org/TR/webaudio-1.0/#callback-decodesuccesscallback-parameters", "title": "Callback DecodeSuccessCallback() Parameters", "number": "1.1.3" }, @@ -1627,7 +1520,7 @@ }, { "id": "callback-decodeerrorcallback-parameters", - "href": "https://www.w3.org/TR/webaudio/#callback-decodeerrorcallback-parameters", + "href": "https://www.w3.org/TR/webaudio-1.0/#callback-decodeerrorcallback-parameters", "linkingText": [ "DecodeErrorCallback", "DecodeErrorCallback()" @@ -1639,7 +1532,7 @@ "informative": false, "heading": { "id": "callback-decodeerrorcallback-parameters", - "href": "https://www.w3.org/TR/webaudio/#callback-decodeerrorcallback-parameters", + "href": "https://www.w3.org/TR/webaudio-1.0/#callback-decodeerrorcallback-parameters", "title": "Callback DecodeErrorCallback() Parameters", "number": "1.1.4" }, @@ -1647,7 +1540,7 @@ }, { "id": "acquiring", - "href": "https://www.w3.org/TR/webaudio/#acquiring", + "href": "https://www.w3.org/TR/webaudio-1.0/#acquiring", "linkingText": [ "acquiring system resources" ], @@ -1658,7 +1551,7 @@ "informative": false, "heading": { "id": "system-resources-associated-with-baseaudiocontext-subclasses", - "href": "https://www.w3.org/TR/webaudio/#system-resources-associated-with-baseaudiocontext-subclasses", + "href": "https://www.w3.org/TR/webaudio-1.0/#system-resources-associated-with-baseaudiocontext-subclasses", "title": "System Resources Associated with BaseAudioContext Subclasses", "number": "1.1.7" }, @@ -1666,7 +1559,7 @@ }, { "id": "releasing", - "href": "https://www.w3.org/TR/webaudio/#releasing", + "href": "https://www.w3.org/TR/webaudio-1.0/#releasing", "linkingText": [ "release system resources" ], @@ -1677,7 +1570,7 @@ "informative": false, "heading": { "id": "system-resources-associated-with-baseaudiocontext-subclasses", - "href": "https://www.w3.org/TR/webaudio/#system-resources-associated-with-baseaudiocontext-subclasses", + "href": "https://www.w3.org/TR/webaudio-1.0/#system-resources-associated-with-baseaudiocontext-subclasses", "title": "System Resources Associated with BaseAudioContext Subclasses", "number": "1.1.7" }, @@ -1685,9 +1578,9 @@ }, { "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContext", "linkingText": [ - "AudioContext" + "audiocontext" ], "localLinkingText": [], "type": "interface", @@ -1696,7 +1589,7 @@ "informative": false, "heading": { "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContext", "title": "The AudioContext Interface", "number": "1.2" }, @@ -1704,7 +1597,7 @@ }, { "id": "enumdef-audiocontextlatencycategory", - "href": "https://www.w3.org/TR/webaudio/#enumdef-audiocontextlatencycategory", + "href": "https://www.w3.org/TR/webaudio-1.0/#enumdef-audiocontextlatencycategory", "linkingText": [ "AudioContextLatencyCategory" ], @@ -1715,7 +1608,7 @@ "informative": false, "heading": { "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContext", "title": "The AudioContext Interface", "number": "1.2" }, @@ -1723,7 +1616,7 @@ }, { "id": "dom-audiocontextlatencycategory-balanced", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontextlatencycategory-balanced", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontextlatencycategory-balanced", "linkingText": [ "\"balanced\"", "balanced" @@ -1737,7 +1630,7 @@ "informative": false, "heading": { "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContext", "title": "The AudioContext Interface", "number": "1.2" }, @@ -1745,7 +1638,7 @@ }, { "id": "dom-audiocontextlatencycategory-interactive", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontextlatencycategory-interactive", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontextlatencycategory-interactive", "linkingText": [ "\"interactive\"", "interactive" @@ -1759,7 +1652,7 @@ "informative": false, "heading": { "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContext", "title": "The AudioContext Interface", "number": "1.2" }, @@ -1767,7 +1660,7 @@ }, { "id": "dom-audiocontextlatencycategory-playback", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontextlatencycategory-playback", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontextlatencycategory-playback", "linkingText": [ "\"playback\"", "playback" @@ -1781,90 +1674,26 @@ "informative": false, "heading": { "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", - "title": "The AudioContext Interface", - "number": "1.2" - }, - "definedIn": "table" - }, - { - "id": "enumdef-audiosinktype", - "href": "https://www.w3.org/TR/webaudio/#enumdef-audiosinktype", - "linkingText": [ - "AudioSinkType" - ], - "localLinkingText": [], - "type": "enum", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", - "title": "The AudioContext Interface", - "number": "1.2" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiosinktype-none", - "href": "https://www.w3.org/TR/webaudio/#dom-audiosinktype-none", - "linkingText": [ - "\"none\"", - "none" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "AudioSinkType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContext", "title": "The AudioContext Interface", "number": "1.2" }, "definedIn": "table" }, { - "id": "dom-audiocontext-setsinkid", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-setsinkid", + "id": "audiocontext", + "href": "https://www.w3.org/TR/webaudio-1.0/#audiocontext", "linkingText": [ - "setSinkId(sinkId)" - ], - "localLinkingText": [], - "type": "method", - "for": [ "AudioContext" ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", - "title": "The AudioContext Interface", - "number": "1.2" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiocontext-setsinkid-sinkid-sinkid", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-setsinkid-sinkid-sinkid", - "linkingText": [ - "sinkId" - ], "localLinkingText": [], - "type": "argument", - "for": [ - "AudioContext/setSinkId(sinkId)" - ], + "type": "interface", + "for": [], "access": "public", "informative": false, "heading": { "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContext", "title": "The AudioContext Interface", "number": "1.2" }, @@ -1872,7 +1701,7 @@ }, { "id": "dom-audiocontext-createmediaelementsource-mediaelement-mediaelement", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediaelementsource-mediaelement-mediaelement", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-createmediaelementsource-mediaelement-mediaelement", "linkingText": [ "mediaElement" ], @@ -1885,7 +1714,7 @@ "informative": false, "heading": { "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContext", "title": "The AudioContext Interface", "number": "1.2" }, @@ -1893,7 +1722,7 @@ }, { "id": "dom-audiocontext-createmediastreamsource-mediastream-mediastream", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediastreamsource-mediastream-mediastream", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-createmediastreamsource-mediastream-mediastream", "linkingText": [ "mediaStream" ], @@ -1906,7 +1735,7 @@ "informative": false, "heading": { "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContext", "title": "The AudioContext Interface", "number": "1.2" }, @@ -1914,7 +1743,7 @@ }, { "id": "dom-audiocontext-createmediastreamtracksource-mediastreamtrack-mediastreamtrack", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediastreamtracksource-mediastreamtrack-mediastreamtrack", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-createmediastreamtracksource-mediastreamtrack-mediastreamtrack", "linkingText": [ "mediaStreamTrack" ], @@ -1927,7 +1756,7 @@ "informative": false, "heading": { "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContext", "title": "The AudioContext Interface", "number": "1.2" }, @@ -1935,7 +1764,7 @@ }, { "id": "allowed-to-start", - "href": "https://www.w3.org/TR/webaudio/#allowed-to-start", + "href": "https://www.w3.org/TR/webaudio-1.0/#allowed-to-start", "linkingText": [ "allowed to start" ], @@ -1946,7 +1775,7 @@ "informative": false, "heading": { "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContext", "title": "The AudioContext Interface", "number": "1.2" }, @@ -1954,7 +1783,7 @@ }, { "id": "dom-audiocontext-suspended-by-user-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-suspended-by-user-slot", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-suspended-by-user-slot", "linkingText": [ "[[suspended by user]]" ], @@ -1967,36 +1796,39 @@ "informative": false, "heading": { "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContext", "title": "The AudioContext Interface", "number": "1.2" }, "definedIn": "dt" }, { - "id": "dom-audiocontext-sink-id-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-sink-id-slot", + "id": "dom-audiocontext-audiocontext", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-audiocontext", "linkingText": [ - "[[sink ID]]" + "AudioContext(contextOptions)", + "constructor(contextOptions)", + "AudioContext()", + "constructor()" ], "localLinkingText": [], - "type": "attribute", + "type": "constructor", "for": [ "AudioContext" ], "access": "public", "informative": false, "heading": { - "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", - "title": "The AudioContext Interface", - "number": "1.2" + "id": "AudioContext-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContext-constructors", + "title": "Constructors", + "number": "1.2.1" }, "definedIn": "dt" }, { "id": "dom-audiocontext-pending-resume-promises-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-pending-resume-promises-slot", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-pending-resume-promises-slot", "linkingText": [ "[[pending resume promises]]" ], @@ -2007,41 +1839,17 @@ ], "access": "public", "informative": false, - "heading": { - "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", - "title": "The AudioContext Interface", - "number": "1.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-audiocontext", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-audiocontext", - "linkingText": [ - "AudioContext(contextOptions)", - "constructor(contextOptions)", - "AudioContext()", - "constructor()" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, "heading": { "id": "AudioContext-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContext-constructors", "title": "Constructors", "number": "1.2.1" }, - "definedIn": "dt" + "definedIn": "prose" }, { "id": "dom-audiocontext-constructor-contextoptions-contextoptions", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-constructor-contextoptions-contextoptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-constructor-contextoptions-contextoptions", "linkingText": [ "contextOptions" ], @@ -2054,7 +1862,7 @@ "informative": false, "heading": { "id": "AudioContext-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContext-constructors", "title": "Constructors", "number": "1.2.1" }, @@ -2062,7 +1870,7 @@ }, { "id": "dom-audiocontext-baselatency", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-baselatency", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-baselatency", "linkingText": [ "baseLatency" ], @@ -2075,7 +1883,7 @@ "informative": false, "heading": { "id": "AudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContext-attributes", "title": "Attributes", "number": "1.2.2" }, @@ -2083,7 +1891,7 @@ }, { "id": "dom-audiocontext-outputlatency", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-outputlatency", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-outputlatency", "linkingText": [ "outputLatency" ], @@ -2096,251 +1904,125 @@ "informative": false, "heading": { "id": "AudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContext-attributes", "title": "Attributes", "number": "1.2.2" }, "definedIn": "dt" }, { - "id": "dom-audiocontext-rendercapacity", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-rendercapacity", + "id": "dom-audiocontext-close", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-close", "linkingText": [ - "renderCapacity" + "close()" ], "localLinkingText": [], - "type": "attribute", + "type": "method", "for": [ "AudioContext" ], "access": "public", "informative": false, "heading": { - "id": "AudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-attributes", - "title": "Attributes", - "number": "1.2.2" + "id": "AudioContext-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContext-methods", + "title": "Methods", + "number": "1.2.3" }, "definedIn": "dt" }, { - "id": "dom-audiocontext-sinkid", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-sinkid", + "id": "dom-audiocontext-createmediaelementsource", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-createmediaelementsource", "linkingText": [ - "sinkId" + "createMediaElementSource(mediaElement)" ], "localLinkingText": [], - "type": "attribute", + "type": "method", "for": [ "AudioContext" ], "access": "public", "informative": false, "heading": { - "id": "AudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-attributes", - "title": "Attributes", - "number": "1.2.2" + "id": "AudioContext-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContext-methods", + "title": "Methods", + "number": "1.2.3" }, "definedIn": "dt" }, { - "id": "dom-audiocontext-onsinkchange", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-onsinkchange", + "id": "dom-audiocontext-createmediaelementsource-mediaelement", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-createmediaelementsource-mediaelement", "linkingText": [ - "onsinkchange" + "mediaElement" ], "localLinkingText": [], - "type": "attribute", + "type": "argument", "for": [ - "AudioContext" + "AudioContext/createMediaElementSource()" ], "access": "public", "informative": false, "heading": { - "id": "AudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-attributes", - "title": "Attributes", - "number": "1.2.2" + "id": "AudioContext-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContext-methods", + "title": "Methods", + "number": "1.2.3" }, - "definedIn": "dt" + "definedIn": "table" }, { - "id": "eventdef-audiocontext-sinkchange", - "href": "https://www.w3.org/TR/webaudio/#eventdef-audiocontext-sinkchange", + "id": "dom-audiocontext-createmediastreamdestination", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-createmediastreamdestination", "linkingText": [ - "sinkchange" + "createMediaStreamDestination()" ], "localLinkingText": [], - "type": "event", + "type": "method", "for": [ "AudioContext" ], "access": "public", "informative": false, "heading": { - "id": "AudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-attributes", - "title": "Attributes", - "number": "1.2.2" + "id": "AudioContext-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContext-methods", + "title": "Methods", + "number": "1.2.3" }, - "definedIn": "prose" + "definedIn": "dt" }, { - "id": "dom-audiocontext-onerror", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-onerror", + "id": "dom-audiocontext-createmediastreamsource", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-createmediastreamsource", "linkingText": [ - "onerror" + "createMediaStreamSource(mediaStream)" ], "localLinkingText": [], - "type": "attribute", + "type": "method", "for": [ "AudioContext" ], "access": "public", "informative": false, "heading": { - "id": "AudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-attributes", - "title": "Attributes", - "number": "1.2.2" + "id": "AudioContext-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContext-methods", + "title": "Methods", + "number": "1.2.3" }, "definedIn": "dt" }, { - "id": "eventdef-audiocontext-error", - "href": "https://www.w3.org/TR/webaudio/#eventdef-audiocontext-error", + "id": "dom-audiocontext-createmediastreamsource-mediastream", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-createmediastreamsource-mediastream", "linkingText": [ - "error" + "mediaStream" ], "localLinkingText": [], - "type": "event", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-attributes", - "title": "Attributes", - "number": "1.2.2" - }, - "definedIn": "prose" - }, - { - "id": "dom-audiocontext-close", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-close", - "linkingText": [ - "close()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-methods", - "title": "Methods", - "number": "1.2.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-createmediaelementsource", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediaelementsource", - "linkingText": [ - "createMediaElementSource(mediaElement)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-methods", - "title": "Methods", - "number": "1.2.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-createmediaelementsource-mediaelement", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediaelementsource-mediaelement", - "linkingText": [ - "mediaElement" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioContext/createMediaElementSource()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-methods", - "title": "Methods", - "number": "1.2.3" - }, - "definedIn": "table" - }, - { - "id": "dom-audiocontext-createmediastreamdestination", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediastreamdestination", - "linkingText": [ - "createMediaStreamDestination()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-methods", - "title": "Methods", - "number": "1.2.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-createmediastreamsource", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediastreamsource", - "linkingText": [ - "createMediaStreamSource(mediaStream)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-methods", - "title": "Methods", - "number": "1.2.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-createmediastreamsource-mediastream", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediastreamsource-mediastream", - "linkingText": [ - "mediaStream" - ], - "localLinkingText": [], - "type": "argument", + "type": "argument", "for": [ "AudioContext/createMediaStreamSource()" ], @@ -2348,7 +2030,7 @@ "informative": false, "heading": { "id": "AudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContext-methods", "title": "Methods", "number": "1.2.3" }, @@ -2356,7 +2038,7 @@ }, { "id": "dom-audiocontext-createmediastreamtracksource", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediastreamtracksource", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-createmediastreamtracksource", "linkingText": [ "createMediaStreamTrackSource(mediaStreamTrack)" ], @@ -2369,7 +2051,7 @@ "informative": false, "heading": { "id": "AudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContext-methods", "title": "Methods", "number": "1.2.3" }, @@ -2377,7 +2059,7 @@ }, { "id": "dom-audiocontext-createmediastreamtracksource-mediastreamtrack", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediastreamtracksource-mediastreamtrack", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-createmediastreamtracksource-mediastreamtrack", "linkingText": [ "mediaStreamTrack" ], @@ -2390,7 +2072,7 @@ "informative": false, "heading": { "id": "AudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContext-methods", "title": "Methods", "number": "1.2.3" }, @@ -2398,7 +2080,7 @@ }, { "id": "dom-audiocontext-getoutputtimestamp", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-getoutputtimestamp", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-getoutputtimestamp", "linkingText": [ "getOutputTimestamp()" ], @@ -2411,7 +2093,7 @@ "informative": false, "heading": { "id": "AudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContext-methods", "title": "Methods", "number": "1.2.3" }, @@ -2419,7 +2101,7 @@ }, { "id": "dom-audiocontext-resume", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-resume", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-resume", "linkingText": [ "resume()" ], @@ -2432,7 +2114,7 @@ "informative": false, "heading": { "id": "AudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContext-methods", "title": "Methods", "number": "1.2.3" }, @@ -2440,7 +2122,7 @@ }, { "id": "dom-audiocontext-suspend", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-suspend", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-suspend", "linkingText": [ "suspend()" ], @@ -2453,36 +2135,34 @@ "informative": false, "heading": { "id": "AudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContext-methods", "title": "Methods", "number": "1.2.3" }, "definedIn": "dt" }, { - "id": "dom-audiocontext-setsinkid-domstring-or-audiosinkoptions-sinkid", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-setsinkid-domstring-or-audiosinkoptions-sinkid", + "id": "AudioContextOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContextOptions", "linkingText": [ - "setSinkId((DOMString or AudioSinkOptions) sinkId)" + "audiocontextoptions" ], "localLinkingText": [], - "type": "method", - "for": [ - "AudioContext" - ], + "type": "dictionary", + "for": [], "access": "public", "informative": false, "heading": { - "id": "AudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-methods", - "title": "Methods", - "number": "1.2.3" + "id": "AudioContextOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContextOptions", + "title": "AudioContextOptions", + "number": "1.2.4" }, - "definedIn": "dt" + "definedIn": "heading" }, { - "id": "AudioContextOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioContextOptions", + "id": "dictdef-audiocontextoptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictdef-audiocontextoptions", "linkingText": [ "AudioContextOptions" ], @@ -2493,15 +2173,15 @@ "informative": false, "heading": { "id": "AudioContextOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioContextOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContextOptions", "title": "AudioContextOptions", - "number": "1.2.5" + "number": "1.2.4" }, - "definedIn": "heading" + "definedIn": "pre" }, { "id": "dom-audiocontextoptions-latencyhint", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontextoptions-latencyhint", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontextoptions-latencyhint", "linkingText": [ "latencyHint" ], @@ -2514,15 +2194,15 @@ "informative": false, "heading": { "id": "dictionary-audiocontextoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiocontextoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audiocontextoptions-members", "title": "Dictionary AudioContextOptions Members", - "number": "1.2.5.1" + "number": "1.2.4.1" }, "definedIn": "dt" }, { "id": "dom-audiocontextoptions-samplerate", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontextoptions-samplerate", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontextoptions-samplerate", "linkingText": [ "sampleRate" ], @@ -2535,59 +2215,17 @@ "informative": false, "heading": { "id": "dictionary-audiocontextoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiocontextoptions-members", - "title": "Dictionary AudioContextOptions Members", - "number": "1.2.5.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontextoptions-sinkid", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontextoptions-sinkid", - "linkingText": [ - "sinkId" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioContextOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audiocontextoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiocontextoptions-members", - "title": "Dictionary AudioContextOptions Members", - "number": "1.2.5.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontextoptions-rendersizehint", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontextoptions-rendersizehint", - "linkingText": [ - "renderSizeHint" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioContextOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audiocontextoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiocontextoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audiocontextoptions-members", "title": "Dictionary AudioContextOptions Members", - "number": "1.2.5.1" + "number": "1.2.4.1" }, "definedIn": "dt" }, { - "id": "AudioSinkOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioSinkOptions", + "id": "AudioTimestamp", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioTimestamp", "linkingText": [ - "AudioSinkOptions" + "audiotimestamp" ], "localLinkingText": [], "type": "dictionary", @@ -2595,77 +2233,16 @@ "access": "public", "informative": false, "heading": { - "id": "AudioSinkOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioSinkOptions", - "title": "AudioSinkOptions", - "number": "1.2.6" - }, - "definedIn": "heading" - }, - { - "id": "dom-audiosinkoptions-type", - "href": "https://www.w3.org/TR/webaudio/#dom-audiosinkoptions-type", - "linkingText": [ - "type" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioSinkOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audiosinkoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiosinkoptions-members", - "title": "Dictionary AudioSinkOptions Members", - "number": "1.2.6.1" - }, - "definedIn": "dt" - }, - { - "id": "AudioSinkInfo", - "href": "https://www.w3.org/TR/webaudio/#AudioSinkInfo", - "linkingText": [ - "AudioSinkInfo" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioSinkInfo", - "href": "https://www.w3.org/TR/webaudio/#AudioSinkInfo", - "title": "AudioSinkInfo", - "number": "1.2.7" + "id": "AudioTimestamp", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioTimestamp", + "title": "AudioTimestamp", + "number": "1.2.5" }, "definedIn": "heading" }, { - "id": "dom-audiosinkinfo-type", - "href": "https://www.w3.org/TR/webaudio/#dom-audiosinkinfo-type", - "linkingText": [ - "type" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioSinkInfo" - ], - "access": "public", - "informative": false, - "heading": { - "id": "audiosinkinfo-attributes", - "href": "https://www.w3.org/TR/webaudio/#audiosinkinfo-attributes", - "title": "Attributes", - "number": "1.2.7.1" - }, - "definedIn": "dt" - }, - { - "id": "AudioTimestamp", - "href": "https://www.w3.org/TR/webaudio/#AudioTimestamp", + "id": "dictdef-audiotimestamp", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictdef-audiotimestamp", "linkingText": [ "AudioTimestamp" ], @@ -2676,15 +2253,15 @@ "informative": false, "heading": { "id": "AudioTimestamp", - "href": "https://www.w3.org/TR/webaudio/#AudioTimestamp", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioTimestamp", "title": "AudioTimestamp", - "number": "1.2.8" + "number": "1.2.5" }, - "definedIn": "heading" + "definedIn": "pre" }, { "id": "dom-audiotimestamp-contexttime", - "href": "https://www.w3.org/TR/webaudio/#dom-audiotimestamp-contexttime", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiotimestamp-contexttime", "linkingText": [ "contextTime" ], @@ -2697,15 +2274,15 @@ "informative": false, "heading": { "id": "dictionary-audiotimestamp-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiotimestamp-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audiotimestamp-members", "title": "Dictionary AudioTimestamp Members", - "number": "1.2.8.1" + "number": "1.2.5.1" }, "definedIn": "dt" }, { "id": "dom-audiotimestamp-performancetime", - "href": "https://www.w3.org/TR/webaudio/#dom-audiotimestamp-performancetime", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiotimestamp-performancetime", "linkingText": [ "performanceTime" ], @@ -2718,36 +2295,17 @@ "informative": false, "heading": { "id": "dictionary-audiotimestamp-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiotimestamp-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audiotimestamp-members", "title": "Dictionary AudioTimestamp Members", - "number": "1.2.8.1" + "number": "1.2.5.1" }, "definedIn": "dt" }, { - "id": "AudioRenderCapacity", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacity", - "linkingText": [ - "audiorenderCapacity" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacity", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacity", - "title": "AudioRenderCapacity", - "number": "1.2.9" - }, - "definedIn": "heading" - }, - { - "id": "audiorendercapacity", - "href": "https://www.w3.org/TR/webaudio/#audiorendercapacity", + "id": "OfflineAudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioContext", "linkingText": [ - "AudioRenderCapacity" + "offlineaudiocontext" ], "localLinkingText": [], "type": "interface", @@ -2755,479 +2313,16 @@ "access": "public", "informative": false, "heading": { - "id": "AudioRenderCapacity", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacity", - "title": "AudioRenderCapacity", - "number": "1.2.9" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiorendercapacity-start-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-audiorendercapacity-start-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioRenderCapacity/start(options)", - "AudioRenderCapacity/start()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacity", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacity", - "title": "AudioRenderCapacity", - "number": "1.2.9" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiorendercapacity-onupdate", - "href": "https://www.w3.org/TR/webaudio/#dom-audiorendercapacity-onupdate", - "linkingText": [ - "onupdate" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioRenderCapacity" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacity-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacity-attributes", - "title": "Attributes", - "number": "1.2.9.1" - }, - "definedIn": "dt" - }, - { - "id": "eventdef-audiorendercapacity-update", - "href": "https://www.w3.org/TR/webaudio/#eventdef-audiorendercapacity-update", - "linkingText": [ - "update" - ], - "localLinkingText": [], - "type": "event", - "for": [ - "AudioRenderCapacity" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacity-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacity-attributes", - "title": "Attributes", - "number": "1.2.9.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-audiorendercapacity-start", - "href": "https://www.w3.org/TR/webaudio/#dom-audiorendercapacity-start", - "linkingText": [ - "start(options)", - "start()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioRenderCapacity" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacity-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacity-methods", - "title": "Methods", - "number": "1.2.9.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiorendercapacity-stop", - "href": "https://www.w3.org/TR/webaudio/#dom-audiorendercapacity-stop", - "linkingText": [ - "stop()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioRenderCapacity" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacity-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacity-methods", - "title": "Methods", - "number": "1.2.9.2" - }, - "definedIn": "dt" - }, - { - "id": "AudioRenderCapacityOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityOptions", - "linkingText": [ - "audiorenderCapacityoptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityOptions", - "title": "AudioRenderCapacityOptions", - "number": "1.2.10" - }, - "definedIn": "heading" - }, - { - "id": "dictdef-audiorendercapacityoptions", - "href": "https://www.w3.org/TR/webaudio/#dictdef-audiorendercapacityoptions", - "linkingText": [ - "AudioRenderCapacityOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityOptions", - "title": "AudioRenderCapacityOptions", - "number": "1.2.10" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiorendercapacityoptions-updateinterval", - "href": "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityoptions-updateinterval", - "linkingText": [ - "updateInterval" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioRenderCapacityOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-AudioRenderCapacityOptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-AudioRenderCapacityOptions-members", - "title": "Dictionary AudioRenderCapacityOptions Members", - "number": "1.2.10.1" - }, - "definedIn": "dt" - }, - { - "id": "AudioRenderCapacityEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent", - "linkingText": [ - "audiorenderCapacityevent" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent", - "title": "AudioRenderCapacityEvent", - "number": "1.2.11" - }, - "definedIn": "heading" - }, - { - "id": "audiorendercapacityevent", - "href": "https://www.w3.org/TR/webaudio/#audiorendercapacityevent", - "linkingText": [ - "AudioRenderCapacityEvent" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent", - "title": "AudioRenderCapacityEvent", - "number": "1.2.11" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiorendercapacityevent-audiorendercapacityevent", - "href": "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityevent-audiorendercapacityevent", - "linkingText": [ - "AudioRenderCapacityEvent(type, eventInitDict)", - "constructor(type, eventInitDict)", - "AudioRenderCapacityEvent(type)", - "constructor(type)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "AudioRenderCapacityEvent" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent", - "title": "AudioRenderCapacityEvent", - "number": "1.2.11" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiorendercapacityevent-audiorendercapacityevent-type-eventinitdict-type", - "href": "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityevent-audiorendercapacityevent-type-eventinitdict-type", - "linkingText": [ - "type" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioRenderCapacityEvent/AudioRenderCapacityEvent(type, eventInitDict)", - "AudioRenderCapacityEvent/constructor(type, eventInitDict)", - "AudioRenderCapacityEvent/AudioRenderCapacityEvent(type)", - "AudioRenderCapacityEvent/constructor(type)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent", - "title": "AudioRenderCapacityEvent", - "number": "1.2.11" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiorendercapacityevent-audiorendercapacityevent-type-eventinitdict-eventinitdict", - "href": "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityevent-audiorendercapacityevent-type-eventinitdict-eventinitdict", - "linkingText": [ - "eventInitDict" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioRenderCapacityEvent/AudioRenderCapacityEvent(type, eventInitDict)", - "AudioRenderCapacityEvent/constructor(type, eventInitDict)", - "AudioRenderCapacityEvent/AudioRenderCapacityEvent(type)", - "AudioRenderCapacityEvent/constructor(type)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent", - "title": "AudioRenderCapacityEvent", - "number": "1.2.11" - }, - "definedIn": "pre" - }, - { - "id": "dictdef-audiorendercapacityeventinit", - "href": "https://www.w3.org/TR/webaudio/#dictdef-audiorendercapacityeventinit", - "linkingText": [ - "AudioRenderCapacityEventInit" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent", - "title": "AudioRenderCapacityEvent", - "number": "1.2.11" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiorendercapacityeventinit-timestamp", - "href": "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityeventinit-timestamp", - "linkingText": [ - "timestamp" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioRenderCapacityEventInit" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent", - "title": "AudioRenderCapacityEvent", - "number": "1.2.11" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiorendercapacityeventinit-averageload", - "href": "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityeventinit-averageload", - "linkingText": [ - "averageLoad" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioRenderCapacityEventInit" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent", - "title": "AudioRenderCapacityEvent", - "number": "1.2.11" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiorendercapacityeventinit-peakload", - "href": "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityeventinit-peakload", - "linkingText": [ - "peakLoad" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioRenderCapacityEventInit" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent", - "title": "AudioRenderCapacityEvent", - "number": "1.2.11" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiorendercapacityeventinit-underrunratio", - "href": "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityeventinit-underrunratio", - "linkingText": [ - "underrunRatio" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioRenderCapacityEventInit" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent", - "title": "AudioRenderCapacityEvent", - "number": "1.2.11" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiorendercapacityevent-timestamp", - "href": "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityevent-timestamp", - "linkingText": [ - "timestamp" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioRenderCapacityEvent" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityEvent-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent-attributes", - "title": "Attributes", - "number": "1.2.11.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiorendercapacityevent-averageload", - "href": "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityevent-averageload", - "linkingText": [ - "averageLoad" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioRenderCapacityEvent" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityEvent-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent-attributes", - "title": "Attributes", - "number": "1.2.11.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiorendercapacityevent-peakload", - "href": "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityevent-peakload", - "linkingText": [ - "peakLoad" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioRenderCapacityEvent" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityEvent-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent-attributes", - "title": "Attributes", - "number": "1.2.11.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiorendercapacityevent-underrunratio", - "href": "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityevent-underrunratio", - "linkingText": [ - "underrunRatio" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioRenderCapacityEvent" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityEvent-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent-attributes", - "title": "Attributes", - "number": "1.2.11.1" + "id": "OfflineAudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioContext", + "title": "The OfflineAudioContext Interface", + "number": "1.3" }, - "definedIn": "dt" + "definedIn": "heading" }, { - "id": "OfflineAudioContext", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext", + "id": "offlineaudiocontext", + "href": "https://www.w3.org/TR/webaudio-1.0/#offlineaudiocontext", "linkingText": [ "OfflineAudioContext" ], @@ -3238,15 +2333,15 @@ "informative": false, "heading": { "id": "OfflineAudioContext", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioContext", "title": "The OfflineAudioContext Interface", "number": "1.3" }, - "definedIn": "heading" + "definedIn": "pre" }, { "id": "dom-offlineaudiocontext-suspend-suspendtime-suspendtime", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-suspend-suspendtime-suspendtime", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontext-suspend-suspendtime-suspendtime", "linkingText": [ "suspendTime" ], @@ -3259,7 +2354,7 @@ "informative": false, "heading": { "id": "OfflineAudioContext", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioContext", "title": "The OfflineAudioContext Interface", "number": "1.3" }, @@ -3267,7 +2362,7 @@ }, { "id": "dom-offlineaudiocontext-offlineaudiocontext", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-offlineaudiocontext", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontext-offlineaudiocontext", "linkingText": [ "OfflineAudioContext(contextOptions)", "constructor(contextOptions)" @@ -3281,7 +2376,7 @@ "informative": false, "heading": { "id": "OfflineAudioContext-constructors", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioContext-constructors", "title": "Constructors", "number": "1.3.1" }, @@ -3289,7 +2384,7 @@ }, { "id": "dom-offlineaudiocontext-constructor-contextoptions-contextoptions", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-constructor-contextoptions-contextoptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontext-constructor-contextoptions-contextoptions", "linkingText": [ "contextOptions" ], @@ -3302,7 +2397,7 @@ "informative": false, "heading": { "id": "OfflineAudioContext-constructors", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioContext-constructors", "title": "Constructors", "number": "1.3.1" }, @@ -3310,7 +2405,7 @@ }, { "id": "dom-offlineaudiocontext-offlineaudiocontext-numberofchannels-length-samplerate", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-offlineaudiocontext-numberofchannels-length-samplerate", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontext-offlineaudiocontext-numberofchannels-length-samplerate", "linkingText": [ "OfflineAudioContext(numberOfChannels, length, sampleRate)", "constructor(numberOfChannels, length, sampleRate)" @@ -3324,7 +2419,7 @@ "informative": false, "heading": { "id": "OfflineAudioContext-constructors", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioContext-constructors", "title": "Constructors", "number": "1.3.1" }, @@ -3332,7 +2427,7 @@ }, { "id": "dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-numberofchannels", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-numberofchannels", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-numberofchannels", "linkingText": [ "numberOfChannels" ], @@ -3345,7 +2440,7 @@ "informative": false, "heading": { "id": "OfflineAudioContext-constructors", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioContext-constructors", "title": "Constructors", "number": "1.3.1" }, @@ -3353,7 +2448,7 @@ }, { "id": "dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-length", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-length", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-length", "linkingText": [ "length" ], @@ -3366,7 +2461,7 @@ "informative": false, "heading": { "id": "OfflineAudioContext-constructors", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioContext-constructors", "title": "Constructors", "number": "1.3.1" }, @@ -3374,7 +2469,7 @@ }, { "id": "dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-samplerate", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-samplerate", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-samplerate", "linkingText": [ "sampleRate" ], @@ -3387,7 +2482,7 @@ "informative": false, "heading": { "id": "OfflineAudioContext-constructors", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioContext-constructors", "title": "Constructors", "number": "1.3.1" }, @@ -3395,7 +2490,7 @@ }, { "id": "dom-offlineaudiocontext-length", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-length", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontext-length", "linkingText": [ "length" ], @@ -3408,7 +2503,7 @@ "informative": false, "heading": { "id": "OfflineAudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioContext-attributes", "title": "Attributes", "number": "1.3.2" }, @@ -3416,7 +2511,7 @@ }, { "id": "dom-offlineaudiocontext-oncomplete", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-oncomplete", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontext-oncomplete", "linkingText": [ "oncomplete" ], @@ -3429,36 +2524,15 @@ "informative": false, "heading": { "id": "OfflineAudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioContext-attributes", "title": "Attributes", "number": "1.3.2" }, "definedIn": "dt" }, - { - "id": "eventdef-offlineaudiocontext-complete", - "href": "https://www.w3.org/TR/webaudio/#eventdef-offlineaudiocontext-complete", - "linkingText": [ - "complete" - ], - "localLinkingText": [], - "type": "event", - "for": [ - "OfflineAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OfflineAudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-attributes", - "title": "Attributes", - "number": "1.3.2" - }, - "definedIn": "prose" - }, { "id": "dom-offlineaudiocontext-startrendering", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-startrendering", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontext-startrendering", "linkingText": [ "startRendering()" ], @@ -3471,7 +2545,7 @@ "informative": false, "heading": { "id": "OfflineAudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioContext-methods", "title": "Methods", "number": "1.3.3" }, @@ -3479,7 +2553,7 @@ }, { "id": "dom-offlineaudiocontext-rendering-started-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-rendering-started-slot", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontext-rendering-started-slot", "linkingText": [ "[[rendering started]]" ], @@ -3492,7 +2566,7 @@ "informative": false, "heading": { "id": "OfflineAudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioContext-methods", "title": "Methods", "number": "1.3.3" }, @@ -3500,7 +2574,7 @@ }, { "id": "dom-offlineaudiocontext-rendered-buffer-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-rendered-buffer-slot", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontext-rendered-buffer-slot", "linkingText": [ "[[rendered buffer]]" ], @@ -3513,7 +2587,7 @@ "informative": false, "heading": { "id": "OfflineAudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioContext-methods", "title": "Methods", "number": "1.3.3" }, @@ -3521,7 +2595,7 @@ }, { "id": "begin-offline-rendering", - "href": "https://www.w3.org/TR/webaudio/#begin-offline-rendering", + "href": "https://www.w3.org/TR/webaudio-1.0/#begin-offline-rendering", "linkingText": [ "begin offline rendering" ], @@ -3532,7 +2606,7 @@ "informative": false, "heading": { "id": "OfflineAudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioContext-methods", "title": "Methods", "number": "1.3.3" }, @@ -3540,7 +2614,7 @@ }, { "id": "dom-offlineaudiocontext-resume", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-resume", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontext-resume", "linkingText": [ "resume()" ], @@ -3553,7 +2627,7 @@ "informative": false, "heading": { "id": "OfflineAudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioContext-methods", "title": "Methods", "number": "1.3.3" }, @@ -3561,7 +2635,7 @@ }, { "id": "dom-offlineaudiocontext-suspend", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-suspend", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontext-suspend", "linkingText": [ "suspend(suspendTime)" ], @@ -3574,7 +2648,7 @@ "informative": false, "heading": { "id": "OfflineAudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioContext-methods", "title": "Methods", "number": "1.3.3" }, @@ -3582,7 +2656,7 @@ }, { "id": "dom-offlineaudiocontext-suspend-suspendtime", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-suspend-suspendtime", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontext-suspend-suspendtime", "linkingText": [ "suspendTime" ], @@ -3595,7 +2669,7 @@ "informative": false, "heading": { "id": "OfflineAudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioContext-methods", "title": "Methods", "number": "1.3.3" }, @@ -3603,9 +2677,9 @@ }, { "id": "OfflineAudioContextOptions", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContextOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioContextOptions", "linkingText": [ - "OfflineAudioContextOptions" + "offlineaudiocontextoptions" ], "localLinkingText": [], "type": "dictionary", @@ -3614,15 +2688,34 @@ "informative": false, "heading": { "id": "OfflineAudioContextOptions", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContextOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioContextOptions", "title": "OfflineAudioContextOptions", "number": "1.3.4" }, "definedIn": "heading" }, + { + "id": "dictdef-offlineaudiocontextoptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictdef-offlineaudiocontextoptions", + "linkingText": [ + "OfflineAudioContextOptions" + ], + "localLinkingText": [], + "type": "dictionary", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "OfflineAudioContextOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioContextOptions", + "title": "OfflineAudioContextOptions", + "number": "1.3.4" + }, + "definedIn": "pre" + }, { "id": "dom-offlineaudiocontextoptions-length", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontextoptions-length", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontextoptions-length", "linkingText": [ "length" ], @@ -3635,7 +2728,7 @@ "informative": false, "heading": { "id": "dictionary-offlineaudiocontextoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-offlineaudiocontextoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-offlineaudiocontextoptions-members", "title": "Dictionary OfflineAudioContextOptions Members", "number": "1.3.4.1" }, @@ -3643,7 +2736,7 @@ }, { "id": "dom-offlineaudiocontextoptions-numberofchannels", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontextoptions-numberofchannels", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontextoptions-numberofchannels", "linkingText": [ "numberOfChannels" ], @@ -3656,7 +2749,7 @@ "informative": false, "heading": { "id": "dictionary-offlineaudiocontextoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-offlineaudiocontextoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-offlineaudiocontextoptions-members", "title": "Dictionary OfflineAudioContextOptions Members", "number": "1.3.4.1" }, @@ -3664,7 +2757,7 @@ }, { "id": "dom-offlineaudiocontextoptions-samplerate", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontextoptions-samplerate", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontextoptions-samplerate", "linkingText": [ "sampleRate" ], @@ -3677,36 +2770,34 @@ "informative": false, "heading": { "id": "dictionary-offlineaudiocontextoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-offlineaudiocontextoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-offlineaudiocontextoptions-members", "title": "Dictionary OfflineAudioContextOptions Members", "number": "1.3.4.1" }, "definedIn": "dt" }, { - "id": "dom-offlineaudiocontextoptions-rendersizehint", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontextoptions-rendersizehint", + "id": "OfflineAudioCompletionEvent", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioCompletionEvent", "linkingText": [ - "renderSizeHint" + "offlineaudiocompletionevent" ], "localLinkingText": [], - "type": "dict-member", - "for": [ - "OfflineAudioContextOptions" - ], + "type": "interface", + "for": [], "access": "public", "informative": false, "heading": { - "id": "dictionary-offlineaudiocontextoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-offlineaudiocontextoptions-members", - "title": "Dictionary OfflineAudioContextOptions Members", - "number": "1.3.4.1" + "id": "OfflineAudioCompletionEvent", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioCompletionEvent", + "title": "The OfflineAudioCompletionEvent Interface", + "number": "1.3.5" }, - "definedIn": "dt" + "definedIn": "heading" }, { - "id": "OfflineAudioCompletionEvent", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioCompletionEvent", + "id": "offlineaudiocompletionevent", + "href": "https://www.w3.org/TR/webaudio-1.0/#offlineaudiocompletionevent", "linkingText": [ "OfflineAudioCompletionEvent" ], @@ -3717,15 +2808,15 @@ "informative": false, "heading": { "id": "OfflineAudioCompletionEvent", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioCompletionEvent", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioCompletionEvent", "title": "The OfflineAudioCompletionEvent Interface", "number": "1.3.5" }, - "definedIn": "heading" + "definedIn": "pre" }, { "id": "dom-offlineaudiocompletionevent-offlineaudiocompletionevent", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocompletionevent-offlineaudiocompletionevent", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocompletionevent-offlineaudiocompletionevent", "linkingText": [ "OfflineAudioCompletionEvent(type, eventInitDict)", "constructor(type, eventInitDict)" @@ -3739,7 +2830,7 @@ "informative": false, "heading": { "id": "OfflineAudioCompletionEvent", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioCompletionEvent", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioCompletionEvent", "title": "The OfflineAudioCompletionEvent Interface", "number": "1.3.5" }, @@ -3747,7 +2838,7 @@ }, { "id": "dom-offlineaudiocompletionevent-offlineaudiocompletionevent-type-eventinitdict-type", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocompletionevent-offlineaudiocompletionevent-type-eventinitdict-type", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocompletionevent-offlineaudiocompletionevent-type-eventinitdict-type", "linkingText": [ "type" ], @@ -3761,7 +2852,7 @@ "informative": false, "heading": { "id": "OfflineAudioCompletionEvent", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioCompletionEvent", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioCompletionEvent", "title": "The OfflineAudioCompletionEvent Interface", "number": "1.3.5" }, @@ -3769,7 +2860,7 @@ }, { "id": "dom-offlineaudiocompletionevent-offlineaudiocompletionevent-type-eventinitdict-eventinitdict", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocompletionevent-offlineaudiocompletionevent-type-eventinitdict-eventinitdict", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocompletionevent-offlineaudiocompletionevent-type-eventinitdict-eventinitdict", "linkingText": [ "eventInitDict" ], @@ -3783,7 +2874,7 @@ "informative": false, "heading": { "id": "OfflineAudioCompletionEvent", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioCompletionEvent", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioCompletionEvent", "title": "The OfflineAudioCompletionEvent Interface", "number": "1.3.5" }, @@ -3791,7 +2882,7 @@ }, { "id": "dom-offlineaudiocompletionevent-renderedbuffer", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocompletionevent-renderedbuffer", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocompletionevent-renderedbuffer", "linkingText": [ "renderedBuffer" ], @@ -3804,7 +2895,7 @@ "informative": false, "heading": { "id": "OfflineAudioCompletionEvent-attributes", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioCompletionEvent-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioCompletionEvent-attributes", "title": "Attributes", "number": "1.3.5.1" }, @@ -3812,9 +2903,9 @@ }, { "id": "OfflineAudioCompletionEventInit", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioCompletionEventInit", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioCompletionEventInit", "linkingText": [ - "OfflineAudioCompletionEventInit" + "offlineaudiocompletioneventinit" ], "localLinkingText": [], "type": "dictionary", @@ -3823,15 +2914,34 @@ "informative": false, "heading": { "id": "OfflineAudioCompletionEventInit", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioCompletionEventInit", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioCompletionEventInit", "title": "OfflineAudioCompletionEventInit", "number": "1.3.5.2" }, "definedIn": "heading" }, + { + "id": "dictdef-offlineaudiocompletioneventinit", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictdef-offlineaudiocompletioneventinit", + "linkingText": [ + "OfflineAudioCompletionEventInit" + ], + "localLinkingText": [], + "type": "dictionary", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "OfflineAudioCompletionEventInit", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioCompletionEventInit", + "title": "OfflineAudioCompletionEventInit", + "number": "1.3.5.2" + }, + "definedIn": "pre" + }, { "id": "dom-offlineaudiocompletioneventinit-renderedbuffer", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocompletioneventinit-renderedbuffer", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocompletioneventinit-renderedbuffer", "linkingText": [ "renderedBuffer" ], @@ -3844,7 +2954,7 @@ "informative": false, "heading": { "id": "dictionary-offlineaudiocompletioneventinit-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-offlineaudiocompletioneventinit-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-offlineaudiocompletioneventinit-members", "title": "Dictionary OfflineAudioCompletionEventInit Members", "number": "1.3.5.2.1" }, @@ -3852,9 +2962,9 @@ }, { "id": "AudioBuffer", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer", "linkingText": [ - "AudioBuffer" + "audiobuffer" ], "localLinkingText": [], "type": "interface", @@ -3863,7 +2973,7 @@ "informative": false, "heading": { "id": "AudioBuffer", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer", "title": "The AudioBuffer Interface", "number": "1.4" }, @@ -3871,7 +2981,7 @@ }, { "id": "dom-audiobuffer-number-of-channels-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-number-of-channels-slot", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-number-of-channels-slot", "linkingText": [ "[[number of channels]]" ], @@ -3884,7 +2994,7 @@ "informative": false, "heading": { "id": "AudioBuffer", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer", "title": "The AudioBuffer Interface", "number": "1.4" }, @@ -3892,7 +3002,7 @@ }, { "id": "dom-audiobuffer-length-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-length-slot", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-length-slot", "linkingText": [ "[[length]]" ], @@ -3905,7 +3015,7 @@ "informative": false, "heading": { "id": "AudioBuffer", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer", "title": "The AudioBuffer Interface", "number": "1.4" }, @@ -3913,7 +3023,7 @@ }, { "id": "dom-audiobuffer-sample-rate-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-sample-rate-slot", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-sample-rate-slot", "linkingText": [ "[[sample rate]]" ], @@ -3926,7 +3036,7 @@ "informative": false, "heading": { "id": "AudioBuffer", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer", "title": "The AudioBuffer Interface", "number": "1.4" }, @@ -3934,7 +3044,7 @@ }, { "id": "dom-audiobuffer-internal-data-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-internal-data-slot", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-internal-data-slot", "linkingText": [ "[[internal data]]" ], @@ -3947,15 +3057,34 @@ "informative": false, "heading": { "id": "AudioBuffer", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer", "title": "The AudioBuffer Interface", "number": "1.4" }, "definedIn": "dt" }, + { + "id": "audiobuffer", + "href": "https://www.w3.org/TR/webaudio-1.0/#audiobuffer", + "linkingText": [ + "AudioBuffer" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "AudioBuffer", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer", + "title": "The AudioBuffer Interface", + "number": "1.4" + }, + "definedIn": "pre" + }, { "id": "dom-audiobuffer-audiobuffer-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-audiobuffer-options-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-audiobuffer-options-options", "linkingText": [ "options" ], @@ -3969,7 +3098,7 @@ "informative": false, "heading": { "id": "AudioBuffer", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer", "title": "The AudioBuffer Interface", "number": "1.4" }, @@ -3977,7 +3106,7 @@ }, { "id": "dom-audiobuffer-getchanneldata-channel-channel", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-getchanneldata-channel-channel", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-getchanneldata-channel-channel", "linkingText": [ "channel" ], @@ -3990,7 +3119,7 @@ "informative": false, "heading": { "id": "AudioBuffer", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer", "title": "The AudioBuffer Interface", "number": "1.4" }, @@ -3998,7 +3127,7 @@ }, { "id": "dom-audiobuffer-copyfromchannel-destination-channelnumber-bufferoffset-destination", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copyfromchannel-destination-channelnumber-bufferoffset-destination", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-copyfromchannel-destination-channelnumber-bufferoffset-destination", "linkingText": [ "destination" ], @@ -4012,7 +3141,7 @@ "informative": false, "heading": { "id": "AudioBuffer", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer", "title": "The AudioBuffer Interface", "number": "1.4" }, @@ -4020,7 +3149,7 @@ }, { "id": "dom-audiobuffer-copyfromchannel-destination-channelnumber-bufferoffset-channelnumber", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copyfromchannel-destination-channelnumber-bufferoffset-channelnumber", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-copyfromchannel-destination-channelnumber-bufferoffset-channelnumber", "linkingText": [ "channelNumber" ], @@ -4034,7 +3163,7 @@ "informative": false, "heading": { "id": "AudioBuffer", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer", "title": "The AudioBuffer Interface", "number": "1.4" }, @@ -4042,7 +3171,7 @@ }, { "id": "dom-audiobuffer-copyfromchannel-destination-channelnumber-bufferoffset-bufferoffset", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copyfromchannel-destination-channelnumber-bufferoffset-bufferoffset", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-copyfromchannel-destination-channelnumber-bufferoffset-bufferoffset", "linkingText": [ "bufferOffset" ], @@ -4056,7 +3185,7 @@ "informative": false, "heading": { "id": "AudioBuffer", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer", "title": "The AudioBuffer Interface", "number": "1.4" }, @@ -4064,7 +3193,7 @@ }, { "id": "dom-audiobuffer-copytochannel-source-channelnumber-bufferoffset-source", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copytochannel-source-channelnumber-bufferoffset-source", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-copytochannel-source-channelnumber-bufferoffset-source", "linkingText": [ "source" ], @@ -4078,7 +3207,7 @@ "informative": false, "heading": { "id": "AudioBuffer", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer", "title": "The AudioBuffer Interface", "number": "1.4" }, @@ -4086,7 +3215,7 @@ }, { "id": "dom-audiobuffer-copytochannel-source-channelnumber-bufferoffset-channelnumber", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copytochannel-source-channelnumber-bufferoffset-channelnumber", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-copytochannel-source-channelnumber-bufferoffset-channelnumber", "linkingText": [ "channelNumber" ], @@ -4100,7 +3229,7 @@ "informative": false, "heading": { "id": "AudioBuffer", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer", "title": "The AudioBuffer Interface", "number": "1.4" }, @@ -4108,7 +3237,7 @@ }, { "id": "dom-audiobuffer-copytochannel-source-channelnumber-bufferoffset-bufferoffset", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copytochannel-source-channelnumber-bufferoffset-bufferoffset", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-copytochannel-source-channelnumber-bufferoffset-bufferoffset", "linkingText": [ "bufferOffset" ], @@ -4122,7 +3251,7 @@ "informative": false, "heading": { "id": "AudioBuffer", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer", "title": "The AudioBuffer Interface", "number": "1.4" }, @@ -4130,7 +3259,7 @@ }, { "id": "dom-audiobuffer-audiobuffer", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-audiobuffer", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-audiobuffer", "linkingText": [ "AudioBuffer(options)", "constructor(options)" @@ -4144,7 +3273,7 @@ "informative": false, "heading": { "id": "AudioBuffer-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer-constructors", "title": "Constructors", "number": "1.4.1" }, @@ -4152,7 +3281,7 @@ }, { "id": "dom-audiobuffer-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-constructor-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-constructor-options", "linkingText": [ "options" ], @@ -4165,7 +3294,7 @@ "informative": false, "heading": { "id": "AudioBuffer-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer-constructors", "title": "Constructors", "number": "1.4.1" }, @@ -4173,7 +3302,7 @@ }, { "id": "dom-audiobuffer-duration", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-duration", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-duration", "linkingText": [ "duration" ], @@ -4186,7 +3315,7 @@ "informative": false, "heading": { "id": "AudioBuffer-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer-attributes", "title": "Attributes", "number": "1.4.2" }, @@ -4194,7 +3323,7 @@ }, { "id": "dom-audiobuffer-length", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-length", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-length", "linkingText": [ "length" ], @@ -4207,7 +3336,7 @@ "informative": false, "heading": { "id": "AudioBuffer-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer-attributes", "title": "Attributes", "number": "1.4.2" }, @@ -4215,7 +3344,7 @@ }, { "id": "dom-audiobuffer-numberofchannels", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-numberofchannels", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-numberofchannels", "linkingText": [ "numberOfChannels" ], @@ -4228,7 +3357,7 @@ "informative": false, "heading": { "id": "AudioBuffer-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer-attributes", "title": "Attributes", "number": "1.4.2" }, @@ -4236,7 +3365,7 @@ }, { "id": "dom-audiobuffer-samplerate", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-samplerate", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-samplerate", "linkingText": [ "sampleRate" ], @@ -4249,7 +3378,7 @@ "informative": false, "heading": { "id": "AudioBuffer-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer-attributes", "title": "Attributes", "number": "1.4.2" }, @@ -4257,7 +3386,7 @@ }, { "id": "dom-audiobuffer-copyfromchannel", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copyfromchannel", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-copyfromchannel", "linkingText": [ "copyFromChannel(destination, channelNumber, bufferOffset)", "copyFromChannel(destination, channelNumber)" @@ -4271,7 +3400,7 @@ "informative": false, "heading": { "id": "AudioBuffer-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer-methods", "title": "Methods", "number": "1.4.3" }, @@ -4279,7 +3408,7 @@ }, { "id": "dom-audiobuffer-copyfromchannel-destination", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copyfromchannel-destination", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-copyfromchannel-destination", "linkingText": [ "destination" ], @@ -4292,7 +3421,7 @@ "informative": false, "heading": { "id": "AudioBuffer-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer-methods", "title": "Methods", "number": "1.4.3" }, @@ -4300,7 +3429,7 @@ }, { "id": "dom-audiobuffer-copyfromchannel-channelnumber", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copyfromchannel-channelnumber", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-copyfromchannel-channelnumber", "linkingText": [ "channelNumber" ], @@ -4313,7 +3442,7 @@ "informative": false, "heading": { "id": "AudioBuffer-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer-methods", "title": "Methods", "number": "1.4.3" }, @@ -4321,7 +3450,7 @@ }, { "id": "dom-audiobuffer-copyfromchannel-bufferoffset", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copyfromchannel-bufferoffset", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-copyfromchannel-bufferoffset", "linkingText": [ "bufferOffset" ], @@ -4334,7 +3463,7 @@ "informative": false, "heading": { "id": "AudioBuffer-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer-methods", "title": "Methods", "number": "1.4.3" }, @@ -4342,7 +3471,7 @@ }, { "id": "dom-audiobuffer-copytochannel", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copytochannel", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-copytochannel", "linkingText": [ "copyToChannel(source, channelNumber, bufferOffset)", "copyToChannel(source, channelNumber)" @@ -4356,7 +3485,7 @@ "informative": false, "heading": { "id": "AudioBuffer-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer-methods", "title": "Methods", "number": "1.4.3" }, @@ -4364,7 +3493,7 @@ }, { "id": "dom-audiobuffer-copytochannel-source", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copytochannel-source", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-copytochannel-source", "linkingText": [ "source" ], @@ -4377,7 +3506,7 @@ "informative": false, "heading": { "id": "AudioBuffer-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer-methods", "title": "Methods", "number": "1.4.3" }, @@ -4385,7 +3514,7 @@ }, { "id": "dom-audiobuffer-copytochannel-channelnumber", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copytochannel-channelnumber", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-copytochannel-channelnumber", "linkingText": [ "channelNumber" ], @@ -4398,7 +3527,7 @@ "informative": false, "heading": { "id": "AudioBuffer-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer-methods", "title": "Methods", "number": "1.4.3" }, @@ -4406,7 +3535,7 @@ }, { "id": "dom-audiobuffer-copytochannel-bufferoffset", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copytochannel-bufferoffset", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-copytochannel-bufferoffset", "linkingText": [ "bufferOffset" ], @@ -4419,7 +3548,7 @@ "informative": false, "heading": { "id": "AudioBuffer-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer-methods", "title": "Methods", "number": "1.4.3" }, @@ -4427,7 +3556,7 @@ }, { "id": "dom-audiobuffer-getchanneldata", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-getchanneldata", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-getchanneldata", "linkingText": [ "getChannelData(channel)" ], @@ -4440,7 +3569,7 @@ "informative": false, "heading": { "id": "AudioBuffer-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer-methods", "title": "Methods", "number": "1.4.3" }, @@ -4448,7 +3577,7 @@ }, { "id": "dom-audiobuffer-getchanneldata-channel", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-getchanneldata-channel", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-getchanneldata-channel", "linkingText": [ "channel" ], @@ -4461,7 +3590,7 @@ "informative": false, "heading": { "id": "AudioBuffer-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer-methods", "title": "Methods", "number": "1.4.3" }, @@ -4469,7 +3598,7 @@ }, { "id": "acquire-the-content", - "href": "https://www.w3.org/TR/webaudio/#acquire-the-content", + "href": "https://www.w3.org/TR/webaudio-1.0/#acquire-the-content", "linkingText": [ "acquire the content", "acquire the contents of an AudioBuffer" @@ -4481,7 +3610,7 @@ "informative": false, "heading": { "id": "AudioBuffer-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer-methods", "title": "Methods", "number": "1.4.3" }, @@ -4489,9 +3618,9 @@ }, { "id": "AudioBufferOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferOptions", "linkingText": [ - "AudioBufferOptions" + "audiobufferoptions" ], "localLinkingText": [], "type": "dictionary", @@ -4500,15 +3629,34 @@ "informative": false, "heading": { "id": "AudioBufferOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferOptions", "title": "AudioBufferOptions", "number": "1.4.4" }, "definedIn": "heading" }, + { + "id": "dictdef-audiobufferoptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictdef-audiobufferoptions", + "linkingText": [ + "AudioBufferOptions" + ], + "localLinkingText": [], + "type": "dictionary", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "AudioBufferOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferOptions", + "title": "AudioBufferOptions", + "number": "1.4.4" + }, + "definedIn": "pre" + }, { "id": "dom-audiobufferoptions-length", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobufferoptions-length", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobufferoptions-length", "linkingText": [ "length" ], @@ -4521,7 +3669,7 @@ "informative": false, "heading": { "id": "dictionary-audiobufferoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiobufferoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audiobufferoptions-members", "title": "Dictionary AudioBufferOptions Members", "number": "1.4.4.1" }, @@ -4529,7 +3677,7 @@ }, { "id": "dom-audiobufferoptions-numberofchannels", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobufferoptions-numberofchannels", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobufferoptions-numberofchannels", "linkingText": [ "numberOfChannels" ], @@ -4542,7 +3690,7 @@ "informative": false, "heading": { "id": "dictionary-audiobufferoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiobufferoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audiobufferoptions-members", "title": "Dictionary AudioBufferOptions Members", "number": "1.4.4.1" }, @@ -4550,7 +3698,7 @@ }, { "id": "dom-audiobufferoptions-samplerate", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobufferoptions-samplerate", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobufferoptions-samplerate", "linkingText": [ "sampleRate" ], @@ -4563,7 +3711,7 @@ "informative": false, "heading": { "id": "dictionary-audiobufferoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiobufferoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audiobufferoptions-members", "title": "Dictionary AudioBufferOptions Members", "number": "1.4.4.1" }, @@ -4571,9 +3719,9 @@ }, { "id": "AudioNode", - "href": "https://www.w3.org/TR/webaudio/#AudioNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode", "linkingText": [ - "AudioNode" + "audionode" ], "localLinkingText": [], "type": "interface", @@ -4582,7 +3730,7 @@ "informative": false, "heading": { "id": "AudioNode", - "href": "https://www.w3.org/TR/webaudio/#AudioNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode", "title": "The AudioNode Interface", "number": "1.5" }, @@ -4590,7 +3738,7 @@ }, { "id": "connection", - "href": "https://www.w3.org/TR/webaudio/#connection", + "href": "https://www.w3.org/TR/webaudio-1.0/#connection", "linkingText": [ "connection" ], @@ -4601,7 +3749,7 @@ "informative": false, "heading": { "id": "AudioNode", - "href": "https://www.w3.org/TR/webaudio/#AudioNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode", "title": "The AudioNode Interface", "number": "1.5" }, @@ -4609,7 +3757,7 @@ }, { "id": "input", - "href": "https://www.w3.org/TR/webaudio/#input", + "href": "https://www.w3.org/TR/webaudio-1.0/#input", "linkingText": [ "input" ], @@ -4620,15 +3768,34 @@ "informative": false, "heading": { "id": "AudioNode", - "href": "https://www.w3.org/TR/webaudio/#AudioNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode", "title": "The AudioNode Interface", "number": "1.5" }, "definedIn": "prose" }, + { + "id": "audionode", + "href": "https://www.w3.org/TR/webaudio-1.0/#audionode", + "linkingText": [ + "AudioNode" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "AudioNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode", + "title": "The AudioNode Interface", + "number": "1.5" + }, + "definedIn": "pre" + }, { "id": "factory-method", - "href": "https://www.w3.org/TR/webaudio/#factory-method", + "href": "https://www.w3.org/TR/webaudio-1.0/#factory-method", "linkingText": [ "factory method" ], @@ -4639,7 +3806,7 @@ "informative": false, "heading": { "id": "AudioNode-creation", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-creation", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-creation", "title": "AudioNode Creation", "number": "1.5.1" }, @@ -4647,7 +3814,7 @@ }, { "id": "associated", - "href": "https://www.w3.org/TR/webaudio/#associated", + "href": "https://www.w3.org/TR/webaudio-1.0/#associated", "linkingText": [ "associated BaseAudioContext" ], @@ -4658,7 +3825,7 @@ "informative": false, "heading": { "id": "AudioNode-creation", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-creation", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-creation", "title": "AudioNode Creation", "number": "1.5.1" }, @@ -4666,7 +3833,7 @@ }, { "id": "audionode-constructor-init", - "href": "https://www.w3.org/TR/webaudio/#audionode-constructor-init", + "href": "https://www.w3.org/TR/webaudio-1.0/#audionode-constructor-init", "linkingText": [ "Initializing" ], @@ -4677,7 +3844,7 @@ "informative": false, "heading": { "id": "AudioNode-creation", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-creation", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-creation", "title": "AudioNode Creation", "number": "1.5.1" }, @@ -4685,7 +3852,7 @@ }, { "id": "associated-interface", - "href": "https://www.w3.org/TR/webaudio/#associated-interface", + "href": "https://www.w3.org/TR/webaudio-1.0/#associated-interface", "linkingText": [ "associated interface" ], @@ -4696,7 +3863,7 @@ "informative": false, "heading": { "id": "AudioNode-creation", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-creation", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-creation", "title": "AudioNode Creation", "number": "1.5.1" }, @@ -4704,7 +3871,7 @@ }, { "id": "associated-option-object", - "href": "https://www.w3.org/TR/webaudio/#associated-option-object", + "href": "https://www.w3.org/TR/webaudio-1.0/#associated-option-object", "linkingText": [ "associated option object" ], @@ -4715,7 +3882,7 @@ "informative": false, "heading": { "id": "AudioNode-creation", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-creation", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-creation", "title": "AudioNode Creation", "number": "1.5.1" }, @@ -4723,7 +3890,7 @@ }, { "id": "enumdef-channelcountmode", - "href": "https://www.w3.org/TR/webaudio/#enumdef-channelcountmode", + "href": "https://www.w3.org/TR/webaudio-1.0/#enumdef-channelcountmode", "linkingText": [ "ChannelCountMode" ], @@ -4734,7 +3901,7 @@ "informative": false, "heading": { "id": "AudioNode-creation", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-creation", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-creation", "title": "AudioNode Creation", "number": "1.5.1" }, @@ -4742,7 +3909,7 @@ }, { "id": "computednumberofchannels", - "href": "https://www.w3.org/TR/webaudio/#computednumberofchannels", + "href": "https://www.w3.org/TR/webaudio-1.0/#computednumberofchannels", "linkingText": [ "computedNumberOfChannels" ], @@ -4753,7 +3920,7 @@ "informative": false, "heading": { "id": "AudioNode-creation", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-creation", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-creation", "title": "AudioNode Creation", "number": "1.5.1" }, @@ -4761,7 +3928,7 @@ }, { "id": "dom-channelcountmode-max", - "href": "https://www.w3.org/TR/webaudio/#dom-channelcountmode-max", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-channelcountmode-max", "linkingText": [ "\"max\"", "max" @@ -4775,7 +3942,7 @@ "informative": false, "heading": { "id": "AudioNode-creation", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-creation", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-creation", "title": "AudioNode Creation", "number": "1.5.1" }, @@ -4783,7 +3950,7 @@ }, { "id": "dom-channelcountmode-clamped-max", - "href": "https://www.w3.org/TR/webaudio/#dom-channelcountmode-clamped-max", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-channelcountmode-clamped-max", "linkingText": [ "\"clamped-max\"", "clamped-max" @@ -4797,7 +3964,7 @@ "informative": false, "heading": { "id": "AudioNode-creation", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-creation", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-creation", "title": "AudioNode Creation", "number": "1.5.1" }, @@ -4805,7 +3972,7 @@ }, { "id": "dom-channelcountmode-explicit", - "href": "https://www.w3.org/TR/webaudio/#dom-channelcountmode-explicit", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-channelcountmode-explicit", "linkingText": [ "\"explicit\"", "explicit" @@ -4819,7 +3986,7 @@ "informative": false, "heading": { "id": "AudioNode-creation", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-creation", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-creation", "title": "AudioNode Creation", "number": "1.5.1" }, @@ -4827,7 +3994,7 @@ }, { "id": "enumdef-channelinterpretation", - "href": "https://www.w3.org/TR/webaudio/#enumdef-channelinterpretation", + "href": "https://www.w3.org/TR/webaudio-1.0/#enumdef-channelinterpretation", "linkingText": [ "ChannelInterpretation" ], @@ -4838,7 +4005,7 @@ "informative": false, "heading": { "id": "AudioNode-creation", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-creation", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-creation", "title": "AudioNode Creation", "number": "1.5.1" }, @@ -4846,7 +4013,7 @@ }, { "id": "dom-channelinterpretation-speakers", - "href": "https://www.w3.org/TR/webaudio/#dom-channelinterpretation-speakers", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-channelinterpretation-speakers", "linkingText": [ "\"speakers\"", "speakers" @@ -4860,7 +4027,7 @@ "informative": false, "heading": { "id": "AudioNode-creation", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-creation", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-creation", "title": "AudioNode Creation", "number": "1.5.1" }, @@ -4868,7 +4035,7 @@ }, { "id": "dom-channelinterpretation-discrete", - "href": "https://www.w3.org/TR/webaudio/#dom-channelinterpretation-discrete", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-channelinterpretation-discrete", "linkingText": [ "\"discrete\"", "discrete" @@ -4882,7 +4049,7 @@ "informative": false, "heading": { "id": "AudioNode-creation", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-creation", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-creation", "title": "AudioNode Creation", "number": "1.5.1" }, @@ -4890,7 +4057,7 @@ }, { "id": "tail-time", - "href": "https://www.w3.org/TR/webaudio/#tail-time", + "href": "https://www.w3.org/TR/webaudio-1.0/#tail-time", "linkingText": [ "tail-time" ], @@ -4901,7 +4068,7 @@ "informative": false, "heading": { "id": "AudioNode-tail", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-tail", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-tail", "title": "AudioNode Tail-Time", "number": "1.5.2" }, @@ -4909,7 +4076,7 @@ }, { "id": "actively-processing", - "href": "https://www.w3.org/TR/webaudio/#actively-processing", + "href": "https://www.w3.org/TR/webaudio-1.0/#actively-processing", "linkingText": [ "actively processing" ], @@ -4920,7 +4087,7 @@ "informative": false, "heading": { "id": "AudioNode-actively-processing", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-actively-processing", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-actively-processing", "title": "AudioNode Lifetime", "number": "1.5.3" }, @@ -4928,7 +4095,7 @@ }, { "id": "dom-audionode-channelcount", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-channelcount", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-channelcount", "linkingText": [ "channelCount" ], @@ -4941,7 +4108,7 @@ "informative": false, "heading": { "id": "AudioNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-attributes", "title": "Attributes", "number": "1.5.4" }, @@ -4949,7 +4116,7 @@ }, { "id": "audionode-channelcount-constraints", - "href": "https://www.w3.org/TR/webaudio/#audionode-channelcount-constraints", + "href": "https://www.w3.org/TR/webaudio-1.0/#audionode-channelcount-constraints", "linkingText": [ "channelCount constraints" ], @@ -4962,7 +4129,7 @@ "informative": false, "heading": { "id": "AudioNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-attributes", "title": "Attributes", "number": "1.5.4" }, @@ -4970,7 +4137,7 @@ }, { "id": "dom-audionode-channelcountmode", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-channelcountmode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-channelcountmode", "linkingText": [ "channelCountMode" ], @@ -4983,7 +4150,7 @@ "informative": false, "heading": { "id": "AudioNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-attributes", "title": "Attributes", "number": "1.5.4" }, @@ -4991,7 +4158,7 @@ }, { "id": "audionode-channelcountmode-constraints", - "href": "https://www.w3.org/TR/webaudio/#audionode-channelcountmode-constraints", + "href": "https://www.w3.org/TR/webaudio-1.0/#audionode-channelcountmode-constraints", "linkingText": [ "channelCountMode constraints" ], @@ -5004,7 +4171,7 @@ "informative": false, "heading": { "id": "AudioNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-attributes", "title": "Attributes", "number": "1.5.4" }, @@ -5012,7 +4179,7 @@ }, { "id": "dom-audionode-channelinterpretation", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-channelinterpretation", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-channelinterpretation", "linkingText": [ "channelInterpretation" ], @@ -5025,7 +4192,7 @@ "informative": false, "heading": { "id": "AudioNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-attributes", "title": "Attributes", "number": "1.5.4" }, @@ -5033,7 +4200,7 @@ }, { "id": "audionode-channelinterpretation-constraints", - "href": "https://www.w3.org/TR/webaudio/#audionode-channelinterpretation-constraints", + "href": "https://www.w3.org/TR/webaudio-1.0/#audionode-channelinterpretation-constraints", "linkingText": [ "channelInterpretation constraints" ], @@ -5046,7 +4213,7 @@ "informative": false, "heading": { "id": "AudioNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-attributes", "title": "Attributes", "number": "1.5.4" }, @@ -5054,7 +4221,7 @@ }, { "id": "dom-audionode-context", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-context", "linkingText": [ "context" ], @@ -5067,7 +4234,7 @@ "informative": false, "heading": { "id": "AudioNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-attributes", "title": "Attributes", "number": "1.5.4" }, @@ -5075,7 +4242,7 @@ }, { "id": "dom-audionode-numberofinputs", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-numberofinputs", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-numberofinputs", "linkingText": [ "numberOfInputs" ], @@ -5088,7 +4255,7 @@ "informative": false, "heading": { "id": "AudioNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-attributes", "title": "Attributes", "number": "1.5.4" }, @@ -5096,7 +4263,7 @@ }, { "id": "audionode-source-nodes", - "href": "https://www.w3.org/TR/webaudio/#audionode-source-nodes", + "href": "https://www.w3.org/TR/webaudio-1.0/#audionode-source-nodes", "linkingText": [ "source nodes" ], @@ -5109,7 +4276,7 @@ "informative": false, "heading": { "id": "AudioNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-attributes", "title": "Attributes", "number": "1.5.4" }, @@ -5117,7 +4284,7 @@ }, { "id": "dom-audionode-numberofoutputs", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-numberofoutputs", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-numberofoutputs", "linkingText": [ "numberOfOutputs" ], @@ -5130,7 +4297,7 @@ "informative": false, "heading": { "id": "AudioNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-attributes", "title": "Attributes", "number": "1.5.4" }, @@ -5138,7 +4305,7 @@ }, { "id": "dom-audionode-connect", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-connect", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-connect", "linkingText": [ "connect(destinationNode, output, input)", "connect(destinationNode, output)", @@ -5153,7 +4320,7 @@ "informative": false, "heading": { "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-methods", "title": "Methods", "number": "1.5.5" }, @@ -5161,7 +4328,7 @@ }, { "id": "dom-audionode-connect-destinationnode-output-input-destinationnode", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-connect-destinationnode-output-input-destinationnode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-connect-destinationnode-output-input-destinationnode", "linkingText": [ "destinationNode" ], @@ -5174,7 +4341,7 @@ "informative": false, "heading": { "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-methods", "title": "Methods", "number": "1.5.5" }, @@ -5182,7 +4349,7 @@ }, { "id": "dom-audionode-connect-destinationnode-output-input-output", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-connect-destinationnode-output-input-output", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-connect-destinationnode-output-input-output", "linkingText": [ "output" ], @@ -5195,7 +4362,7 @@ "informative": false, "heading": { "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-methods", "title": "Methods", "number": "1.5.5" }, @@ -5203,7 +4370,7 @@ }, { "id": "dom-audionode-connect-destinationnode-output-input-input", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-connect-destinationnode-output-input-input", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-connect-destinationnode-output-input-input", "linkingText": [ "input" ], @@ -5216,7 +4383,7 @@ "informative": false, "heading": { "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-methods", "title": "Methods", "number": "1.5.5" }, @@ -5224,7 +4391,7 @@ }, { "id": "cycle", - "href": "https://www.w3.org/TR/webaudio/#cycle", + "href": "https://www.w3.org/TR/webaudio-1.0/#cycle", "linkingText": [ "cycle" ], @@ -5235,7 +4402,7 @@ "informative": false, "heading": { "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-methods", "title": "Methods", "number": "1.5.5" }, @@ -5243,7 +4410,7 @@ }, { "id": "dom-audionode-connect-destinationparam-output", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-connect-destinationparam-output", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-connect-destinationparam-output", "linkingText": [ "connect(destinationParam, output)", "connect(destinationParam)" @@ -5257,7 +4424,7 @@ "informative": false, "heading": { "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-methods", "title": "Methods", "number": "1.5.5" }, @@ -5265,7 +4432,7 @@ }, { "id": "dom-audionode-connect-destinationparam-output-destinationparam", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-connect-destinationparam-output-destinationparam", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-connect-destinationparam-output-destinationparam", "linkingText": [ "destinationParam" ], @@ -5278,7 +4445,7 @@ "informative": false, "heading": { "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-methods", "title": "Methods", "number": "1.5.5" }, @@ -5286,7 +4453,7 @@ }, { "id": "dom-audionode-connect-destinationparam-output-output", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-connect-destinationparam-output-output", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-connect-destinationparam-output-output", "linkingText": [ "output" ], @@ -5299,7 +4466,7 @@ "informative": false, "heading": { "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-methods", "title": "Methods", "number": "1.5.5" }, @@ -5307,7 +4474,7 @@ }, { "id": "dom-audionode-disconnect", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect", "linkingText": [ "disconnect()" ], @@ -5320,7 +4487,7 @@ "informative": false, "heading": { "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-methods", "title": "Methods", "number": "1.5.5" }, @@ -5328,7 +4495,7 @@ }, { "id": "dom-audionode-disconnect-output", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-output", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect-output", "linkingText": [ "disconnect(output)" ], @@ -5341,7 +4508,7 @@ "informative": false, "heading": { "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-methods", "title": "Methods", "number": "1.5.5" }, @@ -5349,7 +4516,7 @@ }, { "id": "dom-audionode-disconnect-output-output", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-output-output", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect-output-output", "linkingText": [ "output" ], @@ -5362,7 +4529,7 @@ "informative": false, "heading": { "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-methods", "title": "Methods", "number": "1.5.5" }, @@ -5370,7 +4537,7 @@ }, { "id": "dom-audionode-disconnect-destinationnode", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect-destinationnode", "linkingText": [ "disconnect(destinationNode)" ], @@ -5383,7 +4550,7 @@ "informative": false, "heading": { "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-methods", "title": "Methods", "number": "1.5.5" }, @@ -5391,7 +4558,7 @@ }, { "id": "dom-audionode-disconnect-destinationnode-destinationnode", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode-destinationnode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect-destinationnode-destinationnode", "linkingText": [ "destinationNode" ], @@ -5404,7 +4571,7 @@ "informative": false, "heading": { "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-methods", "title": "Methods", "number": "1.5.5" }, @@ -5412,7 +4579,7 @@ }, { "id": "dom-audionode-disconnect-destinationnode-output", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode-output", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect-destinationnode-output", "linkingText": [ "disconnect(destinationNode, output)" ], @@ -5425,7 +4592,7 @@ "informative": false, "heading": { "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-methods", "title": "Methods", "number": "1.5.5" }, @@ -5433,7 +4600,7 @@ }, { "id": "dom-audionode-disconnect-destinationnode-output-destinationnode", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode-output-destinationnode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect-destinationnode-output-destinationnode", "linkingText": [ "destinationNode" ], @@ -5446,7 +4613,7 @@ "informative": false, "heading": { "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-methods", "title": "Methods", "number": "1.5.5" }, @@ -5454,7 +4621,7 @@ }, { "id": "dom-audionode-disconnect-destinationnode-output-output", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode-output-output", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect-destinationnode-output-output", "linkingText": [ "output" ], @@ -5467,7 +4634,7 @@ "informative": false, "heading": { "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-methods", "title": "Methods", "number": "1.5.5" }, @@ -5475,7 +4642,7 @@ }, { "id": "dom-audionode-disconnect-destinationnode-output-input", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode-output-input", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect-destinationnode-output-input", "linkingText": [ "disconnect(destinationNode, output, input)" ], @@ -5488,7 +4655,7 @@ "informative": false, "heading": { "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-methods", "title": "Methods", "number": "1.5.5" }, @@ -5496,7 +4663,7 @@ }, { "id": "dom-audionode-disconnect-destinationnode-output-input-destinationnode", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode-output-input-destinationnode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect-destinationnode-output-input-destinationnode", "linkingText": [ "destinationNode" ], @@ -5509,7 +4676,7 @@ "informative": false, "heading": { "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-methods", "title": "Methods", "number": "1.5.5" }, @@ -5517,7 +4684,7 @@ }, { "id": "dom-audionode-disconnect-destinationnode-output-input-output", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode-output-input-output", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect-destinationnode-output-input-output", "linkingText": [ "output" ], @@ -5530,7 +4697,7 @@ "informative": false, "heading": { "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-methods", "title": "Methods", "number": "1.5.5" }, @@ -5538,7 +4705,7 @@ }, { "id": "dom-audionode-disconnect-destinationnode-output-input-input", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode-output-input-input", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect-destinationnode-output-input-input", "linkingText": [ "input" ], @@ -5551,7 +4718,7 @@ "informative": false, "heading": { "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-methods", "title": "Methods", "number": "1.5.5" }, @@ -5559,7 +4726,7 @@ }, { "id": "dom-audionode-disconnect-destinationparam", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationparam", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect-destinationparam", "linkingText": [ "disconnect(destinationParam)" ], @@ -5572,7 +4739,7 @@ "informative": false, "heading": { "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-methods", "title": "Methods", "number": "1.5.5" }, @@ -5580,7 +4747,7 @@ }, { "id": "dom-audionode-disconnect-destinationparam-destinationparam", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationparam-destinationparam", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect-destinationparam-destinationparam", "linkingText": [ "destinationParam" ], @@ -5593,7 +4760,7 @@ "informative": false, "heading": { "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-methods", "title": "Methods", "number": "1.5.5" }, @@ -5601,7 +4768,7 @@ }, { "id": "dom-audionode-disconnect-destinationparam-output", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationparam-output", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect-destinationparam-output", "linkingText": [ "disconnect(destinationParam, output)" ], @@ -5614,7 +4781,7 @@ "informative": false, "heading": { "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-methods", "title": "Methods", "number": "1.5.5" }, @@ -5622,7 +4789,7 @@ }, { "id": "dom-audionode-disconnect-destinationparam-output-destinationparam", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationparam-output-destinationparam", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect-destinationparam-output-destinationparam", "linkingText": [ "destinationParam" ], @@ -5635,7 +4802,7 @@ "informative": false, "heading": { "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-methods", "title": "Methods", "number": "1.5.5" }, @@ -5643,7 +4810,7 @@ }, { "id": "dom-audionode-disconnect-destinationparam-output-output", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationparam-output-output", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect-destinationparam-output-output", "linkingText": [ "output" ], @@ -5656,7 +4823,7 @@ "informative": false, "heading": { "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-methods", "title": "Methods", "number": "1.5.5" }, @@ -5664,9 +4831,9 @@ }, { "id": "AudioNodeOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioNodeOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNodeOptions", "linkingText": [ - "AudioNodeOptions" + "audionodeoptions" ], "localLinkingText": [], "type": "dictionary", @@ -5675,15 +4842,34 @@ "informative": false, "heading": { "id": "AudioNodeOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioNodeOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNodeOptions", "title": "AudioNodeOptions", "number": "1.5.6" }, "definedIn": "heading" }, + { + "id": "dictdef-audionodeoptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictdef-audionodeoptions", + "linkingText": [ + "AudioNodeOptions" + ], + "localLinkingText": [], + "type": "dictionary", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "AudioNodeOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNodeOptions", + "title": "AudioNodeOptions", + "number": "1.5.6" + }, + "definedIn": "pre" + }, { "id": "dom-audionodeoptions-channelcount", - "href": "https://www.w3.org/TR/webaudio/#dom-audionodeoptions-channelcount", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audionodeoptions-channelcount", "linkingText": [ "channelCount" ], @@ -5696,7 +4882,7 @@ "informative": false, "heading": { "id": "dictionary-audionodeoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audionodeoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audionodeoptions-members", "title": "Dictionary AudioNodeOptions Members", "number": "1.5.6.1" }, @@ -5704,7 +4890,7 @@ }, { "id": "dom-audionodeoptions-channelcountmode", - "href": "https://www.w3.org/TR/webaudio/#dom-audionodeoptions-channelcountmode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audionodeoptions-channelcountmode", "linkingText": [ "channelCountMode" ], @@ -5717,7 +4903,7 @@ "informative": false, "heading": { "id": "dictionary-audionodeoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audionodeoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audionodeoptions-members", "title": "Dictionary AudioNodeOptions Members", "number": "1.5.6.1" }, @@ -5725,7 +4911,7 @@ }, { "id": "dom-audionodeoptions-channelinterpretation", - "href": "https://www.w3.org/TR/webaudio/#dom-audionodeoptions-channelinterpretation", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audionodeoptions-channelinterpretation", "linkingText": [ "channelInterpretation" ], @@ -5738,7 +4924,7 @@ "informative": false, "heading": { "id": "dictionary-audionodeoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audionodeoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audionodeoptions-members", "title": "Dictionary AudioNodeOptions Members", "number": "1.5.6.1" }, @@ -5746,9 +4932,9 @@ }, { "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam", "linkingText": [ - "AudioParam" + "audioparam" ], "localLinkingText": [], "type": "interface", @@ -5757,7 +4943,7 @@ "informative": false, "heading": { "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam", "title": "The AudioParam Interface", "number": "1.6" }, @@ -5765,7 +4951,7 @@ }, { "id": "k-rate", - "href": "https://www.w3.org/TR/webaudio/#k-rate", + "href": "https://www.w3.org/TR/webaudio-1.0/#k-rate", "linkingText": [ "k-rate" ], @@ -5776,7 +4962,7 @@ "informative": false, "heading": { "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam", "title": "The AudioParam Interface", "number": "1.6" }, @@ -5784,7 +4970,7 @@ }, { "id": "a-rate", - "href": "https://www.w3.org/TR/webaudio/#a-rate", + "href": "https://www.w3.org/TR/webaudio-1.0/#a-rate", "linkingText": [ "a-rate" ], @@ -5795,7 +4981,7 @@ "informative": false, "heading": { "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam", "title": "The AudioParam Interface", "number": "1.6" }, @@ -5803,7 +4989,7 @@ }, { "id": "simple-nominal-range", - "href": "https://www.w3.org/TR/webaudio/#simple-nominal-range", + "href": "https://www.w3.org/TR/webaudio-1.0/#simple-nominal-range", "linkingText": [ "simple nominal range" ], @@ -5814,7 +5000,7 @@ "informative": false, "heading": { "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam", "title": "The AudioParam Interface", "number": "1.6" }, @@ -5822,7 +5008,7 @@ }, { "id": "most-positive-single-float", - "href": "https://www.w3.org/TR/webaudio/#most-positive-single-float", + "href": "https://www.w3.org/TR/webaudio-1.0/#most-positive-single-float", "linkingText": [ "most-positive-single-float" ], @@ -5833,7 +5019,7 @@ "informative": false, "heading": { "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam", "title": "The AudioParam Interface", "number": "1.6" }, @@ -5841,7 +5027,7 @@ }, { "id": "most-negative-single-float", - "href": "https://www.w3.org/TR/webaudio/#most-negative-single-float", + "href": "https://www.w3.org/TR/webaudio-1.0/#most-negative-single-float", "linkingText": [ "most-negative-single-float" ], @@ -5852,7 +5038,7 @@ "informative": false, "heading": { "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam", "title": "The AudioParam Interface", "number": "1.6" }, @@ -5860,7 +5046,7 @@ }, { "id": "dfn-automation-event", - "href": "https://www.w3.org/TR/webaudio/#dfn-automation-event", + "href": "https://www.w3.org/TR/webaudio-1.0/#dfn-automation-event", "linkingText": [ "automation events" ], @@ -5871,7 +5057,7 @@ "informative": false, "heading": { "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam", "title": "The AudioParam Interface", "number": "1.6" }, @@ -5879,7 +5065,7 @@ }, { "id": "automation-event-time", - "href": "https://www.w3.org/TR/webaudio/#automation-event-time", + "href": "https://www.w3.org/TR/webaudio-1.0/#automation-event-time", "linkingText": [ "automation event time" ], @@ -5890,7 +5076,7 @@ "informative": false, "heading": { "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam", "title": "The AudioParam Interface", "number": "1.6" }, @@ -5898,7 +5084,7 @@ }, { "id": "dfn-automation-method", - "href": "https://www.w3.org/TR/webaudio/#dfn-automation-method", + "href": "https://www.w3.org/TR/webaudio-1.0/#dfn-automation-method", "linkingText": [ "automation method" ], @@ -5909,7 +5095,7 @@ "informative": false, "heading": { "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam", "title": "The AudioParam Interface", "number": "1.6" }, @@ -5917,7 +5103,7 @@ }, { "id": "enumdef-automationrate", - "href": "https://www.w3.org/TR/webaudio/#enumdef-automationrate", + "href": "https://www.w3.org/TR/webaudio-1.0/#enumdef-automationrate", "linkingText": [ "AutomationRate" ], @@ -5928,7 +5114,7 @@ "informative": false, "heading": { "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam", "title": "The AudioParam Interface", "number": "1.6" }, @@ -5936,7 +5122,7 @@ }, { "id": "dom-automationrate-a-rate", - "href": "https://www.w3.org/TR/webaudio/#dom-automationrate-a-rate", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-automationrate-a-rate", "linkingText": [ "\"a-rate\"", "a-rate" @@ -5950,7 +5136,7 @@ "informative": false, "heading": { "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam", "title": "The AudioParam Interface", "number": "1.6" }, @@ -5958,7 +5144,7 @@ }, { "id": "dom-automationrate-k-rate", - "href": "https://www.w3.org/TR/webaudio/#dom-automationrate-k-rate", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-automationrate-k-rate", "linkingText": [ "\"k-rate\"", "k-rate" @@ -5972,7 +5158,7 @@ "informative": false, "heading": { "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam", "title": "The AudioParam Interface", "number": "1.6" }, @@ -5980,7 +5166,7 @@ }, { "id": "dom-audioparam-current-value-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-current-value-slot", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-current-value-slot", "linkingText": [ "[[current value]]" ], @@ -5993,15 +5179,34 @@ "informative": false, "heading": { "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam", "title": "The AudioParam Interface", "number": "1.6" }, "definedIn": "prose" }, + { + "id": "audioparam", + "href": "https://www.w3.org/TR/webaudio-1.0/#audioparam", + "linkingText": [ + "AudioParam" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "AudioParam", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam", + "title": "The AudioParam Interface", + "number": "1.6" + }, + "definedIn": "pre" + }, { "id": "dom-audioparam-setvalueattime-value-starttime-value", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-setvalueattime-value-starttime-value", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-setvalueattime-value-starttime-value", "linkingText": [ "value" ], @@ -6014,7 +5219,7 @@ "informative": false, "heading": { "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam", "title": "The AudioParam Interface", "number": "1.6" }, @@ -6022,7 +5227,7 @@ }, { "id": "dom-audioparam-setvalueattime-value-starttime-starttime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-setvalueattime-value-starttime-starttime", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-setvalueattime-value-starttime-starttime", "linkingText": [ "startTime" ], @@ -6035,7 +5240,7 @@ "informative": false, "heading": { "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam", "title": "The AudioParam Interface", "number": "1.6" }, @@ -6043,7 +5248,7 @@ }, { "id": "dom-audioparam-linearramptovalueattime-value-endtime-value", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-linearramptovalueattime-value-endtime-value", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-linearramptovalueattime-value-endtime-value", "linkingText": [ "value" ], @@ -6056,7 +5261,7 @@ "informative": false, "heading": { "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam", "title": "The AudioParam Interface", "number": "1.6" }, @@ -6064,7 +5269,7 @@ }, { "id": "dom-audioparam-linearramptovalueattime-value-endtime-endtime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-linearramptovalueattime-value-endtime-endtime", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-linearramptovalueattime-value-endtime-endtime", "linkingText": [ "endTime" ], @@ -6077,7 +5282,7 @@ "informative": false, "heading": { "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam", "title": "The AudioParam Interface", "number": "1.6" }, @@ -6085,7 +5290,7 @@ }, { "id": "dom-audioparam-exponentialramptovalueattime-value-endtime-value", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-exponentialramptovalueattime-value-endtime-value", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-exponentialramptovalueattime-value-endtime-value", "linkingText": [ "value" ], @@ -6098,7 +5303,7 @@ "informative": false, "heading": { "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam", "title": "The AudioParam Interface", "number": "1.6" }, @@ -6106,7 +5311,7 @@ }, { "id": "dom-audioparam-exponentialramptovalueattime-value-endtime-endtime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-exponentialramptovalueattime-value-endtime-endtime", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-exponentialramptovalueattime-value-endtime-endtime", "linkingText": [ "endTime" ], @@ -6119,7 +5324,7 @@ "informative": false, "heading": { "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam", "title": "The AudioParam Interface", "number": "1.6" }, @@ -6127,7 +5332,7 @@ }, { "id": "dom-audioparam-settargetattime-target-starttime-timeconstant-target", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-settargetattime-target-starttime-timeconstant-target", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-settargetattime-target-starttime-timeconstant-target", "linkingText": [ "target" ], @@ -6140,7 +5345,7 @@ "informative": false, "heading": { "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam", "title": "The AudioParam Interface", "number": "1.6" }, @@ -6148,7 +5353,7 @@ }, { "id": "dom-audioparam-settargetattime-target-starttime-timeconstant-starttime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-settargetattime-target-starttime-timeconstant-starttime", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-settargetattime-target-starttime-timeconstant-starttime", "linkingText": [ "startTime" ], @@ -6161,7 +5366,7 @@ "informative": false, "heading": { "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam", "title": "The AudioParam Interface", "number": "1.6" }, @@ -6169,7 +5374,7 @@ }, { "id": "dom-audioparam-settargetattime-target-starttime-timeconstant-timeconstant", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-settargetattime-target-starttime-timeconstant-timeconstant", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-settargetattime-target-starttime-timeconstant-timeconstant", "linkingText": [ "timeConstant" ], @@ -6182,7 +5387,7 @@ "informative": false, "heading": { "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam", "title": "The AudioParam Interface", "number": "1.6" }, @@ -6190,7 +5395,7 @@ }, { "id": "dom-audioparam-setvaluecurveattime-values-starttime-duration-values", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-setvaluecurveattime-values-starttime-duration-values", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-setvaluecurveattime-values-starttime-duration-values", "linkingText": [ "values" ], @@ -6203,7 +5408,7 @@ "informative": false, "heading": { "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam", "title": "The AudioParam Interface", "number": "1.6" }, @@ -6211,7 +5416,7 @@ }, { "id": "dom-audioparam-setvaluecurveattime-values-starttime-duration-starttime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-setvaluecurveattime-values-starttime-duration-starttime", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-setvaluecurveattime-values-starttime-duration-starttime", "linkingText": [ "startTime" ], @@ -6224,7 +5429,7 @@ "informative": false, "heading": { "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam", "title": "The AudioParam Interface", "number": "1.6" }, @@ -6232,7 +5437,7 @@ }, { "id": "dom-audioparam-setvaluecurveattime-values-starttime-duration-duration", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-setvaluecurveattime-values-starttime-duration-duration", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-setvaluecurveattime-values-starttime-duration-duration", "linkingText": [ "duration" ], @@ -6245,7 +5450,7 @@ "informative": false, "heading": { "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam", "title": "The AudioParam Interface", "number": "1.6" }, @@ -6253,7 +5458,7 @@ }, { "id": "dom-audioparam-cancelscheduledvalues-canceltime-canceltime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-cancelscheduledvalues-canceltime-canceltime", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-cancelscheduledvalues-canceltime-canceltime", "linkingText": [ "cancelTime" ], @@ -6266,7 +5471,7 @@ "informative": false, "heading": { "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam", "title": "The AudioParam Interface", "number": "1.6" }, @@ -6274,7 +5479,7 @@ }, { "id": "dom-audioparam-cancelandholdattime-canceltime-canceltime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-cancelandholdattime-canceltime-canceltime", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-cancelandholdattime-canceltime-canceltime", "linkingText": [ "cancelTime" ], @@ -6287,7 +5492,7 @@ "informative": false, "heading": { "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam", "title": "The AudioParam Interface", "number": "1.6" }, @@ -6295,7 +5500,7 @@ }, { "id": "dom-audioparam-automationrate", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-automationrate", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-automationrate", "linkingText": [ "automationRate" ], @@ -6308,7 +5513,7 @@ "informative": false, "heading": { "id": "AudioParam-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam-attributes", "title": "Attributes", "number": "1.6.1" }, @@ -6316,7 +5521,7 @@ }, { "id": "audioparam-automation-rate-constraints", - "href": "https://www.w3.org/TR/webaudio/#audioparam-automation-rate-constraints", + "href": "https://www.w3.org/TR/webaudio-1.0/#audioparam-automation-rate-constraints", "linkingText": [ "automation rate constraints" ], @@ -6329,7 +5534,7 @@ "informative": false, "heading": { "id": "AudioParam-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam-attributes", "title": "Attributes", "number": "1.6.1" }, @@ -6337,7 +5542,7 @@ }, { "id": "dom-audioparam-defaultvalue", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-defaultvalue", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-defaultvalue", "linkingText": [ "defaultValue" ], @@ -6350,7 +5555,7 @@ "informative": false, "heading": { "id": "AudioParam-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam-attributes", "title": "Attributes", "number": "1.6.1" }, @@ -6358,7 +5563,7 @@ }, { "id": "dom-audioparam-maxvalue", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-maxvalue", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-maxvalue", "linkingText": [ "maxValue" ], @@ -6371,7 +5576,7 @@ "informative": false, "heading": { "id": "AudioParam-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam-attributes", "title": "Attributes", "number": "1.6.1" }, @@ -6379,7 +5584,7 @@ }, { "id": "dom-audioparam-minvalue", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-minvalue", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-minvalue", "linkingText": [ "minValue" ], @@ -6392,7 +5597,7 @@ "informative": false, "heading": { "id": "AudioParam-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam-attributes", "title": "Attributes", "number": "1.6.1" }, @@ -6400,7 +5605,7 @@ }, { "id": "dom-audioparam-value", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-value", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-value", "linkingText": [ "value" ], @@ -6413,7 +5618,7 @@ "informative": false, "heading": { "id": "AudioParam-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam-attributes", "title": "Attributes", "number": "1.6.1" }, @@ -6421,7 +5626,7 @@ }, { "id": "dom-audioparam-cancelandholdattime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-cancelandholdattime", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-cancelandholdattime", "linkingText": [ "cancelAndHoldAtTime(cancelTime)" ], @@ -6434,7 +5639,7 @@ "informative": false, "heading": { "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam-methods", "title": "Methods", "number": "1.6.2" }, @@ -6442,7 +5647,7 @@ }, { "id": "dom-audioparam-cancelandholdattime-canceltime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-cancelandholdattime-canceltime", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-cancelandholdattime-canceltime", "linkingText": [ "cancelTime" ], @@ -6455,7 +5660,7 @@ "informative": false, "heading": { "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam-methods", "title": "Methods", "number": "1.6.2" }, @@ -6463,7 +5668,7 @@ }, { "id": "dom-audioparam-cancelscheduledvalues", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-cancelscheduledvalues", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-cancelscheduledvalues", "linkingText": [ "cancelScheduledValues(cancelTime)" ], @@ -6476,7 +5681,7 @@ "informative": false, "heading": { "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam-methods", "title": "Methods", "number": "1.6.2" }, @@ -6484,7 +5689,7 @@ }, { "id": "dom-audioparam-cancelscheduledvalues-canceltime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-cancelscheduledvalues-canceltime", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-cancelscheduledvalues-canceltime", "linkingText": [ "cancelTime" ], @@ -6497,7 +5702,7 @@ "informative": false, "heading": { "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam-methods", "title": "Methods", "number": "1.6.2" }, @@ -6505,7 +5710,7 @@ }, { "id": "dom-audioparam-exponentialramptovalueattime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-exponentialramptovalueattime", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-exponentialramptovalueattime", "linkingText": [ "exponentialRampToValueAtTime(value, endTime)" ], @@ -6518,7 +5723,7 @@ "informative": false, "heading": { "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam-methods", "title": "Methods", "number": "1.6.2" }, @@ -6526,7 +5731,7 @@ }, { "id": "dom-audioparam-exponentialramptovalueattime-value", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-exponentialramptovalueattime-value", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-exponentialramptovalueattime-value", "linkingText": [ "value" ], @@ -6539,7 +5744,7 @@ "informative": false, "heading": { "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam-methods", "title": "Methods", "number": "1.6.2" }, @@ -6547,7 +5752,7 @@ }, { "id": "dom-audioparam-exponentialramptovalueattime-endtime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-exponentialramptovalueattime-endtime", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-exponentialramptovalueattime-endtime", "linkingText": [ "endTime" ], @@ -6560,7 +5765,7 @@ "informative": false, "heading": { "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam-methods", "title": "Methods", "number": "1.6.2" }, @@ -6568,7 +5773,7 @@ }, { "id": "dom-audioparam-linearramptovalueattime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-linearramptovalueattime", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-linearramptovalueattime", "linkingText": [ "linearRampToValueAtTime(value, endTime)" ], @@ -6581,7 +5786,7 @@ "informative": false, "heading": { "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam-methods", "title": "Methods", "number": "1.6.2" }, @@ -6589,7 +5794,7 @@ }, { "id": "dom-audioparam-linearramptovalueattime-value", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-linearramptovalueattime-value", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-linearramptovalueattime-value", "linkingText": [ "value" ], @@ -6602,7 +5807,7 @@ "informative": false, "heading": { "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam-methods", "title": "Methods", "number": "1.6.2" }, @@ -6610,7 +5815,7 @@ }, { "id": "dom-audioparam-linearramptovalueattime-endtime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-linearramptovalueattime-endtime", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-linearramptovalueattime-endtime", "linkingText": [ "endTime" ], @@ -6623,7 +5828,7 @@ "informative": false, "heading": { "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam-methods", "title": "Methods", "number": "1.6.2" }, @@ -6631,7 +5836,7 @@ }, { "id": "dom-audioparam-settargetattime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-settargetattime", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-settargetattime", "linkingText": [ "setTargetAtTime(target, startTime, timeConstant)" ], @@ -6644,7 +5849,7 @@ "informative": false, "heading": { "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam-methods", "title": "Methods", "number": "1.6.2" }, @@ -6652,7 +5857,7 @@ }, { "id": "dom-audioparam-settargetattime-target", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-settargetattime-target", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-settargetattime-target", "linkingText": [ "target" ], @@ -6665,7 +5870,7 @@ "informative": false, "heading": { "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam-methods", "title": "Methods", "number": "1.6.2" }, @@ -6673,7 +5878,7 @@ }, { "id": "dom-audioparam-settargetattime-starttime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-settargetattime-starttime", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-settargetattime-starttime", "linkingText": [ "startTime" ], @@ -6686,7 +5891,7 @@ "informative": false, "heading": { "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam-methods", "title": "Methods", "number": "1.6.2" }, @@ -6694,7 +5899,7 @@ }, { "id": "dom-audioparam-settargetattime-timeconstant", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-settargetattime-timeconstant", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-settargetattime-timeconstant", "linkingText": [ "timeConstant" ], @@ -6707,7 +5912,7 @@ "informative": false, "heading": { "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam-methods", "title": "Methods", "number": "1.6.2" }, @@ -6715,7 +5920,7 @@ }, { "id": "dom-audioparam-setvalueattime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-setvalueattime", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-setvalueattime", "linkingText": [ "setValueAtTime(value, startTime)" ], @@ -6728,7 +5933,7 @@ "informative": false, "heading": { "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam-methods", "title": "Methods", "number": "1.6.2" }, @@ -6736,7 +5941,7 @@ }, { "id": "dom-audioparam-setvalueattime-value", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-setvalueattime-value", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-setvalueattime-value", "linkingText": [ "value" ], @@ -6749,7 +5954,7 @@ "informative": false, "heading": { "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam-methods", "title": "Methods", "number": "1.6.2" }, @@ -6757,7 +5962,7 @@ }, { "id": "dom-audioparam-setvalueattime-starttime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-setvalueattime-starttime", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-setvalueattime-starttime", "linkingText": [ "startTime" ], @@ -6770,7 +5975,7 @@ "informative": false, "heading": { "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam-methods", "title": "Methods", "number": "1.6.2" }, @@ -6778,7 +5983,7 @@ }, { "id": "dom-audioparam-setvaluecurveattime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-setvaluecurveattime", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-setvaluecurveattime", "linkingText": [ "setValueCurveAtTime(values, startTime, duration)" ], @@ -6791,7 +5996,7 @@ "informative": false, "heading": { "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam-methods", "title": "Methods", "number": "1.6.2" }, @@ -6799,7 +6004,7 @@ }, { "id": "dom-audioparam-setvaluecurveattime-values", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-setvaluecurveattime-values", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-setvaluecurveattime-values", "linkingText": [ "values" ], @@ -6812,7 +6017,7 @@ "informative": false, "heading": { "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam-methods", "title": "Methods", "number": "1.6.2" }, @@ -6820,7 +6025,7 @@ }, { "id": "dom-audioparam-setvaluecurveattime-starttime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-setvaluecurveattime-starttime", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-setvaluecurveattime-starttime", "linkingText": [ "startTime" ], @@ -6833,7 +6038,7 @@ "informative": false, "heading": { "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam-methods", "title": "Methods", "number": "1.6.2" }, @@ -6841,7 +6046,7 @@ }, { "id": "dom-audioparam-setvaluecurveattime-duration", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-setvaluecurveattime-duration", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-setvaluecurveattime-duration", "linkingText": [ "duration" ], @@ -6854,7 +6059,7 @@ "informative": false, "heading": { "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam-methods", "title": "Methods", "number": "1.6.2" }, @@ -6862,7 +6067,7 @@ }, { "id": "simple-parameter", - "href": "https://www.w3.org/TR/webaudio/#simple-parameter", + "href": "https://www.w3.org/TR/webaudio-1.0/#simple-parameter", "linkingText": [ "simple parameter" ], @@ -6873,7 +6078,7 @@ "informative": false, "heading": { "id": "computation-of-value", - "href": "https://www.w3.org/TR/webaudio/#computation-of-value", + "href": "https://www.w3.org/TR/webaudio-1.0/#computation-of-value", "title": "Computation of Value", "number": "1.6.3" }, @@ -6881,7 +6086,7 @@ }, { "id": "compound-parameter", - "href": "https://www.w3.org/TR/webaudio/#compound-parameter", + "href": "https://www.w3.org/TR/webaudio-1.0/#compound-parameter", "linkingText": [ "compound parameter" ], @@ -6892,7 +6097,7 @@ "informative": false, "heading": { "id": "computation-of-value", - "href": "https://www.w3.org/TR/webaudio/#computation-of-value", + "href": "https://www.w3.org/TR/webaudio-1.0/#computation-of-value", "title": "Computation of Value", "number": "1.6.3" }, @@ -6900,7 +6105,7 @@ }, { "id": "computedvalue", - "href": "https://www.w3.org/TR/webaudio/#computedvalue", + "href": "https://www.w3.org/TR/webaudio-1.0/#computedvalue", "linkingText": [ "computedValue" ], @@ -6911,7 +6116,7 @@ "informative": false, "heading": { "id": "computation-of-value", - "href": "https://www.w3.org/TR/webaudio/#computation-of-value", + "href": "https://www.w3.org/TR/webaudio-1.0/#computation-of-value", "title": "Computation of Value", "number": "1.6.3" }, @@ -6919,7 +6124,7 @@ }, { "id": "nominal-range", - "href": "https://www.w3.org/TR/webaudio/#nominal-range", + "href": "https://www.w3.org/TR/webaudio-1.0/#nominal-range", "linkingText": [ "nominal range" ], @@ -6930,7 +6135,7 @@ "informative": false, "heading": { "id": "computation-of-value", - "href": "https://www.w3.org/TR/webaudio/#computation-of-value", + "href": "https://www.w3.org/TR/webaudio-1.0/#computation-of-value", "title": "Computation of Value", "number": "1.6.3" }, @@ -6938,9 +6143,9 @@ }, { "id": "AudioScheduledSourceNode", - "href": "https://www.w3.org/TR/webaudio/#AudioScheduledSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioScheduledSourceNode", "linkingText": [ - "AudioScheduledSourceNode" + "audioscheduledsourcenode" ], "localLinkingText": [], "type": "interface", @@ -6949,7 +6154,7 @@ "informative": false, "heading": { "id": "AudioScheduledSourceNode", - "href": "https://www.w3.org/TR/webaudio/#AudioScheduledSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioScheduledSourceNode", "title": "The AudioScheduledSourceNode Interface", "number": "1.7" }, @@ -6957,7 +6162,7 @@ }, { "id": "playing", - "href": "https://www.w3.org/TR/webaudio/#playing", + "href": "https://www.w3.org/TR/webaudio-1.0/#playing", "linkingText": [ "playing" ], @@ -6968,7 +6173,7 @@ "informative": false, "heading": { "id": "AudioScheduledSourceNode", - "href": "https://www.w3.org/TR/webaudio/#AudioScheduledSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioScheduledSourceNode", "title": "The AudioScheduledSourceNode Interface", "number": "1.7" }, @@ -6976,7 +6181,7 @@ }, { "id": "dom-audioscheduledsourcenode-source-started-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-audioscheduledsourcenode-source-started-slot", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioscheduledsourcenode-source-started-slot", "linkingText": [ "[[source started]]" ], @@ -6989,41 +6194,39 @@ "informative": false, "heading": { "id": "AudioScheduledSourceNode", - "href": "https://www.w3.org/TR/webaudio/#AudioScheduledSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioScheduledSourceNode", "title": "The AudioScheduledSourceNode Interface", "number": "1.7" }, "definedIn": "prose" }, { - "id": "dom-audioscheduledsourcenode-onended", - "href": "https://www.w3.org/TR/webaudio/#dom-audioscheduledsourcenode-onended", + "id": "audioscheduledsourcenode", + "href": "https://www.w3.org/TR/webaudio-1.0/#audioscheduledsourcenode", "linkingText": [ - "onended" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ "AudioScheduledSourceNode" ], + "localLinkingText": [], + "type": "interface", + "for": [], "access": "public", "informative": false, "heading": { - "id": "AudioScheduledSourceNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioScheduledSourceNode-attributes", - "title": "Attributes", - "number": "1.7.1" + "id": "AudioScheduledSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioScheduledSourceNode", + "title": "The AudioScheduledSourceNode Interface", + "number": "1.7" }, - "definedIn": "dt" + "definedIn": "pre" }, { - "id": "eventdef-audioscheduledsourcenode-ended", - "href": "https://www.w3.org/TR/webaudio/#eventdef-audioscheduledsourcenode-ended", + "id": "dom-audioscheduledsourcenode-onended", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioscheduledsourcenode-onended", "linkingText": [ - "ended" + "onended" ], "localLinkingText": [], - "type": "event", + "type": "attribute", "for": [ "AudioScheduledSourceNode" ], @@ -7031,15 +6234,15 @@ "informative": false, "heading": { "id": "AudioScheduledSourceNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioScheduledSourceNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioScheduledSourceNode-attributes", "title": "Attributes", "number": "1.7.1" }, - "definedIn": "prose" + "definedIn": "dt" }, { "id": "dom-audioscheduledsourcenode-start", - "href": "https://www.w3.org/TR/webaudio/#dom-audioscheduledsourcenode-start", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioscheduledsourcenode-start", "linkingText": [ "start(when)", "start()" @@ -7053,7 +6256,7 @@ "informative": false, "heading": { "id": "AudioScheduledSourceNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioScheduledSourceNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioScheduledSourceNode-methods", "title": "Methods", "number": "1.7.2" }, @@ -7061,7 +6264,7 @@ }, { "id": "dom-audioscheduledsourcenode-start-when-when", - "href": "https://www.w3.org/TR/webaudio/#dom-audioscheduledsourcenode-start-when-when", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioscheduledsourcenode-start-when-when", "linkingText": [ "when" ], @@ -7074,7 +6277,7 @@ "informative": false, "heading": { "id": "AudioScheduledSourceNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioScheduledSourceNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioScheduledSourceNode-methods", "title": "Methods", "number": "1.7.2" }, @@ -7082,7 +6285,7 @@ }, { "id": "dom-audioscheduledsourcenode-stop", - "href": "https://www.w3.org/TR/webaudio/#dom-audioscheduledsourcenode-stop", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioscheduledsourcenode-stop", "linkingText": [ "stop(when)", "stop()" @@ -7096,7 +6299,7 @@ "informative": false, "heading": { "id": "AudioScheduledSourceNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioScheduledSourceNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioScheduledSourceNode-methods", "title": "Methods", "number": "1.7.2" }, @@ -7104,7 +6307,7 @@ }, { "id": "dom-audioscheduledsourcenode-stop-when-when", - "href": "https://www.w3.org/TR/webaudio/#dom-audioscheduledsourcenode-stop-when-when", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioscheduledsourcenode-stop-when-when", "linkingText": [ "when" ], @@ -7117,7 +6320,7 @@ "informative": false, "heading": { "id": "AudioScheduledSourceNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioScheduledSourceNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioScheduledSourceNode-methods", "title": "Methods", "number": "1.7.2" }, @@ -7125,9 +6328,9 @@ }, { "id": "AnalyserNode", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AnalyserNode", "linkingText": [ - "AnalyserNode" + "analysernode" ], "localLinkingText": [], "type": "interface", @@ -7136,15 +6339,34 @@ "informative": false, "heading": { "id": "AnalyserNode", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AnalyserNode", "title": "The AnalyserNode Interface", "number": "1.8" }, "definedIn": "heading" }, + { + "id": "analysernode", + "href": "https://www.w3.org/TR/webaudio-1.0/#analysernode", + "linkingText": [ + "AnalyserNode" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "AnalyserNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AnalyserNode", + "title": "The AnalyserNode Interface", + "number": "1.8" + }, + "definedIn": "pre" + }, { "id": "dom-analysernode-analysernode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-analysernode-context-options-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-analysernode-context-options-context", "linkingText": [ "context" ], @@ -7160,7 +6382,7 @@ "informative": false, "heading": { "id": "AnalyserNode", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AnalyserNode", "title": "The AnalyserNode Interface", "number": "1.8" }, @@ -7168,7 +6390,7 @@ }, { "id": "dom-analysernode-analysernode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-analysernode-context-options-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-analysernode-context-options-options", "linkingText": [ "options" ], @@ -7184,7 +6406,7 @@ "informative": false, "heading": { "id": "AnalyserNode", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AnalyserNode", "title": "The AnalyserNode Interface", "number": "1.8" }, @@ -7192,7 +6414,7 @@ }, { "id": "dom-analysernode-getfloatfrequencydata-array-array", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-getfloatfrequencydata-array-array", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-getfloatfrequencydata-array-array", "linkingText": [ "array" ], @@ -7205,7 +6427,7 @@ "informative": false, "heading": { "id": "AnalyserNode", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AnalyserNode", "title": "The AnalyserNode Interface", "number": "1.8" }, @@ -7213,7 +6435,7 @@ }, { "id": "dom-analysernode-getbytefrequencydata-array-array", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-getbytefrequencydata-array-array", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-getbytefrequencydata-array-array", "linkingText": [ "array" ], @@ -7226,7 +6448,7 @@ "informative": false, "heading": { "id": "AnalyserNode", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AnalyserNode", "title": "The AnalyserNode Interface", "number": "1.8" }, @@ -7234,7 +6456,7 @@ }, { "id": "dom-analysernode-getfloattimedomaindata-array-array", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-getfloattimedomaindata-array-array", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-getfloattimedomaindata-array-array", "linkingText": [ "array" ], @@ -7247,7 +6469,7 @@ "informative": false, "heading": { "id": "AnalyserNode", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AnalyserNode", "title": "The AnalyserNode Interface", "number": "1.8" }, @@ -7255,7 +6477,7 @@ }, { "id": "dom-analysernode-getbytetimedomaindata-array-array", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-getbytetimedomaindata-array-array", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-getbytetimedomaindata-array-array", "linkingText": [ "array" ], @@ -7268,7 +6490,7 @@ "informative": false, "heading": { "id": "AnalyserNode", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AnalyserNode", "title": "The AnalyserNode Interface", "number": "1.8" }, @@ -7276,7 +6498,7 @@ }, { "id": "dom-analysernode-analysernode", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-analysernode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-analysernode", "linkingText": [ "AnalyserNode(context, options)", "constructor(context, options)", @@ -7292,7 +6514,7 @@ "informative": false, "heading": { "id": "AnalyserNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#AnalyserNode-constructors", "title": "Constructors", "number": "1.8.1" }, @@ -7300,7 +6522,7 @@ }, { "id": "dom-analysernode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-constructor-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-constructor-context", "linkingText": [ "context" ], @@ -7313,7 +6535,7 @@ "informative": false, "heading": { "id": "AnalyserNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#AnalyserNode-constructors", "title": "Constructors", "number": "1.8.1" }, @@ -7321,7 +6543,7 @@ }, { "id": "dom-analysernode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-constructor-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-constructor-options", "linkingText": [ "options" ], @@ -7334,7 +6556,7 @@ "informative": false, "heading": { "id": "AnalyserNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#AnalyserNode-constructors", "title": "Constructors", "number": "1.8.1" }, @@ -7342,7 +6564,7 @@ }, { "id": "dom-analysernode-fftsize", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-fftsize", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-fftsize", "linkingText": [ "fftSize" ], @@ -7355,7 +6577,7 @@ "informative": false, "heading": { "id": "AnalyserNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AnalyserNode-attributes", "title": "Attributes", "number": "1.8.2" }, @@ -7363,7 +6585,7 @@ }, { "id": "dom-analysernode-frequencybincount", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-frequencybincount", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-frequencybincount", "linkingText": [ "frequencyBinCount" ], @@ -7376,7 +6598,7 @@ "informative": false, "heading": { "id": "AnalyserNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AnalyserNode-attributes", "title": "Attributes", "number": "1.8.2" }, @@ -7384,7 +6606,7 @@ }, { "id": "dom-analysernode-maxdecibels", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-maxdecibels", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-maxdecibels", "linkingText": [ "maxDecibels" ], @@ -7397,7 +6619,7 @@ "informative": false, "heading": { "id": "AnalyserNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AnalyserNode-attributes", "title": "Attributes", "number": "1.8.2" }, @@ -7405,7 +6627,7 @@ }, { "id": "dom-analysernode-mindecibels", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-mindecibels", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-mindecibels", "linkingText": [ "minDecibels" ], @@ -7418,7 +6640,7 @@ "informative": false, "heading": { "id": "AnalyserNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AnalyserNode-attributes", "title": "Attributes", "number": "1.8.2" }, @@ -7426,7 +6648,7 @@ }, { "id": "dom-analysernode-smoothingtimeconstant", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-smoothingtimeconstant", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-smoothingtimeconstant", "linkingText": [ "smoothingTimeConstant" ], @@ -7439,7 +6661,7 @@ "informative": false, "heading": { "id": "AnalyserNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AnalyserNode-attributes", "title": "Attributes", "number": "1.8.2" }, @@ -7447,7 +6669,7 @@ }, { "id": "dom-analysernode-getbytefrequencydata", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-getbytefrequencydata", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-getbytefrequencydata", "linkingText": [ "getByteFrequencyData(array)" ], @@ -7460,7 +6682,7 @@ "informative": false, "heading": { "id": "AnalyserNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AnalyserNode-methods", "title": "Methods", "number": "1.8.3" }, @@ -7468,7 +6690,7 @@ }, { "id": "dom-analysernode-getbytefrequencydata-array", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-getbytefrequencydata-array", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-getbytefrequencydata-array", "linkingText": [ "array" ], @@ -7481,7 +6703,7 @@ "informative": false, "heading": { "id": "AnalyserNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AnalyserNode-methods", "title": "Methods", "number": "1.8.3" }, @@ -7489,7 +6711,7 @@ }, { "id": "dom-analysernode-getbytetimedomaindata", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-getbytetimedomaindata", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-getbytetimedomaindata", "linkingText": [ "getByteTimeDomainData(array)" ], @@ -7502,7 +6724,7 @@ "informative": false, "heading": { "id": "AnalyserNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AnalyserNode-methods", "title": "Methods", "number": "1.8.3" }, @@ -7510,7 +6732,7 @@ }, { "id": "dom-analysernode-getbytetimedomaindata-array", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-getbytetimedomaindata-array", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-getbytetimedomaindata-array", "linkingText": [ "array" ], @@ -7523,7 +6745,7 @@ "informative": false, "heading": { "id": "AnalyserNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AnalyserNode-methods", "title": "Methods", "number": "1.8.3" }, @@ -7531,7 +6753,7 @@ }, { "id": "dom-analysernode-getfloatfrequencydata", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-getfloatfrequencydata", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-getfloatfrequencydata", "linkingText": [ "getFloatFrequencyData(array)" ], @@ -7544,7 +6766,7 @@ "informative": false, "heading": { "id": "AnalyserNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AnalyserNode-methods", "title": "Methods", "number": "1.8.3" }, @@ -7552,7 +6774,7 @@ }, { "id": "dom-analysernode-getfloatfrequencydata-array", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-getfloatfrequencydata-array", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-getfloatfrequencydata-array", "linkingText": [ "array" ], @@ -7565,7 +6787,7 @@ "informative": false, "heading": { "id": "AnalyserNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AnalyserNode-methods", "title": "Methods", "number": "1.8.3" }, @@ -7573,7 +6795,7 @@ }, { "id": "dom-analysernode-getfloattimedomaindata", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-getfloattimedomaindata", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-getfloattimedomaindata", "linkingText": [ "getFloatTimeDomainData(array)" ], @@ -7586,7 +6808,7 @@ "informative": false, "heading": { "id": "AnalyserNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AnalyserNode-methods", "title": "Methods", "number": "1.8.3" }, @@ -7594,7 +6816,7 @@ }, { "id": "dom-analysernode-getfloattimedomaindata-array", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-getfloattimedomaindata-array", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-getfloattimedomaindata-array", "linkingText": [ "array" ], @@ -7607,7 +6829,7 @@ "informative": false, "heading": { "id": "AnalyserNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AnalyserNode-methods", "title": "Methods", "number": "1.8.3" }, @@ -7615,9 +6837,9 @@ }, { "id": "AnalyserOptions", - "href": "https://www.w3.org/TR/webaudio/#AnalyserOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#AnalyserOptions", "linkingText": [ - "AnalyserOptions" + "analyseroptions" ], "localLinkingText": [], "type": "dictionary", @@ -7626,15 +6848,34 @@ "informative": false, "heading": { "id": "AnalyserOptions", - "href": "https://www.w3.org/TR/webaudio/#AnalyserOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#AnalyserOptions", "title": "AnalyserOptions", "number": "1.8.4" }, "definedIn": "heading" }, + { + "id": "dictdef-analyseroptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictdef-analyseroptions", + "linkingText": [ + "AnalyserOptions" + ], + "localLinkingText": [], + "type": "dictionary", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "AnalyserOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#AnalyserOptions", + "title": "AnalyserOptions", + "number": "1.8.4" + }, + "definedIn": "pre" + }, { "id": "dom-analyseroptions-fftsize", - "href": "https://www.w3.org/TR/webaudio/#dom-analyseroptions-fftsize", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-analyseroptions-fftsize", "linkingText": [ "fftSize" ], @@ -7647,7 +6888,7 @@ "informative": false, "heading": { "id": "dictionary-analyseroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-analyseroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-analyseroptions-members", "title": "Dictionary AnalyserOptions Members", "number": "1.8.4.1" }, @@ -7655,7 +6896,7 @@ }, { "id": "dom-analyseroptions-maxdecibels", - "href": "https://www.w3.org/TR/webaudio/#dom-analyseroptions-maxdecibels", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-analyseroptions-maxdecibels", "linkingText": [ "maxDecibels" ], @@ -7668,7 +6909,7 @@ "informative": false, "heading": { "id": "dictionary-analyseroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-analyseroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-analyseroptions-members", "title": "Dictionary AnalyserOptions Members", "number": "1.8.4.1" }, @@ -7676,7 +6917,7 @@ }, { "id": "dom-analyseroptions-mindecibels", - "href": "https://www.w3.org/TR/webaudio/#dom-analyseroptions-mindecibels", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-analyseroptions-mindecibels", "linkingText": [ "minDecibels" ], @@ -7689,7 +6930,7 @@ "informative": false, "heading": { "id": "dictionary-analyseroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-analyseroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-analyseroptions-members", "title": "Dictionary AnalyserOptions Members", "number": "1.8.4.1" }, @@ -7697,7 +6938,7 @@ }, { "id": "dom-analyseroptions-smoothingtimeconstant", - "href": "https://www.w3.org/TR/webaudio/#dom-analyseroptions-smoothingtimeconstant", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-analyseroptions-smoothingtimeconstant", "linkingText": [ "smoothingTimeConstant" ], @@ -7710,7 +6951,7 @@ "informative": false, "heading": { "id": "dictionary-analyseroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-analyseroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-analyseroptions-members", "title": "Dictionary AnalyserOptions Members", "number": "1.8.4.1" }, @@ -7718,7 +6959,7 @@ }, { "id": "current-time-domain-data", - "href": "https://www.w3.org/TR/webaudio/#current-time-domain-data", + "href": "https://www.w3.org/TR/webaudio-1.0/#current-time-domain-data", "linkingText": [ "current time-domain data" ], @@ -7729,7 +6970,7 @@ "informative": false, "heading": { "id": "time-domain-down-mixing", - "href": "https://www.w3.org/TR/webaudio/#time-domain-down-mixing", + "href": "https://www.w3.org/TR/webaudio-1.0/#time-domain-down-mixing", "title": "Time-Domain Down-Mixing", "number": "1.8.5" }, @@ -7737,7 +6978,7 @@ }, { "id": "current-frequency-data", - "href": "https://www.w3.org/TR/webaudio/#current-frequency-data", + "href": "https://www.w3.org/TR/webaudio-1.0/#current-frequency-data", "linkingText": [ "current frequency data" ], @@ -7748,7 +6989,7 @@ "informative": false, "heading": { "id": "fft-windowing-and-smoothing-over-time", - "href": "https://www.w3.org/TR/webaudio/#fft-windowing-and-smoothing-over-time", + "href": "https://www.w3.org/TR/webaudio-1.0/#fft-windowing-and-smoothing-over-time", "title": "FFT Windowing and Smoothing over Time", "number": "1.8.6" }, @@ -7756,7 +6997,7 @@ }, { "id": "blackman-window", - "href": "https://www.w3.org/TR/webaudio/#blackman-window", + "href": "https://www.w3.org/TR/webaudio-1.0/#blackman-window", "linkingText": [ "Applying a Blackman window" ], @@ -7767,7 +7008,7 @@ "informative": false, "heading": { "id": "fft-windowing-and-smoothing-over-time", - "href": "https://www.w3.org/TR/webaudio/#fft-windowing-and-smoothing-over-time", + "href": "https://www.w3.org/TR/webaudio-1.0/#fft-windowing-and-smoothing-over-time", "title": "FFT Windowing and Smoothing over Time", "number": "1.8.6" }, @@ -7775,7 +7016,7 @@ }, { "id": "fourier-transform", - "href": "https://www.w3.org/TR/webaudio/#fourier-transform", + "href": "https://www.w3.org/TR/webaudio-1.0/#fourier-transform", "linkingText": [ "Applying a Fourier transform" ], @@ -7786,7 +7027,7 @@ "informative": false, "heading": { "id": "fft-windowing-and-smoothing-over-time", - "href": "https://www.w3.org/TR/webaudio/#fft-windowing-and-smoothing-over-time", + "href": "https://www.w3.org/TR/webaudio-1.0/#fft-windowing-and-smoothing-over-time", "title": "FFT Windowing and Smoothing over Time", "number": "1.8.6" }, @@ -7794,7 +7035,7 @@ }, { "id": "smoothing-over-time", - "href": "https://www.w3.org/TR/webaudio/#smoothing-over-time", + "href": "https://www.w3.org/TR/webaudio-1.0/#smoothing-over-time", "linkingText": [ "Smoothing over time" ], @@ -7805,7 +7046,7 @@ "informative": false, "heading": { "id": "fft-windowing-and-smoothing-over-time", - "href": "https://www.w3.org/TR/webaudio/#fft-windowing-and-smoothing-over-time", + "href": "https://www.w3.org/TR/webaudio-1.0/#fft-windowing-and-smoothing-over-time", "title": "FFT Windowing and Smoothing over Time", "number": "1.8.6" }, @@ -7813,7 +7054,7 @@ }, { "id": "previous-block", - "href": "https://www.w3.org/TR/webaudio/#previous-block", + "href": "https://www.w3.org/TR/webaudio-1.0/#previous-block", "linkingText": [ "previous block" ], @@ -7824,7 +7065,7 @@ "informative": false, "heading": { "id": "fft-windowing-and-smoothing-over-time", - "href": "https://www.w3.org/TR/webaudio/#fft-windowing-and-smoothing-over-time", + "href": "https://www.w3.org/TR/webaudio-1.0/#fft-windowing-and-smoothing-over-time", "title": "FFT Windowing and Smoothing over Time", "number": "1.8.6" }, @@ -7832,7 +7073,7 @@ }, { "id": "conversion-to-db", - "href": "https://www.w3.org/TR/webaudio/#conversion-to-db", + "href": "https://www.w3.org/TR/webaudio-1.0/#conversion-to-db", "linkingText": [ "Conversion to dB" ], @@ -7843,7 +7084,7 @@ "informative": false, "heading": { "id": "fft-windowing-and-smoothing-over-time", - "href": "https://www.w3.org/TR/webaudio/#fft-windowing-and-smoothing-over-time", + "href": "https://www.w3.org/TR/webaudio-1.0/#fft-windowing-and-smoothing-over-time", "title": "FFT Windowing and Smoothing over Time", "number": "1.8.6" }, @@ -7851,9 +7092,9 @@ }, { "id": "AudioBufferSourceNode", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceNode", "linkingText": [ - "AudioBufferSourceNode" + "audiobuffersourcenode" ], "localLinkingText": [], "type": "interface", @@ -7862,7 +7103,7 @@ "informative": false, "heading": { "id": "AudioBufferSourceNode", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceNode", "title": "The AudioBufferSourceNode Interface", "number": "1.9" }, @@ -7870,7 +7111,7 @@ }, { "id": "playhead-position", - "href": "https://www.w3.org/TR/webaudio/#playhead-position", + "href": "https://www.w3.org/TR/webaudio-1.0/#playhead-position", "linkingText": [ "playhead position" ], @@ -7881,7 +7122,7 @@ "informative": false, "heading": { "id": "AudioBufferSourceNode", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceNode", "title": "The AudioBufferSourceNode Interface", "number": "1.9" }, @@ -7889,7 +7130,7 @@ }, { "id": "computedplaybackrate", - "href": "https://www.w3.org/TR/webaudio/#computedplaybackrate", + "href": "https://www.w3.org/TR/webaudio-1.0/#computedplaybackrate", "linkingText": [ "computedPlaybackRate" ], @@ -7900,7 +7141,7 @@ "informative": false, "heading": { "id": "AudioBufferSourceNode", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceNode", "title": "The AudioBufferSourceNode Interface", "number": "1.9" }, @@ -7908,12 +7149,55 @@ }, { "id": "dom-audiobuffersourcenode-buffer-set-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-buffer-set-slot", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-buffer-set-slot", "linkingText": [ "[[buffer set]]" ], "localLinkingText": [], - "type": "attribute", + "type": "attribute", + "for": [ + "AudioBufferSourceNode" + ], + "access": "public", + "informative": false, + "heading": { + "id": "AudioBufferSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceNode", + "title": "The AudioBufferSourceNode Interface", + "number": "1.9" + }, + "definedIn": "prose" + }, + { + "id": "audiobuffersourcenode", + "href": "https://www.w3.org/TR/webaudio-1.0/#audiobuffersourcenode", + "linkingText": [ + "AudioBufferSourceNode" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "AudioBufferSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceNode", + "title": "The AudioBufferSourceNode Interface", + "number": "1.9" + }, + "definedIn": "pre" + }, + { + "id": "dom-audiobuffersourcenode-audiobuffersourcenode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-audiobuffersourcenode", + "linkingText": [ + "AudioBufferSourceNode(context, options)", + "constructor(context, options)", + "AudioBufferSourceNode(context)", + "constructor(context)" + ], + "localLinkingText": [], + "type": "constructor", "for": [ "AudioBufferSourceNode" ], @@ -7921,15 +7205,15 @@ "informative": false, "heading": { "id": "AudioBufferSourceNode", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceNode", "title": "The AudioBufferSourceNode Interface", "number": "1.9" }, - "definedIn": "prose" + "definedIn": "pre" }, { "id": "dom-audiobuffersourcenode-audiobuffersourcenode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-audiobuffersourcenode-context-options-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-audiobuffersourcenode-context-options-context", "linkingText": [ "context" ], @@ -7945,7 +7229,7 @@ "informative": false, "heading": { "id": "AudioBufferSourceNode", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceNode", "title": "The AudioBufferSourceNode Interface", "number": "1.9" }, @@ -7953,7 +7237,7 @@ }, { "id": "dom-audiobuffersourcenode-audiobuffersourcenode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-audiobuffersourcenode-context-options-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-audiobuffersourcenode-context-options-options", "linkingText": [ "options" ], @@ -7969,31 +7253,28 @@ "informative": false, "heading": { "id": "AudioBufferSourceNode", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceNode", "title": "The AudioBufferSourceNode Interface", "number": "1.9" }, "definedIn": "pre" }, { - "id": "dom-audiobuffersourcenode-audiobuffersourcenode", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-audiobuffersourcenode", + "id": "dom-audiobuffersourcenode-constructor-audiobuffersourcenode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-constructor-audiobuffersourcenode", "linkingText": [ - "AudioBufferSourceNode(context, options)", - "constructor(context, options)", - "AudioBufferSourceNode(context)", - "constructor(context)" + "AudioBufferSourceNode(context, options)" ], "localLinkingText": [], - "type": "constructor", + "type": "method", "for": [ - "AudioBufferSourceNode" + "AudioBufferSourceNode/constructor" ], "access": "public", "informative": false, "heading": { "id": "AudioBufferSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceNode-constructors", "title": "Constructors", "number": "1.9.1" }, @@ -8001,7 +7282,7 @@ }, { "id": "dom-audiobuffersourcenode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-constructor-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-constructor-context", "linkingText": [ "context" ], @@ -8014,7 +7295,7 @@ "informative": false, "heading": { "id": "AudioBufferSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceNode-constructors", "title": "Constructors", "number": "1.9.1" }, @@ -8022,7 +7303,7 @@ }, { "id": "dom-audiobuffersourcenode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-constructor-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-constructor-options", "linkingText": [ "options" ], @@ -8035,7 +7316,7 @@ "informative": false, "heading": { "id": "AudioBufferSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceNode-constructors", "title": "Constructors", "number": "1.9.1" }, @@ -8043,7 +7324,7 @@ }, { "id": "dom-audiobuffersourcenode-buffer", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-buffer", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-buffer", "linkingText": [ "buffer" ], @@ -8056,7 +7337,7 @@ "informative": false, "heading": { "id": "AudioBufferSourceNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceNode-attributes", "title": "Attributes", "number": "1.9.2" }, @@ -8064,7 +7345,7 @@ }, { "id": "dom-audiobuffersourcenode-detune", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-detune", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-detune", "linkingText": [ "detune" ], @@ -8077,7 +7358,7 @@ "informative": false, "heading": { "id": "AudioBufferSourceNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceNode-attributes", "title": "Attributes", "number": "1.9.2" }, @@ -8085,7 +7366,7 @@ }, { "id": "dom-audiobuffersourcenode-loop", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-loop", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-loop", "linkingText": [ "loop" ], @@ -8098,7 +7379,7 @@ "informative": false, "heading": { "id": "AudioBufferSourceNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceNode-attributes", "title": "Attributes", "number": "1.9.2" }, @@ -8106,7 +7387,7 @@ }, { "id": "dom-audiobuffersourcenode-loopend", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-loopend", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-loopend", "linkingText": [ "loopEnd" ], @@ -8119,7 +7400,7 @@ "informative": false, "heading": { "id": "AudioBufferSourceNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceNode-attributes", "title": "Attributes", "number": "1.9.2" }, @@ -8127,7 +7408,7 @@ }, { "id": "dom-audiobuffersourcenode-loopstart", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-loopstart", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-loopstart", "linkingText": [ "loopStart" ], @@ -8140,7 +7421,7 @@ "informative": false, "heading": { "id": "AudioBufferSourceNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceNode-attributes", "title": "Attributes", "number": "1.9.2" }, @@ -8148,7 +7429,7 @@ }, { "id": "dom-audiobuffersourcenode-playbackrate", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-playbackrate", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-playbackrate", "linkingText": [ "playbackRate" ], @@ -8161,7 +7442,7 @@ "informative": false, "heading": { "id": "AudioBufferSourceNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceNode-attributes", "title": "Attributes", "number": "1.9.2" }, @@ -8169,7 +7450,7 @@ }, { "id": "dom-audiobuffersourcenode-start", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-start", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-start", "linkingText": [ "start(when, offset, duration)", "start(when, offset)", @@ -8185,7 +7466,7 @@ "informative": false, "heading": { "id": "AudioBufferSourceNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceNode-methods", "title": "Methods", "number": "1.9.3" }, @@ -8193,7 +7474,7 @@ }, { "id": "dom-audiobuffersourcenode-start-when-offset-duration-when", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-start-when-offset-duration-when", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-start-when-offset-duration-when", "linkingText": [ "when" ], @@ -8206,7 +7487,7 @@ "informative": false, "heading": { "id": "AudioBufferSourceNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceNode-methods", "title": "Methods", "number": "1.9.3" }, @@ -8214,7 +7495,7 @@ }, { "id": "dom-audiobuffersourcenode-start-when-offset-duration-offset", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-start-when-offset-duration-offset", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-start-when-offset-duration-offset", "linkingText": [ "offset" ], @@ -8227,7 +7508,7 @@ "informative": false, "heading": { "id": "AudioBufferSourceNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceNode-methods", "title": "Methods", "number": "1.9.3" }, @@ -8235,7 +7516,7 @@ }, { "id": "dom-audiobuffersourcenode-start-when-offset-duration-duration", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-start-when-offset-duration-duration", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-start-when-offset-duration-duration", "linkingText": [ "duration" ], @@ -8248,7 +7529,7 @@ "informative": false, "heading": { "id": "AudioBufferSourceNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceNode-methods", "title": "Methods", "number": "1.9.3" }, @@ -8256,9 +7537,9 @@ }, { "id": "AudioBufferSourceOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceOptions", "linkingText": [ - "AudioBufferSourceOptions" + "audiobuffersourceoptions" ], "localLinkingText": [], "type": "dictionary", @@ -8267,15 +7548,34 @@ "informative": false, "heading": { "id": "AudioBufferSourceOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceOptions", "title": "AudioBufferSourceOptions", "number": "1.9.4" }, "definedIn": "heading" }, + { + "id": "dictdef-audiobuffersourceoptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictdef-audiobuffersourceoptions", + "linkingText": [ + "AudioBufferSourceOptions" + ], + "localLinkingText": [], + "type": "dictionary", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "AudioBufferSourceOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceOptions", + "title": "AudioBufferSourceOptions", + "number": "1.9.4" + }, + "definedIn": "pre" + }, { "id": "dom-audiobuffersourceoptions-buffer", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourceoptions-buffer", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourceoptions-buffer", "linkingText": [ "buffer" ], @@ -8288,7 +7588,7 @@ "informative": false, "heading": { "id": "dictionary-audiobuffersourceoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiobuffersourceoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audiobuffersourceoptions-members", "title": "Dictionary AudioBufferSourceOptions Members", "number": "1.9.4.1" }, @@ -8296,7 +7596,7 @@ }, { "id": "dom-audiobuffersourceoptions-detune", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourceoptions-detune", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourceoptions-detune", "linkingText": [ "detune" ], @@ -8309,7 +7609,7 @@ "informative": false, "heading": { "id": "dictionary-audiobuffersourceoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiobuffersourceoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audiobuffersourceoptions-members", "title": "Dictionary AudioBufferSourceOptions Members", "number": "1.9.4.1" }, @@ -8317,7 +7617,7 @@ }, { "id": "dom-audiobuffersourceoptions-loop", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourceoptions-loop", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourceoptions-loop", "linkingText": [ "loop" ], @@ -8330,7 +7630,7 @@ "informative": false, "heading": { "id": "dictionary-audiobuffersourceoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiobuffersourceoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audiobuffersourceoptions-members", "title": "Dictionary AudioBufferSourceOptions Members", "number": "1.9.4.1" }, @@ -8338,7 +7638,7 @@ }, { "id": "dom-audiobuffersourceoptions-loopend", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourceoptions-loopend", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourceoptions-loopend", "linkingText": [ "loopEnd" ], @@ -8351,7 +7651,7 @@ "informative": false, "heading": { "id": "dictionary-audiobuffersourceoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiobuffersourceoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audiobuffersourceoptions-members", "title": "Dictionary AudioBufferSourceOptions Members", "number": "1.9.4.1" }, @@ -8359,7 +7659,7 @@ }, { "id": "dom-audiobuffersourceoptions-loopstart", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourceoptions-loopstart", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourceoptions-loopstart", "linkingText": [ "loopStart" ], @@ -8372,7 +7672,7 @@ "informative": false, "heading": { "id": "dictionary-audiobuffersourceoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiobuffersourceoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audiobuffersourceoptions-members", "title": "Dictionary AudioBufferSourceOptions Members", "number": "1.9.4.1" }, @@ -8380,7 +7680,7 @@ }, { "id": "dom-audiobuffersourceoptions-playbackrate", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourceoptions-playbackrate", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourceoptions-playbackrate", "linkingText": [ "playbackRate" ], @@ -8393,7 +7693,7 @@ "informative": false, "heading": { "id": "dictionary-audiobuffersourceoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiobuffersourceoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audiobuffersourceoptions-members", "title": "Dictionary AudioBufferSourceOptions Members", "number": "1.9.4.1" }, @@ -8401,9 +7701,9 @@ }, { "id": "AudioDestinationNode", - "href": "https://www.w3.org/TR/webaudio/#AudioDestinationNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioDestinationNode", "linkingText": [ - "AudioDestinationNode" + "audiodestinationnode" ], "localLinkingText": [], "type": "interface", @@ -8412,15 +7712,34 @@ "informative": false, "heading": { "id": "AudioDestinationNode", - "href": "https://www.w3.org/TR/webaudio/#AudioDestinationNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioDestinationNode", "title": "The AudioDestinationNode Interface", "number": "1.10" }, "definedIn": "heading" }, + { + "id": "audiodestinationnode", + "href": "https://www.w3.org/TR/webaudio-1.0/#audiodestinationnode", + "linkingText": [ + "AudioDestinationNode" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "AudioDestinationNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioDestinationNode", + "title": "The AudioDestinationNode Interface", + "number": "1.10" + }, + "definedIn": "pre" + }, { "id": "dom-audiodestinationnode-maxchannelcount", - "href": "https://www.w3.org/TR/webaudio/#dom-audiodestinationnode-maxchannelcount", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiodestinationnode-maxchannelcount", "linkingText": [ "maxChannelCount" ], @@ -8433,7 +7752,7 @@ "informative": false, "heading": { "id": "AudioDestinationNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioDestinationNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioDestinationNode-attributes", "title": "Attributes", "number": "1.10.1" }, @@ -8441,9 +7760,9 @@ }, { "id": "AudioListener", - "href": "https://www.w3.org/TR/webaudio/#AudioListener", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener", "linkingText": [ - "AudioListener" + "audiolistener" ], "localLinkingText": [], "type": "interface", @@ -8452,15 +7771,34 @@ "informative": false, "heading": { "id": "AudioListener", - "href": "https://www.w3.org/TR/webaudio/#AudioListener", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener", "title": "The AudioListener Interface", "number": "1.11" }, "definedIn": "heading" }, + { + "id": "audiolistener", + "href": "https://www.w3.org/TR/webaudio-1.0/#audiolistener", + "linkingText": [ + "AudioListener" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "AudioListener", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener", + "title": "The AudioListener Interface", + "number": "1.11" + }, + "definedIn": "pre" + }, { "id": "dom-audiolistener-setposition-x-y-z-x", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setposition-x-y-z-x", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setposition-x-y-z-x", "linkingText": [ "x" ], @@ -8473,7 +7811,7 @@ "informative": false, "heading": { "id": "AudioListener", - "href": "https://www.w3.org/TR/webaudio/#AudioListener", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener", "title": "The AudioListener Interface", "number": "1.11" }, @@ -8481,7 +7819,7 @@ }, { "id": "dom-audiolistener-setposition-x-y-z-y", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setposition-x-y-z-y", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setposition-x-y-z-y", "linkingText": [ "y" ], @@ -8494,7 +7832,7 @@ "informative": false, "heading": { "id": "AudioListener", - "href": "https://www.w3.org/TR/webaudio/#AudioListener", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener", "title": "The AudioListener Interface", "number": "1.11" }, @@ -8502,7 +7840,7 @@ }, { "id": "dom-audiolistener-setposition-x-y-z-z", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setposition-x-y-z-z", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setposition-x-y-z-z", "linkingText": [ "z" ], @@ -8515,7 +7853,7 @@ "informative": false, "heading": { "id": "AudioListener", - "href": "https://www.w3.org/TR/webaudio/#AudioListener", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener", "title": "The AudioListener Interface", "number": "1.11" }, @@ -8523,7 +7861,7 @@ }, { "id": "dom-audiolistener-setorientation-x-y-z-xup-yup-zup-x", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-x", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-x", "linkingText": [ "x" ], @@ -8536,7 +7874,7 @@ "informative": false, "heading": { "id": "AudioListener", - "href": "https://www.w3.org/TR/webaudio/#AudioListener", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener", "title": "The AudioListener Interface", "number": "1.11" }, @@ -8544,7 +7882,7 @@ }, { "id": "dom-audiolistener-setorientation-x-y-z-xup-yup-zup-y", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-y", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-y", "linkingText": [ "y" ], @@ -8557,7 +7895,7 @@ "informative": false, "heading": { "id": "AudioListener", - "href": "https://www.w3.org/TR/webaudio/#AudioListener", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener", "title": "The AudioListener Interface", "number": "1.11" }, @@ -8565,7 +7903,7 @@ }, { "id": "dom-audiolistener-setorientation-x-y-z-xup-yup-zup-z", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-z", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-z", "linkingText": [ "z" ], @@ -8578,7 +7916,7 @@ "informative": false, "heading": { "id": "AudioListener", - "href": "https://www.w3.org/TR/webaudio/#AudioListener", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener", "title": "The AudioListener Interface", "number": "1.11" }, @@ -8586,7 +7924,7 @@ }, { "id": "dom-audiolistener-setorientation-x-y-z-xup-yup-zup-xup", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-xup", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-xup", "linkingText": [ "xUp" ], @@ -8599,7 +7937,7 @@ "informative": false, "heading": { "id": "AudioListener", - "href": "https://www.w3.org/TR/webaudio/#AudioListener", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener", "title": "The AudioListener Interface", "number": "1.11" }, @@ -8607,7 +7945,7 @@ }, { "id": "dom-audiolistener-setorientation-x-y-z-xup-yup-zup-yup", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-yup", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-yup", "linkingText": [ "yUp" ], @@ -8620,7 +7958,7 @@ "informative": false, "heading": { "id": "AudioListener", - "href": "https://www.w3.org/TR/webaudio/#AudioListener", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener", "title": "The AudioListener Interface", "number": "1.11" }, @@ -8628,7 +7966,7 @@ }, { "id": "dom-audiolistener-setorientation-x-y-z-xup-yup-zup-zup", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-zup", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-zup", "linkingText": [ "zUp" ], @@ -8641,7 +7979,7 @@ "informative": false, "heading": { "id": "AudioListener", - "href": "https://www.w3.org/TR/webaudio/#AudioListener", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener", "title": "The AudioListener Interface", "number": "1.11" }, @@ -8649,7 +7987,7 @@ }, { "id": "dom-audiolistener-forwardx", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-forwardx", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-forwardx", "linkingText": [ "forwardX" ], @@ -8662,7 +8000,7 @@ "informative": false, "heading": { "id": "AudioListener-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener-attributes", "title": "Attributes", "number": "1.11.1" }, @@ -8670,7 +8008,7 @@ }, { "id": "dom-audiolistener-forwardy", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-forwardy", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-forwardy", "linkingText": [ "forwardY" ], @@ -8683,7 +8021,7 @@ "informative": false, "heading": { "id": "AudioListener-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener-attributes", "title": "Attributes", "number": "1.11.1" }, @@ -8691,7 +8029,7 @@ }, { "id": "dom-audiolistener-forwardz", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-forwardz", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-forwardz", "linkingText": [ "forwardZ" ], @@ -8704,7 +8042,7 @@ "informative": false, "heading": { "id": "AudioListener-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener-attributes", "title": "Attributes", "number": "1.11.1" }, @@ -8712,7 +8050,7 @@ }, { "id": "dom-audiolistener-positionx", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-positionx", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-positionx", "linkingText": [ "positionX" ], @@ -8725,7 +8063,7 @@ "informative": false, "heading": { "id": "AudioListener-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener-attributes", "title": "Attributes", "number": "1.11.1" }, @@ -8733,7 +8071,7 @@ }, { "id": "dom-audiolistener-positiony", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-positiony", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-positiony", "linkingText": [ "positionY" ], @@ -8746,7 +8084,7 @@ "informative": false, "heading": { "id": "AudioListener-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener-attributes", "title": "Attributes", "number": "1.11.1" }, @@ -8754,7 +8092,7 @@ }, { "id": "dom-audiolistener-positionz", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-positionz", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-positionz", "linkingText": [ "positionZ" ], @@ -8767,7 +8105,7 @@ "informative": false, "heading": { "id": "AudioListener-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener-attributes", "title": "Attributes", "number": "1.11.1" }, @@ -8775,7 +8113,7 @@ }, { "id": "dom-audiolistener-upx", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-upx", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-upx", "linkingText": [ "upX" ], @@ -8788,7 +8126,7 @@ "informative": false, "heading": { "id": "AudioListener-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener-attributes", "title": "Attributes", "number": "1.11.1" }, @@ -8796,7 +8134,7 @@ }, { "id": "dom-audiolistener-upy", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-upy", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-upy", "linkingText": [ "upY" ], @@ -8809,7 +8147,7 @@ "informative": false, "heading": { "id": "AudioListener-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener-attributes", "title": "Attributes", "number": "1.11.1" }, @@ -8817,7 +8155,7 @@ }, { "id": "dom-audiolistener-upz", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-upz", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-upz", "linkingText": [ "upZ" ], @@ -8830,7 +8168,7 @@ "informative": false, "heading": { "id": "AudioListener-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener-attributes", "title": "Attributes", "number": "1.11.1" }, @@ -8838,7 +8176,7 @@ }, { "id": "dom-audiolistener-setorientation", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setorientation", "linkingText": [ "setOrientation(x, y, z, xUp, yUp, zUp)" ], @@ -8851,7 +8189,7 @@ "informative": false, "heading": { "id": "AudioListener-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener-methods", "title": "Methods", "number": "1.11.2" }, @@ -8859,7 +8197,7 @@ }, { "id": "audiolistener-forward", - "href": "https://www.w3.org/TR/webaudio/#audiolistener-forward", + "href": "https://www.w3.org/TR/webaudio-1.0/#audiolistener-forward", "linkingText": [ "forward" ], @@ -8872,7 +8210,7 @@ "informative": false, "heading": { "id": "AudioListener-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener-methods", "title": "Methods", "number": "1.11.2" }, @@ -8880,7 +8218,7 @@ }, { "id": "audiolistener-up", - "href": "https://www.w3.org/TR/webaudio/#audiolistener-up", + "href": "https://www.w3.org/TR/webaudio-1.0/#audiolistener-up", "linkingText": [ "up" ], @@ -8893,7 +8231,7 @@ "informative": false, "heading": { "id": "AudioListener-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener-methods", "title": "Methods", "number": "1.11.2" }, @@ -8901,7 +8239,7 @@ }, { "id": "dom-audiolistener-setorientation-x", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-x", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setorientation-x", "linkingText": [ "x" ], @@ -8914,7 +8252,7 @@ "informative": false, "heading": { "id": "AudioListener-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener-methods", "title": "Methods", "number": "1.11.2" }, @@ -8922,7 +8260,7 @@ }, { "id": "dom-audiolistener-setorientation-y", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-y", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setorientation-y", "linkingText": [ "y" ], @@ -8935,7 +8273,7 @@ "informative": false, "heading": { "id": "AudioListener-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener-methods", "title": "Methods", "number": "1.11.2" }, @@ -8943,7 +8281,7 @@ }, { "id": "dom-audiolistener-setorientation-z", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-z", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setorientation-z", "linkingText": [ "z" ], @@ -8956,7 +8294,7 @@ "informative": false, "heading": { "id": "AudioListener-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener-methods", "title": "Methods", "number": "1.11.2" }, @@ -8964,7 +8302,7 @@ }, { "id": "dom-audiolistener-setorientation-xup", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-xup", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setorientation-xup", "linkingText": [ "xUp" ], @@ -8977,7 +8315,7 @@ "informative": false, "heading": { "id": "AudioListener-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener-methods", "title": "Methods", "number": "1.11.2" }, @@ -8985,7 +8323,7 @@ }, { "id": "dom-audiolistener-setorientation-yup", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-yup", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setorientation-yup", "linkingText": [ "yUp" ], @@ -8998,7 +8336,7 @@ "informative": false, "heading": { "id": "AudioListener-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener-methods", "title": "Methods", "number": "1.11.2" }, @@ -9006,7 +8344,7 @@ }, { "id": "dom-audiolistener-setorientation-zup", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-zup", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setorientation-zup", "linkingText": [ "zUp" ], @@ -9019,7 +8357,7 @@ "informative": false, "heading": { "id": "AudioListener-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener-methods", "title": "Methods", "number": "1.11.2" }, @@ -9027,7 +8365,7 @@ }, { "id": "dom-audiolistener-setposition", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setposition", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setposition", "linkingText": [ "setPosition(x, y, z)" ], @@ -9040,7 +8378,7 @@ "informative": false, "heading": { "id": "AudioListener-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener-methods", "title": "Methods", "number": "1.11.2" }, @@ -9048,7 +8386,7 @@ }, { "id": "dom-audiolistener-setposition-x", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setposition-x", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setposition-x", "linkingText": [ "x" ], @@ -9061,7 +8399,7 @@ "informative": false, "heading": { "id": "AudioListener-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener-methods", "title": "Methods", "number": "1.11.2" }, @@ -9069,7 +8407,7 @@ }, { "id": "dom-audiolistener-setposition-y", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setposition-y", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setposition-y", "linkingText": [ "y" ], @@ -9082,7 +8420,7 @@ "informative": false, "heading": { "id": "AudioListener-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener-methods", "title": "Methods", "number": "1.11.2" }, @@ -9090,7 +8428,7 @@ }, { "id": "dom-audiolistener-setposition-z", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setposition-z", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setposition-z", "linkingText": [ "z" ], @@ -9103,7 +8441,7 @@ "informative": false, "heading": { "id": "AudioListener-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener-methods", "title": "Methods", "number": "1.11.2" }, @@ -9111,9 +8449,9 @@ }, { "id": "AudioProcessingEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioProcessingEvent", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioProcessingEvent", "linkingText": [ - "AudioProcessingEvent" + "audioprocessingevent" ], "localLinkingText": [], "type": "interface", @@ -9122,15 +8460,34 @@ "informative": false, "heading": { "id": "AudioProcessingEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioProcessingEvent", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioProcessingEvent", "title": "The AudioProcessingEvent Interface - DEPRECATED", "number": "1.12" }, "definedIn": "heading" }, + { + "id": "audioprocessingevent", + "href": "https://www.w3.org/TR/webaudio-1.0/#audioprocessingevent", + "linkingText": [ + "AudioProcessingEvent" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "AudioProcessingEvent", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioProcessingEvent", + "title": "The AudioProcessingEvent Interface - DEPRECATED", + "number": "1.12" + }, + "definedIn": "pre" + }, { "id": "dom-audioprocessingevent-audioprocessingevent", - "href": "https://www.w3.org/TR/webaudio/#dom-audioprocessingevent-audioprocessingevent", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioprocessingevent-audioprocessingevent", "linkingText": [ "AudioProcessingEvent(type, eventInitDict)", "constructor(type, eventInitDict)" @@ -9144,7 +8501,7 @@ "informative": false, "heading": { "id": "AudioProcessingEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioProcessingEvent", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioProcessingEvent", "title": "The AudioProcessingEvent Interface - DEPRECATED", "number": "1.12" }, @@ -9152,7 +8509,7 @@ }, { "id": "dom-audioprocessingevent-audioprocessingevent-type-eventinitdict-type", - "href": "https://www.w3.org/TR/webaudio/#dom-audioprocessingevent-audioprocessingevent-type-eventinitdict-type", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioprocessingevent-audioprocessingevent-type-eventinitdict-type", "linkingText": [ "type" ], @@ -9166,7 +8523,7 @@ "informative": false, "heading": { "id": "AudioProcessingEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioProcessingEvent", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioProcessingEvent", "title": "The AudioProcessingEvent Interface - DEPRECATED", "number": "1.12" }, @@ -9174,7 +8531,7 @@ }, { "id": "dom-audioprocessingevent-audioprocessingevent-type-eventinitdict-eventinitdict", - "href": "https://www.w3.org/TR/webaudio/#dom-audioprocessingevent-audioprocessingevent-type-eventinitdict-eventinitdict", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioprocessingevent-audioprocessingevent-type-eventinitdict-eventinitdict", "linkingText": [ "eventInitDict" ], @@ -9188,7 +8545,7 @@ "informative": false, "heading": { "id": "AudioProcessingEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioProcessingEvent", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioProcessingEvent", "title": "The AudioProcessingEvent Interface - DEPRECATED", "number": "1.12" }, @@ -9196,7 +8553,7 @@ }, { "id": "dom-audioprocessingevent-inputbuffer", - "href": "https://www.w3.org/TR/webaudio/#dom-audioprocessingevent-inputbuffer", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioprocessingevent-inputbuffer", "linkingText": [ "inputBuffer" ], @@ -9209,7 +8566,7 @@ "informative": false, "heading": { "id": "AudioProcessingEvent-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioProcessingEvent-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioProcessingEvent-attributes", "title": "Attributes", "number": "1.12.1" }, @@ -9217,7 +8574,7 @@ }, { "id": "dom-audioprocessingevent-outputbuffer", - "href": "https://www.w3.org/TR/webaudio/#dom-audioprocessingevent-outputbuffer", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioprocessingevent-outputbuffer", "linkingText": [ "outputBuffer" ], @@ -9230,7 +8587,7 @@ "informative": false, "heading": { "id": "AudioProcessingEvent-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioProcessingEvent-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioProcessingEvent-attributes", "title": "Attributes", "number": "1.12.1" }, @@ -9238,7 +8595,7 @@ }, { "id": "dom-audioprocessingevent-playbacktime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioprocessingevent-playbacktime", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioprocessingevent-playbacktime", "linkingText": [ "playbackTime" ], @@ -9251,7 +8608,7 @@ "informative": false, "heading": { "id": "AudioProcessingEvent-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioProcessingEvent-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioProcessingEvent-attributes", "title": "Attributes", "number": "1.12.1" }, @@ -9259,9 +8616,9 @@ }, { "id": "AudioProcessingEventInit", - "href": "https://www.w3.org/TR/webaudio/#AudioProcessingEventInit", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioProcessingEventInit", "linkingText": [ - "AudioProcessingEventInit" + "audioprocessingeventinit" ], "localLinkingText": [], "type": "dictionary", @@ -9270,15 +8627,34 @@ "informative": false, "heading": { "id": "AudioProcessingEventInit", - "href": "https://www.w3.org/TR/webaudio/#AudioProcessingEventInit", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioProcessingEventInit", "title": "AudioProcessingEventInit", "number": "1.12.2" }, "definedIn": "heading" }, + { + "id": "dictdef-audioprocessingeventinit", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictdef-audioprocessingeventinit", + "linkingText": [ + "AudioProcessingEventInit" + ], + "localLinkingText": [], + "type": "dictionary", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "AudioProcessingEventInit", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioProcessingEventInit", + "title": "AudioProcessingEventInit", + "number": "1.12.2" + }, + "definedIn": "pre" + }, { "id": "dom-audioprocessingeventinit-inputbuffer", - "href": "https://www.w3.org/TR/webaudio/#dom-audioprocessingeventinit-inputbuffer", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioprocessingeventinit-inputbuffer", "linkingText": [ "inputBuffer" ], @@ -9291,7 +8667,7 @@ "informative": false, "heading": { "id": "dictionary-audioprocessingeventinit-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audioprocessingeventinit-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audioprocessingeventinit-members", "title": "Dictionary AudioProcessingEventInit Members", "number": "1.12.2.1" }, @@ -9299,7 +8675,7 @@ }, { "id": "dom-audioprocessingeventinit-outputbuffer", - "href": "https://www.w3.org/TR/webaudio/#dom-audioprocessingeventinit-outputbuffer", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioprocessingeventinit-outputbuffer", "linkingText": [ "outputBuffer" ], @@ -9312,7 +8688,7 @@ "informative": false, "heading": { "id": "dictionary-audioprocessingeventinit-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audioprocessingeventinit-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audioprocessingeventinit-members", "title": "Dictionary AudioProcessingEventInit Members", "number": "1.12.2.1" }, @@ -9320,7 +8696,7 @@ }, { "id": "dom-audioprocessingeventinit-playbacktime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioprocessingeventinit-playbacktime", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioprocessingeventinit-playbacktime", "linkingText": [ "playbackTime" ], @@ -9333,7 +8709,7 @@ "informative": false, "heading": { "id": "dictionary-audioprocessingeventinit-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audioprocessingeventinit-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audioprocessingeventinit-members", "title": "Dictionary AudioProcessingEventInit Members", "number": "1.12.2.1" }, @@ -9341,9 +8717,9 @@ }, { "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode", "linkingText": [ - "BiquadFilterNode" + "biquadfilternode" ], "localLinkingText": [], "type": "interface", @@ -9352,7 +8728,7 @@ "informative": false, "heading": { "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode", "title": "The BiquadFilterNode Interface", "number": "1.13" }, @@ -9360,7 +8736,7 @@ }, { "id": "computedfrequency", - "href": "https://www.w3.org/TR/webaudio/#computedfrequency", + "href": "https://www.w3.org/TR/webaudio-1.0/#computedfrequency", "linkingText": [ "computedFrequency" ], @@ -9371,7 +8747,7 @@ "informative": false, "heading": { "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode", "title": "The BiquadFilterNode Interface", "number": "1.13" }, @@ -9379,7 +8755,7 @@ }, { "id": "enumdef-biquadfiltertype", - "href": "https://www.w3.org/TR/webaudio/#enumdef-biquadfiltertype", + "href": "https://www.w3.org/TR/webaudio-1.0/#enumdef-biquadfiltertype", "linkingText": [ "BiquadFilterType" ], @@ -9390,7 +8766,7 @@ "informative": false, "heading": { "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode", "title": "The BiquadFilterNode Interface", "number": "1.13" }, @@ -9398,7 +8774,7 @@ }, { "id": "dom-biquadfiltertype-lowpass", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-lowpass", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfiltertype-lowpass", "linkingText": [ "\"lowpass\"", "lowpass" @@ -9412,7 +8788,7 @@ "informative": false, "heading": { "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode", "title": "The BiquadFilterNode Interface", "number": "1.13" }, @@ -9420,7 +8796,7 @@ }, { "id": "dom-biquadfiltertype-highpass", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-highpass", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfiltertype-highpass", "linkingText": [ "\"highpass\"", "highpass" @@ -9434,7 +8810,7 @@ "informative": false, "heading": { "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode", "title": "The BiquadFilterNode Interface", "number": "1.13" }, @@ -9442,7 +8818,7 @@ }, { "id": "dom-biquadfiltertype-bandpass", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-bandpass", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfiltertype-bandpass", "linkingText": [ "\"bandpass\"", "bandpass" @@ -9456,7 +8832,7 @@ "informative": false, "heading": { "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode", "title": "The BiquadFilterNode Interface", "number": "1.13" }, @@ -9464,7 +8840,7 @@ }, { "id": "dom-biquadfiltertype-lowshelf", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-lowshelf", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfiltertype-lowshelf", "linkingText": [ "\"lowshelf\"", "lowshelf" @@ -9478,7 +8854,7 @@ "informative": false, "heading": { "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode", "title": "The BiquadFilterNode Interface", "number": "1.13" }, @@ -9486,7 +8862,7 @@ }, { "id": "dom-biquadfiltertype-highshelf", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-highshelf", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfiltertype-highshelf", "linkingText": [ "\"highshelf\"", "highshelf" @@ -9500,7 +8876,7 @@ "informative": false, "heading": { "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode", "title": "The BiquadFilterNode Interface", "number": "1.13" }, @@ -9508,7 +8884,7 @@ }, { "id": "dom-biquadfiltertype-peaking", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-peaking", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfiltertype-peaking", "linkingText": [ "\"peaking\"", "peaking" @@ -9522,7 +8898,7 @@ "informative": false, "heading": { "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode", "title": "The BiquadFilterNode Interface", "number": "1.13" }, @@ -9530,7 +8906,7 @@ }, { "id": "dom-biquadfiltertype-notch", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-notch", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfiltertype-notch", "linkingText": [ "\"notch\"", "notch" @@ -9544,7 +8920,7 @@ "informative": false, "heading": { "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode", "title": "The BiquadFilterNode Interface", "number": "1.13" }, @@ -9552,7 +8928,7 @@ }, { "id": "dom-biquadfiltertype-allpass", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-allpass", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfiltertype-allpass", "linkingText": [ "\"allpass\"", "allpass" @@ -9566,15 +8942,34 @@ "informative": false, "heading": { "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode", "title": "The BiquadFilterNode Interface", "number": "1.13" }, "definedIn": "table" }, + { + "id": "biquadfilternode", + "href": "https://www.w3.org/TR/webaudio-1.0/#biquadfilternode", + "linkingText": [ + "BiquadFilterNode" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "BiquadFilterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode", + "title": "The BiquadFilterNode Interface", + "number": "1.13" + }, + "definedIn": "pre" + }, { "id": "dom-biquadfilternode-biquadfilternode", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-biquadfilternode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-biquadfilternode", "linkingText": [ "BiquadFilterNode(context, options)", "constructor(context, options)", @@ -9590,7 +8985,7 @@ "informative": false, "heading": { "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode", "title": "The BiquadFilterNode Interface", "number": "1.13" }, @@ -9598,7 +8993,7 @@ }, { "id": "dom-biquadfilternode-biquadfilternode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-biquadfilternode-context-options-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-biquadfilternode-context-options-context", "linkingText": [ "context" ], @@ -9614,7 +9009,7 @@ "informative": false, "heading": { "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode", "title": "The BiquadFilterNode Interface", "number": "1.13" }, @@ -9622,7 +9017,7 @@ }, { "id": "dom-biquadfilternode-biquadfilternode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-biquadfilternode-context-options-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-biquadfilternode-context-options-options", "linkingText": [ "options" ], @@ -9638,7 +9033,7 @@ "informative": false, "heading": { "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode", "title": "The BiquadFilterNode Interface", "number": "1.13" }, @@ -9646,7 +9041,7 @@ }, { "id": "dom-biquadfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-frequencyhz", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-frequencyhz", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-frequencyhz", "linkingText": [ "frequencyHz" ], @@ -9659,7 +9054,7 @@ "informative": false, "heading": { "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode", "title": "The BiquadFilterNode Interface", "number": "1.13" }, @@ -9667,7 +9062,7 @@ }, { "id": "dom-biquadfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-magresponse", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-magresponse", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-magresponse", "linkingText": [ "magResponse" ], @@ -9680,7 +9075,7 @@ "informative": false, "heading": { "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode", "title": "The BiquadFilterNode Interface", "number": "1.13" }, @@ -9688,7 +9083,7 @@ }, { "id": "dom-biquadfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-phaseresponse", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-phaseresponse", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-phaseresponse", "linkingText": [ "phaseResponse" ], @@ -9701,7 +9096,7 @@ "informative": false, "heading": { "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode", "title": "The BiquadFilterNode Interface", "number": "1.13" }, @@ -9709,7 +9104,7 @@ }, { "id": "dom-biquadfilternode-biquadfilternode-context-options", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-biquadfilternode-context-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-biquadfilternode-context-options", "linkingText": [ "BiquadFilterNode(context, options)" ], @@ -9722,7 +9117,7 @@ "informative": false, "heading": { "id": "BiquadFilterNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode-constructors", "title": "Constructors", "number": "1.13.1" }, @@ -9730,7 +9125,7 @@ }, { "id": "dom-biquadfilternode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-constructor-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-constructor-context", "linkingText": [ "context" ], @@ -9743,7 +9138,7 @@ "informative": false, "heading": { "id": "BiquadFilterNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode-constructors", "title": "Constructors", "number": "1.13.1" }, @@ -9751,7 +9146,7 @@ }, { "id": "dom-biquadfilternode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-constructor-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-constructor-options", "linkingText": [ "options" ], @@ -9764,7 +9159,7 @@ "informative": false, "heading": { "id": "BiquadFilterNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode-constructors", "title": "Constructors", "number": "1.13.1" }, @@ -9772,7 +9167,7 @@ }, { "id": "dom-biquadfilternode-q", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-q", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-q", "linkingText": [ "Q" ], @@ -9785,7 +9180,7 @@ "informative": false, "heading": { "id": "BiquadFilterNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode-attributes", "title": "Attributes", "number": "1.13.2" }, @@ -9793,7 +9188,7 @@ }, { "id": "dom-biquadfilternode-detune", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-detune", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-detune", "linkingText": [ "detune" ], @@ -9806,7 +9201,7 @@ "informative": false, "heading": { "id": "BiquadFilterNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode-attributes", "title": "Attributes", "number": "1.13.2" }, @@ -9814,7 +9209,7 @@ }, { "id": "dom-biquadfilternode-frequency", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-frequency", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-frequency", "linkingText": [ "frequency" ], @@ -9827,7 +9222,7 @@ "informative": false, "heading": { "id": "BiquadFilterNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode-attributes", "title": "Attributes", "number": "1.13.2" }, @@ -9835,7 +9230,7 @@ }, { "id": "dom-biquadfilternode-gain", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-gain", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-gain", "linkingText": [ "gain" ], @@ -9848,7 +9243,7 @@ "informative": false, "heading": { "id": "BiquadFilterNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode-attributes", "title": "Attributes", "number": "1.13.2" }, @@ -9856,7 +9251,7 @@ }, { "id": "dom-biquadfilternode-type", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-type", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-type", "linkingText": [ "type" ], @@ -9869,7 +9264,7 @@ "informative": false, "heading": { "id": "BiquadFilterNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode-attributes", "title": "Attributes", "number": "1.13.2" }, @@ -9877,7 +9272,7 @@ }, { "id": "dom-biquadfilternode-getfrequencyresponse", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-getfrequencyresponse", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-getfrequencyresponse", "linkingText": [ "getFrequencyResponse(frequencyHz, magResponse, phaseResponse)" ], @@ -9890,7 +9285,7 @@ "informative": false, "heading": { "id": "BiquadFilterNode-methods", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode-methods", "title": "Methods", "number": "1.13.3" }, @@ -9898,7 +9293,7 @@ }, { "id": "dom-biquadfilternode-getfrequencyresponse-frequencyhz", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-getfrequencyresponse-frequencyhz", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-getfrequencyresponse-frequencyhz", "linkingText": [ "frequencyHz" ], @@ -9911,7 +9306,7 @@ "informative": false, "heading": { "id": "BiquadFilterNode-methods", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode-methods", "title": "Methods", "number": "1.13.3" }, @@ -9919,7 +9314,7 @@ }, { "id": "dom-biquadfilternode-getfrequencyresponse-magresponse", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-getfrequencyresponse-magresponse", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-getfrequencyresponse-magresponse", "linkingText": [ "magResponse" ], @@ -9932,7 +9327,7 @@ "informative": false, "heading": { "id": "BiquadFilterNode-methods", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode-methods", "title": "Methods", "number": "1.13.3" }, @@ -9940,7 +9335,7 @@ }, { "id": "dom-biquadfilternode-getfrequencyresponse-phaseresponse", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-getfrequencyresponse-phaseresponse", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-getfrequencyresponse-phaseresponse", "linkingText": [ "phaseResponse" ], @@ -9953,7 +9348,7 @@ "informative": false, "heading": { "id": "BiquadFilterNode-methods", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode-methods", "title": "Methods", "number": "1.13.3" }, @@ -9961,9 +9356,9 @@ }, { "id": "BiquadFilterOptions", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterOptions", "linkingText": [ - "BiquadFilterOptions" + "biquadfilteroptions" ], "localLinkingText": [], "type": "dictionary", @@ -9972,15 +9367,34 @@ "informative": false, "heading": { "id": "BiquadFilterOptions", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterOptions", "title": "BiquadFilterOptions", "number": "1.13.4" }, "definedIn": "heading" }, + { + "id": "dictdef-biquadfilteroptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictdef-biquadfilteroptions", + "linkingText": [ + "BiquadFilterOptions" + ], + "localLinkingText": [], + "type": "dictionary", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "BiquadFilterOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterOptions", + "title": "BiquadFilterOptions", + "number": "1.13.4" + }, + "definedIn": "pre" + }, { "id": "dom-biquadfilteroptions-q", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilteroptions-q", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilteroptions-q", "linkingText": [ "Q" ], @@ -9993,7 +9407,7 @@ "informative": false, "heading": { "id": "dictionary-biquadfilteroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-biquadfilteroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-biquadfilteroptions-members", "title": "Dictionary BiquadFilterOptions Members", "number": "1.13.4.1" }, @@ -10001,7 +9415,7 @@ }, { "id": "dom-biquadfilteroptions-detune", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilteroptions-detune", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilteroptions-detune", "linkingText": [ "detune" ], @@ -10014,7 +9428,7 @@ "informative": false, "heading": { "id": "dictionary-biquadfilteroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-biquadfilteroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-biquadfilteroptions-members", "title": "Dictionary BiquadFilterOptions Members", "number": "1.13.4.1" }, @@ -10022,7 +9436,7 @@ }, { "id": "dom-biquadfilteroptions-frequency", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilteroptions-frequency", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilteroptions-frequency", "linkingText": [ "frequency" ], @@ -10035,7 +9449,7 @@ "informative": false, "heading": { "id": "dictionary-biquadfilteroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-biquadfilteroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-biquadfilteroptions-members", "title": "Dictionary BiquadFilterOptions Members", "number": "1.13.4.1" }, @@ -10043,7 +9457,7 @@ }, { "id": "dom-biquadfilteroptions-gain", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilteroptions-gain", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilteroptions-gain", "linkingText": [ "gain" ], @@ -10056,7 +9470,7 @@ "informative": false, "heading": { "id": "dictionary-biquadfilteroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-biquadfilteroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-biquadfilteroptions-members", "title": "Dictionary BiquadFilterOptions Members", "number": "1.13.4.1" }, @@ -10064,7 +9478,7 @@ }, { "id": "dom-biquadfilteroptions-type", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilteroptions-type", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilteroptions-type", "linkingText": [ "type" ], @@ -10077,7 +9491,7 @@ "informative": false, "heading": { "id": "dictionary-biquadfilteroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-biquadfilteroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-biquadfilteroptions-members", "title": "Dictionary BiquadFilterOptions Members", "number": "1.13.4.1" }, @@ -10085,9 +9499,9 @@ }, { "id": "ChannelMergerNode", - "href": "https://www.w3.org/TR/webaudio/#ChannelMergerNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#ChannelMergerNode", "linkingText": [ - "ChannelMergerNode" + "channelmergernode" ], "localLinkingText": [], "type": "interface", @@ -10096,15 +9510,58 @@ "informative": false, "heading": { "id": "ChannelMergerNode", - "href": "https://www.w3.org/TR/webaudio/#ChannelMergerNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#ChannelMergerNode", "title": "The ChannelMergerNode Interface", "number": "1.14" }, "definedIn": "heading" }, + { + "id": "channelmergernode", + "href": "https://www.w3.org/TR/webaudio-1.0/#channelmergernode", + "linkingText": [ + "ChannelMergerNode" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "ChannelMergerNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#ChannelMergerNode", + "title": "The ChannelMergerNode Interface", + "number": "1.14" + }, + "definedIn": "pre" + }, + { + "id": "dom-channelmergernode-channelmergernode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-channelmergernode-channelmergernode", + "linkingText": [ + "ChannelMergerNode(context, options)", + "constructor(context, options)", + "ChannelMergerNode(context)", + "constructor(context)" + ], + "localLinkingText": [], + "type": "constructor", + "for": [ + "ChannelMergerNode" + ], + "access": "public", + "informative": false, + "heading": { + "id": "ChannelMergerNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#ChannelMergerNode", + "title": "The ChannelMergerNode Interface", + "number": "1.14" + }, + "definedIn": "pre" + }, { "id": "dom-channelmergernode-channelmergernode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-channelmergernode-channelmergernode-context-options-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-channelmergernode-channelmergernode-context-options-context", "linkingText": [ "context" ], @@ -10120,7 +9577,7 @@ "informative": false, "heading": { "id": "ChannelMergerNode", - "href": "https://www.w3.org/TR/webaudio/#ChannelMergerNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#ChannelMergerNode", "title": "The ChannelMergerNode Interface", "number": "1.14" }, @@ -10128,7 +9585,7 @@ }, { "id": "dom-channelmergernode-channelmergernode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-channelmergernode-channelmergernode-context-options-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-channelmergernode-channelmergernode-context-options-options", "linkingText": [ "options" ], @@ -10144,31 +9601,28 @@ "informative": false, "heading": { "id": "ChannelMergerNode", - "href": "https://www.w3.org/TR/webaudio/#ChannelMergerNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#ChannelMergerNode", "title": "The ChannelMergerNode Interface", "number": "1.14" }, "definedIn": "pre" }, { - "id": "dom-channelmergernode-channelmergernode", - "href": "https://www.w3.org/TR/webaudio/#dom-channelmergernode-channelmergernode", + "id": "dom-channelmergernode-constructor-channelmergernode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-channelmergernode-constructor-channelmergernode", "linkingText": [ - "ChannelMergerNode(context, options)", - "constructor(context, options)", - "ChannelMergerNode(context)", - "constructor(context)" + "ChannelMergerNode(context, options)" ], "localLinkingText": [], - "type": "constructor", + "type": "method", "for": [ - "ChannelMergerNode" + "ChannelMergerNode/constructor" ], "access": "public", "informative": false, "heading": { "id": "ChannelMergerNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#ChannelMergerNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#ChannelMergerNode-constructors", "title": "Constructors", "number": "1.14.1" }, @@ -10176,7 +9630,7 @@ }, { "id": "dom-channelmergernode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-channelmergernode-constructor-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-channelmergernode-constructor-context", "linkingText": [ "context" ], @@ -10189,7 +9643,7 @@ "informative": false, "heading": { "id": "ChannelMergerNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#ChannelMergerNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#ChannelMergerNode-constructors", "title": "Constructors", "number": "1.14.1" }, @@ -10197,7 +9651,7 @@ }, { "id": "dom-channelmergernode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-channelmergernode-constructor-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-channelmergernode-constructor-options", "linkingText": [ "options" ], @@ -10210,7 +9664,7 @@ "informative": false, "heading": { "id": "ChannelMergerNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#ChannelMergerNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#ChannelMergerNode-constructors", "title": "Constructors", "number": "1.14.1" }, @@ -10218,9 +9672,9 @@ }, { "id": "ChannelMergerOptions", - "href": "https://www.w3.org/TR/webaudio/#ChannelMergerOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#ChannelMergerOptions", "linkingText": [ - "ChannelMergerOptions" + "channelmergeroptions" ], "localLinkingText": [], "type": "dictionary", @@ -10229,15 +9683,34 @@ "informative": false, "heading": { "id": "ChannelMergerOptions", - "href": "https://www.w3.org/TR/webaudio/#ChannelMergerOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#ChannelMergerOptions", "title": "ChannelMergerOptions", "number": "1.14.2" }, "definedIn": "heading" }, + { + "id": "dictdef-channelmergeroptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictdef-channelmergeroptions", + "linkingText": [ + "ChannelMergerOptions" + ], + "localLinkingText": [], + "type": "dictionary", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "ChannelMergerOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#ChannelMergerOptions", + "title": "ChannelMergerOptions", + "number": "1.14.2" + }, + "definedIn": "pre" + }, { "id": "dom-channelmergeroptions-numberofinputs", - "href": "https://www.w3.org/TR/webaudio/#dom-channelmergeroptions-numberofinputs", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-channelmergeroptions-numberofinputs", "linkingText": [ "numberOfInputs" ], @@ -10250,7 +9723,7 @@ "informative": false, "heading": { "id": "dictionary-channelmergeroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-channelmergeroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-channelmergeroptions-members", "title": "Dictionary ChannelMergerOptions Members", "number": "1.14.2.1" }, @@ -10258,9 +9731,9 @@ }, { "id": "ChannelSplitterNode", - "href": "https://www.w3.org/TR/webaudio/#ChannelSplitterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#ChannelSplitterNode", "linkingText": [ - "ChannelSplitterNode" + "channelsplitternode" ], "localLinkingText": [], "type": "interface", @@ -10269,15 +9742,58 @@ "informative": false, "heading": { "id": "ChannelSplitterNode", - "href": "https://www.w3.org/TR/webaudio/#ChannelSplitterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#ChannelSplitterNode", "title": "The ChannelSplitterNode Interface", "number": "1.15" }, "definedIn": "heading" }, + { + "id": "channelsplitternode", + "href": "https://www.w3.org/TR/webaudio-1.0/#channelsplitternode", + "linkingText": [ + "ChannelSplitterNode" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "ChannelSplitterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#ChannelSplitterNode", + "title": "The ChannelSplitterNode Interface", + "number": "1.15" + }, + "definedIn": "pre" + }, + { + "id": "dom-channelsplitternode-channelsplitternode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-channelsplitternode-channelsplitternode", + "linkingText": [ + "ChannelSplitterNode(context, options)", + "constructor(context, options)", + "ChannelSplitterNode(context)", + "constructor(context)" + ], + "localLinkingText": [], + "type": "constructor", + "for": [ + "ChannelSplitterNode" + ], + "access": "public", + "informative": false, + "heading": { + "id": "ChannelSplitterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#ChannelSplitterNode", + "title": "The ChannelSplitterNode Interface", + "number": "1.15" + }, + "definedIn": "pre" + }, { "id": "dom-channelsplitternode-channelsplitternode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-channelsplitternode-channelsplitternode-context-options-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-channelsplitternode-channelsplitternode-context-options-context", "linkingText": [ "context" ], @@ -10293,7 +9809,7 @@ "informative": false, "heading": { "id": "ChannelSplitterNode", - "href": "https://www.w3.org/TR/webaudio/#ChannelSplitterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#ChannelSplitterNode", "title": "The ChannelSplitterNode Interface", "number": "1.15" }, @@ -10301,7 +9817,7 @@ }, { "id": "dom-channelsplitternode-channelsplitternode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-channelsplitternode-channelsplitternode-context-options-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-channelsplitternode-channelsplitternode-context-options-options", "linkingText": [ "options" ], @@ -10317,31 +9833,28 @@ "informative": false, "heading": { "id": "ChannelSplitterNode", - "href": "https://www.w3.org/TR/webaudio/#ChannelSplitterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#ChannelSplitterNode", "title": "The ChannelSplitterNode Interface", "number": "1.15" }, "definedIn": "pre" }, { - "id": "dom-channelsplitternode-channelsplitternode", - "href": "https://www.w3.org/TR/webaudio/#dom-channelsplitternode-channelsplitternode", + "id": "dom-channelsplitternode-constructor-channelsplitternode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-channelsplitternode-constructor-channelsplitternode", "linkingText": [ - "ChannelSplitterNode(context, options)", - "constructor(context, options)", - "ChannelSplitterNode(context)", - "constructor(context)" + "ChannelSplitterNode(context, options)" ], "localLinkingText": [], "type": "constructor", "for": [ - "ChannelSplitterNode" + "ChannelSplitterNode/constructor()" ], "access": "public", "informative": false, "heading": { "id": "ChannelSplitterNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#ChannelSplitterNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#ChannelSplitterNode-constructors", "title": "Constructors", "number": "1.15.1" }, @@ -10349,7 +9862,7 @@ }, { "id": "dom-channelsplitternode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-channelsplitternode-constructor-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-channelsplitternode-constructor-context", "linkingText": [ "context" ], @@ -10362,7 +9875,7 @@ "informative": false, "heading": { "id": "ChannelSplitterNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#ChannelSplitterNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#ChannelSplitterNode-constructors", "title": "Constructors", "number": "1.15.1" }, @@ -10370,7 +9883,7 @@ }, { "id": "dom-channelsplitternode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-channelsplitternode-constructor-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-channelsplitternode-constructor-options", "linkingText": [ "options" ], @@ -10383,15 +9896,34 @@ "informative": false, "heading": { "id": "ChannelSplitterNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#ChannelSplitterNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#ChannelSplitterNode-constructors", "title": "Constructors", "number": "1.15.1" }, "definedIn": "table" }, { - "id": "ChannelSplitterOptions", - "href": "https://www.w3.org/TR/webaudio/#ChannelSplitterOptions", + "id": "ChannelSplitterOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#ChannelSplitterOptions", + "linkingText": [ + "channelsplitteroptions" + ], + "localLinkingText": [], + "type": "dictionary", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "ChannelSplitterOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#ChannelSplitterOptions", + "title": "ChannelSplitterOptions", + "number": "1.15.2" + }, + "definedIn": "heading" + }, + { + "id": "dictdef-channelsplitteroptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictdef-channelsplitteroptions", "linkingText": [ "ChannelSplitterOptions" ], @@ -10402,15 +9934,15 @@ "informative": false, "heading": { "id": "ChannelSplitterOptions", - "href": "https://www.w3.org/TR/webaudio/#ChannelSplitterOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#ChannelSplitterOptions", "title": "ChannelSplitterOptions", "number": "1.15.2" }, - "definedIn": "heading" + "definedIn": "pre" }, { "id": "dom-channelsplitteroptions-numberofoutputs", - "href": "https://www.w3.org/TR/webaudio/#dom-channelsplitteroptions-numberofoutputs", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-channelsplitteroptions-numberofoutputs", "linkingText": [ "numberOfOutputs" ], @@ -10423,7 +9955,7 @@ "informative": false, "heading": { "id": "dictionary-channelsplitteroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-channelsplitteroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-channelsplitteroptions-members", "title": "Dictionary ChannelSplitterOptions Members", "number": "1.15.2.1" }, @@ -10431,9 +9963,9 @@ }, { "id": "ConstantSourceNode", - "href": "https://www.w3.org/TR/webaudio/#ConstantSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConstantSourceNode", "linkingText": [ - "ConstantSourceNode" + "constantsourcenode" ], "localLinkingText": [], "type": "interface", @@ -10442,15 +9974,58 @@ "informative": false, "heading": { "id": "ConstantSourceNode", - "href": "https://www.w3.org/TR/webaudio/#ConstantSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConstantSourceNode", "title": "The ConstantSourceNode Interface", "number": "1.16" }, "definedIn": "heading" }, + { + "id": "constantsourcenode", + "href": "https://www.w3.org/TR/webaudio-1.0/#constantsourcenode", + "linkingText": [ + "ConstantSourceNode" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "ConstantSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConstantSourceNode", + "title": "The ConstantSourceNode Interface", + "number": "1.16" + }, + "definedIn": "pre" + }, + { + "id": "dom-constantsourcenode-constantsourcenode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-constantsourcenode-constantsourcenode", + "linkingText": [ + "ConstantSourceNode(context, options)", + "constructor(context, options)", + "ConstantSourceNode(context)", + "constructor(context)" + ], + "localLinkingText": [], + "type": "constructor", + "for": [ + "ConstantSourceNode" + ], + "access": "public", + "informative": false, + "heading": { + "id": "ConstantSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConstantSourceNode", + "title": "The ConstantSourceNode Interface", + "number": "1.16" + }, + "definedIn": "pre" + }, { "id": "dom-constantsourcenode-constantsourcenode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-constantsourcenode-constantsourcenode-context-options-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-constantsourcenode-constantsourcenode-context-options-context", "linkingText": [ "context" ], @@ -10466,7 +10041,7 @@ "informative": false, "heading": { "id": "ConstantSourceNode", - "href": "https://www.w3.org/TR/webaudio/#ConstantSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConstantSourceNode", "title": "The ConstantSourceNode Interface", "number": "1.16" }, @@ -10474,7 +10049,7 @@ }, { "id": "dom-constantsourcenode-constantsourcenode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-constantsourcenode-constantsourcenode-context-options-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-constantsourcenode-constantsourcenode-context-options-options", "linkingText": [ "options" ], @@ -10490,31 +10065,28 @@ "informative": false, "heading": { "id": "ConstantSourceNode", - "href": "https://www.w3.org/TR/webaudio/#ConstantSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConstantSourceNode", "title": "The ConstantSourceNode Interface", "number": "1.16" }, "definedIn": "pre" }, { - "id": "dom-constantsourcenode-constantsourcenode", - "href": "https://www.w3.org/TR/webaudio/#dom-constantsourcenode-constantsourcenode", + "id": "dom-constantsourcenode-constructor-constantsourcenode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-constantsourcenode-constructor-constantsourcenode", "linkingText": [ - "ConstantSourceNode(context, options)", - "constructor(context, options)", - "ConstantSourceNode(context)", - "constructor(context)" + "ConstantSourceNode(context, options)" ], "localLinkingText": [], - "type": "constructor", + "type": "method", "for": [ - "ConstantSourceNode" + "ConstantSourceNode/constructor()" ], "access": "public", "informative": false, "heading": { "id": "ConstantSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#ConstantSourceNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConstantSourceNode-constructors", "title": "Constructors", "number": "1.16.1" }, @@ -10522,7 +10094,7 @@ }, { "id": "dom-constantsourcenode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-constantsourcenode-constructor-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-constantsourcenode-constructor-context", "linkingText": [ "context" ], @@ -10535,7 +10107,7 @@ "informative": false, "heading": { "id": "ConstantSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#ConstantSourceNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConstantSourceNode-constructors", "title": "Constructors", "number": "1.16.1" }, @@ -10543,7 +10115,7 @@ }, { "id": "dom-constantsourcenode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-constantsourcenode-constructor-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-constantsourcenode-constructor-options", "linkingText": [ "options" ], @@ -10556,7 +10128,7 @@ "informative": false, "heading": { "id": "ConstantSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#ConstantSourceNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConstantSourceNode-constructors", "title": "Constructors", "number": "1.16.1" }, @@ -10564,7 +10136,7 @@ }, { "id": "dom-constantsourcenode-offset", - "href": "https://www.w3.org/TR/webaudio/#dom-constantsourcenode-offset", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-constantsourcenode-offset", "linkingText": [ "offset" ], @@ -10577,7 +10149,7 @@ "informative": false, "heading": { "id": "ConstantSourceNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#ConstantSourceNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConstantSourceNode-attributes", "title": "Attributes", "number": "1.16.2" }, @@ -10585,9 +10157,9 @@ }, { "id": "ConstantSourceOptions", - "href": "https://www.w3.org/TR/webaudio/#ConstantSourceOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConstantSourceOptions", "linkingText": [ - "ConstantSourceOptions" + "constantsourceoptions" ], "localLinkingText": [], "type": "dictionary", @@ -10596,15 +10168,34 @@ "informative": false, "heading": { "id": "ConstantSourceOptions", - "href": "https://www.w3.org/TR/webaudio/#ConstantSourceOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConstantSourceOptions", "title": "ConstantSourceOptions", "number": "1.16.3" }, "definedIn": "heading" }, + { + "id": "dictdef-constantsourceoptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictdef-constantsourceoptions", + "linkingText": [ + "ConstantSourceOptions" + ], + "localLinkingText": [], + "type": "dictionary", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "ConstantSourceOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConstantSourceOptions", + "title": "ConstantSourceOptions", + "number": "1.16.3" + }, + "definedIn": "pre" + }, { "id": "dom-constantsourceoptions-offset", - "href": "https://www.w3.org/TR/webaudio/#dom-constantsourceoptions-offset", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-constantsourceoptions-offset", "linkingText": [ "offset" ], @@ -10617,7 +10208,7 @@ "informative": false, "heading": { "id": "dictionary-constantsourceoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-constantsourceoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-constantsourceoptions-members", "title": "Dictionary ConstantSourceOptions Members", "number": "1.16.3.1" }, @@ -10625,9 +10216,9 @@ }, { "id": "ConvolverNode", - "href": "https://www.w3.org/TR/webaudio/#ConvolverNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConvolverNode", "linkingText": [ - "ConvolverNode" + "convolvernode" ], "localLinkingText": [], "type": "interface", @@ -10636,15 +10227,58 @@ "informative": false, "heading": { "id": "ConvolverNode", - "href": "https://www.w3.org/TR/webaudio/#ConvolverNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConvolverNode", "title": "The ConvolverNode Interface", "number": "1.17" }, "definedIn": "heading" }, + { + "id": "convolvernode", + "href": "https://www.w3.org/TR/webaudio-1.0/#convolvernode", + "linkingText": [ + "ConvolverNode" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "ConvolverNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConvolverNode", + "title": "The ConvolverNode Interface", + "number": "1.17" + }, + "definedIn": "pre" + }, + { + "id": "dom-convolvernode-convolvernode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-convolvernode-convolvernode", + "linkingText": [ + "ConvolverNode(context, options)", + "constructor(context, options)", + "ConvolverNode(context)", + "constructor(context)" + ], + "localLinkingText": [], + "type": "constructor", + "for": [ + "ConvolverNode" + ], + "access": "public", + "informative": false, + "heading": { + "id": "ConvolverNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConvolverNode", + "title": "The ConvolverNode Interface", + "number": "1.17" + }, + "definedIn": "pre" + }, { "id": "dom-convolvernode-convolvernode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-convolvernode-convolvernode-context-options-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-convolvernode-convolvernode-context-options-context", "linkingText": [ "context" ], @@ -10660,7 +10294,7 @@ "informative": false, "heading": { "id": "ConvolverNode", - "href": "https://www.w3.org/TR/webaudio/#ConvolverNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConvolverNode", "title": "The ConvolverNode Interface", "number": "1.17" }, @@ -10668,7 +10302,7 @@ }, { "id": "dom-convolvernode-convolvernode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-convolvernode-convolvernode-context-options-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-convolvernode-convolvernode-context-options-options", "linkingText": [ "options" ], @@ -10684,31 +10318,28 @@ "informative": false, "heading": { "id": "ConvolverNode", - "href": "https://www.w3.org/TR/webaudio/#ConvolverNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConvolverNode", "title": "The ConvolverNode Interface", "number": "1.17" }, "definedIn": "pre" }, { - "id": "dom-convolvernode-convolvernode", - "href": "https://www.w3.org/TR/webaudio/#dom-convolvernode-convolvernode", + "id": "dom-convolvernode-constructor-convolvernode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-convolvernode-constructor-convolvernode", "linkingText": [ - "ConvolverNode(context, options)", - "constructor(context, options)", - "ConvolverNode(context)", - "constructor(context)" + "ConvolverNode(context, options)" ], "localLinkingText": [], "type": "constructor", "for": [ - "ConvolverNode" + "ConvolverNode/constructor()" ], "access": "public", "informative": false, "heading": { "id": "ConvolverNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#ConvolverNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConvolverNode-constructors", "title": "Constructors", "number": "1.17.1" }, @@ -10716,7 +10347,7 @@ }, { "id": "dom-convolvernode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-convolvernode-constructor-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-convolvernode-constructor-context", "linkingText": [ "context" ], @@ -10729,7 +10360,7 @@ "informative": false, "heading": { "id": "ConvolverNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#ConvolverNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConvolverNode-constructors", "title": "Constructors", "number": "1.17.1" }, @@ -10737,7 +10368,7 @@ }, { "id": "dom-convolvernode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-convolvernode-constructor-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-convolvernode-constructor-options", "linkingText": [ "options" ], @@ -10750,7 +10381,7 @@ "informative": false, "heading": { "id": "ConvolverNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#ConvolverNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConvolverNode-constructors", "title": "Constructors", "number": "1.17.1" }, @@ -10758,7 +10389,7 @@ }, { "id": "dom-convolvernode-buffer", - "href": "https://www.w3.org/TR/webaudio/#dom-convolvernode-buffer", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-convolvernode-buffer", "linkingText": [ "buffer" ], @@ -10771,7 +10402,7 @@ "informative": false, "heading": { "id": "ConvolverNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#ConvolverNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConvolverNode-attributes", "title": "Attributes", "number": "1.17.2" }, @@ -10779,7 +10410,7 @@ }, { "id": "dom-convolvernode-buffer-attribute", - "href": "https://www.w3.org/TR/webaudio/#dom-convolvernode-buffer-attribute", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-convolvernode-buffer-attribute", "linkingText": [ "buffer attribute" ], @@ -10792,7 +10423,7 @@ "informative": false, "heading": { "id": "ConvolverNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#ConvolverNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConvolverNode-attributes", "title": "Attributes", "number": "1.17.2" }, @@ -10800,7 +10431,7 @@ }, { "id": "dom-convolvernode-normalize", - "href": "https://www.w3.org/TR/webaudio/#dom-convolvernode-normalize", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-convolvernode-normalize", "linkingText": [ "normalize" ], @@ -10813,7 +10444,7 @@ "informative": false, "heading": { "id": "ConvolverNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#ConvolverNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConvolverNode-attributes", "title": "Attributes", "number": "1.17.2" }, @@ -10821,9 +10452,9 @@ }, { "id": "ConvolverOptions", - "href": "https://www.w3.org/TR/webaudio/#ConvolverOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConvolverOptions", "linkingText": [ - "ConvolverOptions" + "convolveroptions" ], "localLinkingText": [], "type": "dictionary", @@ -10832,15 +10463,34 @@ "informative": false, "heading": { "id": "ConvolverOptions", - "href": "https://www.w3.org/TR/webaudio/#ConvolverOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConvolverOptions", "title": "ConvolverOptions", "number": "1.17.3" }, "definedIn": "heading" }, + { + "id": "dictdef-convolveroptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictdef-convolveroptions", + "linkingText": [ + "ConvolverOptions" + ], + "localLinkingText": [], + "type": "dictionary", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "ConvolverOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConvolverOptions", + "title": "ConvolverOptions", + "number": "1.17.3" + }, + "definedIn": "pre" + }, { "id": "dom-convolveroptions-buffer", - "href": "https://www.w3.org/TR/webaudio/#dom-convolveroptions-buffer", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-convolveroptions-buffer", "linkingText": [ "buffer" ], @@ -10853,7 +10503,7 @@ "informative": false, "heading": { "id": "dictionary-convolveroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-convolveroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-convolveroptions-members", "title": "Dictionary ConvolverOptions Members", "number": "1.17.3.1" }, @@ -10861,7 +10511,7 @@ }, { "id": "dom-convolveroptions-disablenormalization", - "href": "https://www.w3.org/TR/webaudio/#dom-convolveroptions-disablenormalization", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-convolveroptions-disablenormalization", "linkingText": [ "disableNormalization" ], @@ -10874,7 +10524,7 @@ "informative": false, "heading": { "id": "dictionary-convolveroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-convolveroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-convolveroptions-members", "title": "Dictionary ConvolverOptions Members", "number": "1.17.3.1" }, @@ -10882,9 +10532,9 @@ }, { "id": "DelayNode", - "href": "https://www.w3.org/TR/webaudio/#DelayNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#DelayNode", "linkingText": [ - "DelayNode" + "delaynode" ], "localLinkingText": [], "type": "interface", @@ -10893,15 +10543,58 @@ "informative": false, "heading": { "id": "DelayNode", - "href": "https://www.w3.org/TR/webaudio/#DelayNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#DelayNode", "title": "The DelayNode Interface", "number": "1.18" }, "definedIn": "heading" }, + { + "id": "delaynode", + "href": "https://www.w3.org/TR/webaudio-1.0/#delaynode", + "linkingText": [ + "DelayNode" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "DelayNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#DelayNode", + "title": "The DelayNode Interface", + "number": "1.18" + }, + "definedIn": "pre" + }, + { + "id": "dom-delaynode-delaynode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-delaynode-delaynode", + "linkingText": [ + "DelayNode(context, options)", + "constructor(context, options)", + "DelayNode(context)", + "constructor(context)" + ], + "localLinkingText": [], + "type": "constructor", + "for": [ + "DelayNode" + ], + "access": "public", + "informative": false, + "heading": { + "id": "DelayNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#DelayNode", + "title": "The DelayNode Interface", + "number": "1.18" + }, + "definedIn": "pre" + }, { "id": "dom-delaynode-delaynode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-delaynode-delaynode-context-options-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-delaynode-delaynode-context-options-context", "linkingText": [ "context" ], @@ -10917,7 +10610,7 @@ "informative": false, "heading": { "id": "DelayNode", - "href": "https://www.w3.org/TR/webaudio/#DelayNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#DelayNode", "title": "The DelayNode Interface", "number": "1.18" }, @@ -10925,7 +10618,7 @@ }, { "id": "dom-delaynode-delaynode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-delaynode-delaynode-context-options-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-delaynode-delaynode-context-options-options", "linkingText": [ "options" ], @@ -10941,31 +10634,28 @@ "informative": false, "heading": { "id": "DelayNode", - "href": "https://www.w3.org/TR/webaudio/#DelayNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#DelayNode", "title": "The DelayNode Interface", "number": "1.18" }, "definedIn": "pre" }, { - "id": "dom-delaynode-delaynode", - "href": "https://www.w3.org/TR/webaudio/#dom-delaynode-delaynode", + "id": "dom-delaynode-constructor-delaynode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-delaynode-constructor-delaynode", "linkingText": [ - "DelayNode(context, options)", - "constructor(context, options)", - "DelayNode(context)", - "constructor(context)" + "DelayNode(context, options)" ], "localLinkingText": [], "type": "constructor", "for": [ - "DelayNode" + "DelayNode/constructor()" ], "access": "public", "informative": false, "heading": { "id": "DelayNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#DelayNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#DelayNode-constructors", "title": "Constructors", "number": "1.18.1" }, @@ -10973,7 +10663,7 @@ }, { "id": "dom-delaynode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-delaynode-constructor-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-delaynode-constructor-context", "linkingText": [ "context" ], @@ -10986,7 +10676,7 @@ "informative": false, "heading": { "id": "DelayNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#DelayNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#DelayNode-constructors", "title": "Constructors", "number": "1.18.1" }, @@ -10994,7 +10684,7 @@ }, { "id": "dom-delaynode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-delaynode-constructor-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-delaynode-constructor-options", "linkingText": [ "options" ], @@ -11007,7 +10697,7 @@ "informative": false, "heading": { "id": "DelayNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#DelayNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#DelayNode-constructors", "title": "Constructors", "number": "1.18.1" }, @@ -11015,7 +10705,7 @@ }, { "id": "dom-delaynode-delaytime", - "href": "https://www.w3.org/TR/webaudio/#dom-delaynode-delaytime", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-delaynode-delaytime", "linkingText": [ "delayTime" ], @@ -11028,7 +10718,7 @@ "informative": false, "heading": { "id": "DelayNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#DelayNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#DelayNode-attributes", "title": "Attributes", "number": "1.18.2" }, @@ -11036,9 +10726,9 @@ }, { "id": "DelayOptions", - "href": "https://www.w3.org/TR/webaudio/#DelayOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#DelayOptions", "linkingText": [ - "DelayOptions" + "delayoptions" ], "localLinkingText": [], "type": "dictionary", @@ -11047,15 +10737,34 @@ "informative": false, "heading": { "id": "DelayOptions", - "href": "https://www.w3.org/TR/webaudio/#DelayOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#DelayOptions", "title": "DelayOptions", "number": "1.18.3" }, "definedIn": "heading" }, + { + "id": "dictdef-delayoptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictdef-delayoptions", + "linkingText": [ + "DelayOptions" + ], + "localLinkingText": [], + "type": "dictionary", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "DelayOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#DelayOptions", + "title": "DelayOptions", + "number": "1.18.3" + }, + "definedIn": "pre" + }, { "id": "dom-delayoptions-delaytime", - "href": "https://www.w3.org/TR/webaudio/#dom-delayoptions-delaytime", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-delayoptions-delaytime", "linkingText": [ "delayTime" ], @@ -11068,7 +10777,7 @@ "informative": false, "heading": { "id": "dictionary-delayoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-delayoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-delayoptions-members", "title": "Dictionary DelayOptions Members", "number": "1.18.3.1" }, @@ -11076,7 +10785,7 @@ }, { "id": "dom-delayoptions-maxdelaytime", - "href": "https://www.w3.org/TR/webaudio/#dom-delayoptions-maxdelaytime", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-delayoptions-maxdelaytime", "linkingText": [ "maxDelayTime" ], @@ -11089,7 +10798,7 @@ "informative": false, "heading": { "id": "dictionary-delayoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-delayoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-delayoptions-members", "title": "Dictionary DelayOptions Members", "number": "1.18.3.1" }, @@ -11097,7 +10806,7 @@ }, { "id": "delaywriter", - "href": "https://www.w3.org/TR/webaudio/#delaywriter", + "href": "https://www.w3.org/TR/webaudio-1.0/#delaywriter", "linkingText": [ "DelayWriter" ], @@ -11108,7 +10817,7 @@ "informative": false, "heading": { "id": "DelayNode-processing", - "href": "https://www.w3.org/TR/webaudio/#DelayNode-processing", + "href": "https://www.w3.org/TR/webaudio-1.0/#DelayNode-processing", "title": "Processing", "number": "1.18.4" }, @@ -11116,7 +10825,7 @@ }, { "id": "delayreader", - "href": "https://www.w3.org/TR/webaudio/#delayreader", + "href": "https://www.w3.org/TR/webaudio-1.0/#delayreader", "linkingText": [ "DelayReader" ], @@ -11127,7 +10836,7 @@ "informative": false, "heading": { "id": "DelayNode-processing", - "href": "https://www.w3.org/TR/webaudio/#DelayNode-processing", + "href": "https://www.w3.org/TR/webaudio-1.0/#DelayNode-processing", "title": "Processing", "number": "1.18.4" }, @@ -11135,9 +10844,9 @@ }, { "id": "DynamicsCompressorNode", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorNode", "linkingText": [ - "DynamicsCompressorNode" + "dynamicscompressornode" ], "localLinkingText": [], "type": "interface", @@ -11146,15 +10855,58 @@ "informative": false, "heading": { "id": "DynamicsCompressorNode", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorNode", "title": "The DynamicsCompressorNode Interface", "number": "1.19" }, "definedIn": "heading" }, + { + "id": "dynamicscompressornode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dynamicscompressornode", + "linkingText": [ + "DynamicsCompressorNode" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "DynamicsCompressorNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorNode", + "title": "The DynamicsCompressorNode Interface", + "number": "1.19" + }, + "definedIn": "pre" + }, + { + "id": "dom-dynamicscompressornode-dynamicscompressornode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressornode-dynamicscompressornode", + "linkingText": [ + "DynamicsCompressorNode(context, options)", + "constructor(context, options)", + "DynamicsCompressorNode(context)", + "constructor(context)" + ], + "localLinkingText": [], + "type": "constructor", + "for": [ + "DynamicsCompressorNode" + ], + "access": "public", + "informative": false, + "heading": { + "id": "DynamicsCompressorNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorNode", + "title": "The DynamicsCompressorNode Interface", + "number": "1.19" + }, + "definedIn": "pre" + }, { "id": "dom-dynamicscompressornode-dynamicscompressornode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-dynamicscompressornode-context-options-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressornode-dynamicscompressornode-context-options-context", "linkingText": [ "context" ], @@ -11170,7 +10922,7 @@ "informative": false, "heading": { "id": "DynamicsCompressorNode", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorNode", "title": "The DynamicsCompressorNode Interface", "number": "1.19" }, @@ -11178,7 +10930,7 @@ }, { "id": "dom-dynamicscompressornode-dynamicscompressornode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-dynamicscompressornode-context-options-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressornode-dynamicscompressornode-context-options-options", "linkingText": [ "options" ], @@ -11194,31 +10946,28 @@ "informative": false, "heading": { "id": "DynamicsCompressorNode", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorNode", "title": "The DynamicsCompressorNode Interface", "number": "1.19" }, "definedIn": "pre" }, { - "id": "dom-dynamicscompressornode-dynamicscompressornode", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-dynamicscompressornode", + "id": "dom-dynamicscompressornode-constructor-dynamicscompressornode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressornode-constructor-dynamicscompressornode", "linkingText": [ - "DynamicsCompressorNode(context, options)", - "constructor(context, options)", - "DynamicsCompressorNode(context)", - "constructor(context)" + "DynamicsCompressorNode(context, options)" ], "localLinkingText": [], - "type": "constructor", + "type": "method", "for": [ - "DynamicsCompressorNode" + "DynamicsCompressorNode/constructor()" ], "access": "public", "informative": false, "heading": { "id": "DynamicsCompressorNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorNode-constructors", "title": "Constructors", "number": "1.19.1" }, @@ -11226,7 +10975,7 @@ }, { "id": "dom-dynamicscompressornode-internal-reduction-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-internal-reduction-slot", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressornode-internal-reduction-slot", "linkingText": [ "[[internal reduction]]" ], @@ -11239,7 +10988,7 @@ "informative": false, "heading": { "id": "DynamicsCompressorNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorNode-constructors", "title": "Constructors", "number": "1.19.1" }, @@ -11247,7 +10996,7 @@ }, { "id": "dom-dynamicscompressornode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-constructor-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressornode-constructor-context", "linkingText": [ "context" ], @@ -11260,7 +11009,7 @@ "informative": false, "heading": { "id": "DynamicsCompressorNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorNode-constructors", "title": "Constructors", "number": "1.19.1" }, @@ -11268,7 +11017,7 @@ }, { "id": "dom-dynamicscompressornode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-constructor-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressornode-constructor-options", "linkingText": [ "options" ], @@ -11281,7 +11030,7 @@ "informative": false, "heading": { "id": "DynamicsCompressorNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorNode-constructors", "title": "Constructors", "number": "1.19.1" }, @@ -11289,7 +11038,7 @@ }, { "id": "dom-dynamicscompressornode-attack", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-attack", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressornode-attack", "linkingText": [ "attack" ], @@ -11302,7 +11051,7 @@ "informative": false, "heading": { "id": "DynamicsCompressorNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorNode-attributes", "title": "Attributes", "number": "1.19.2" }, @@ -11310,7 +11059,7 @@ }, { "id": "dom-dynamicscompressornode-knee", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-knee", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressornode-knee", "linkingText": [ "knee" ], @@ -11323,7 +11072,7 @@ "informative": false, "heading": { "id": "DynamicsCompressorNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorNode-attributes", "title": "Attributes", "number": "1.19.2" }, @@ -11331,7 +11080,7 @@ }, { "id": "dom-dynamicscompressornode-ratio", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-ratio", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressornode-ratio", "linkingText": [ "ratio" ], @@ -11344,7 +11093,7 @@ "informative": false, "heading": { "id": "DynamicsCompressorNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorNode-attributes", "title": "Attributes", "number": "1.19.2" }, @@ -11352,7 +11101,7 @@ }, { "id": "dom-dynamicscompressornode-reduction", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-reduction", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressornode-reduction", "linkingText": [ "reduction" ], @@ -11365,7 +11114,7 @@ "informative": false, "heading": { "id": "DynamicsCompressorNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorNode-attributes", "title": "Attributes", "number": "1.19.2" }, @@ -11373,7 +11122,7 @@ }, { "id": "dom-dynamicscompressornode-release", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-release", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressornode-release", "linkingText": [ "release" ], @@ -11386,7 +11135,7 @@ "informative": false, "heading": { "id": "DynamicsCompressorNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorNode-attributes", "title": "Attributes", "number": "1.19.2" }, @@ -11394,7 +11143,7 @@ }, { "id": "dom-dynamicscompressornode-threshold", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-threshold", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressornode-threshold", "linkingText": [ "threshold" ], @@ -11406,16 +11155,35 @@ "access": "public", "informative": false, "heading": { - "id": "DynamicsCompressorNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode-attributes", - "title": "Attributes", - "number": "1.19.2" + "id": "DynamicsCompressorNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorNode-attributes", + "title": "Attributes", + "number": "1.19.2" + }, + "definedIn": "dt" + }, + { + "id": "DynamicsCompressorOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorOptions", + "linkingText": [ + "dynamicscompressoroptions" + ], + "localLinkingText": [], + "type": "dictionary", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "DynamicsCompressorOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorOptions", + "title": "DynamicsCompressorOptions", + "number": "1.19.3" }, - "definedIn": "dt" + "definedIn": "heading" }, { - "id": "DynamicsCompressorOptions", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorOptions", + "id": "dictdef-dynamicscompressoroptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictdef-dynamicscompressoroptions", "linkingText": [ "DynamicsCompressorOptions" ], @@ -11426,15 +11194,15 @@ "informative": false, "heading": { "id": "DynamicsCompressorOptions", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorOptions", "title": "DynamicsCompressorOptions", "number": "1.19.3" }, - "definedIn": "heading" + "definedIn": "pre" }, { "id": "dom-dynamicscompressoroptions-attack", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressoroptions-attack", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressoroptions-attack", "linkingText": [ "attack" ], @@ -11447,7 +11215,7 @@ "informative": false, "heading": { "id": "dictionary-dynamicscompressoroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-dynamicscompressoroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-dynamicscompressoroptions-members", "title": "Dictionary DynamicsCompressorOptions Members", "number": "1.19.3.1" }, @@ -11455,7 +11223,7 @@ }, { "id": "dom-dynamicscompressoroptions-knee", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressoroptions-knee", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressoroptions-knee", "linkingText": [ "knee" ], @@ -11468,7 +11236,7 @@ "informative": false, "heading": { "id": "dictionary-dynamicscompressoroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-dynamicscompressoroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-dynamicscompressoroptions-members", "title": "Dictionary DynamicsCompressorOptions Members", "number": "1.19.3.1" }, @@ -11476,7 +11244,7 @@ }, { "id": "dom-dynamicscompressoroptions-ratio", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressoroptions-ratio", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressoroptions-ratio", "linkingText": [ "ratio" ], @@ -11489,7 +11257,7 @@ "informative": false, "heading": { "id": "dictionary-dynamicscompressoroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-dynamicscompressoroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-dynamicscompressoroptions-members", "title": "Dictionary DynamicsCompressorOptions Members", "number": "1.19.3.1" }, @@ -11497,7 +11265,7 @@ }, { "id": "dom-dynamicscompressoroptions-release", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressoroptions-release", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressoroptions-release", "linkingText": [ "release" ], @@ -11510,7 +11278,7 @@ "informative": false, "heading": { "id": "dictionary-dynamicscompressoroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-dynamicscompressoroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-dynamicscompressoroptions-members", "title": "Dictionary DynamicsCompressorOptions Members", "number": "1.19.3.1" }, @@ -11518,7 +11286,7 @@ }, { "id": "dom-dynamicscompressoroptions-threshold", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressoroptions-threshold", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressoroptions-threshold", "linkingText": [ "threshold" ], @@ -11531,7 +11299,7 @@ "informative": false, "heading": { "id": "dictionary-dynamicscompressoroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-dynamicscompressoroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-dynamicscompressoroptions-members", "title": "Dictionary DynamicsCompressorOptions Members", "number": "1.19.3.1" }, @@ -11539,7 +11307,7 @@ }, { "id": "envelopefollower", - "href": "https://www.w3.org/TR/webaudio/#envelopefollower", + "href": "https://www.w3.org/TR/webaudio-1.0/#envelopefollower", "linkingText": [ "EnvelopeFollower" ], @@ -11550,7 +11318,7 @@ "informative": false, "heading": { "id": "DynamicsCompressorOptions-processing", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorOptions-processing", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorOptions-processing", "title": "Processing", "number": "1.19.4" }, @@ -11558,7 +11326,7 @@ }, { "id": "dom-dynamicscompressornode-detector-average-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-detector-average-slot", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressornode-detector-average-slot", "linkingText": [ "[[detector average]]" ], @@ -11571,7 +11339,7 @@ "informative": false, "heading": { "id": "DynamicsCompressorOptions-processing", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorOptions-processing", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorOptions-processing", "title": "Processing", "number": "1.19.4" }, @@ -11579,7 +11347,7 @@ }, { "id": "dom-dynamicscompressornode-compressor-gain-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-compressor-gain-slot", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressornode-compressor-gain-slot", "linkingText": [ "[[compressor gain]]" ], @@ -11592,7 +11360,7 @@ "informative": false, "heading": { "id": "DynamicsCompressorOptions-processing", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorOptions-processing", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorOptions-processing", "title": "Processing", "number": "1.19.4" }, @@ -11600,7 +11368,7 @@ }, { "id": "computing-the-makeup-gain", - "href": "https://www.w3.org/TR/webaudio/#computing-the-makeup-gain", + "href": "https://www.w3.org/TR/webaudio-1.0/#computing-the-makeup-gain", "linkingText": [ "Computing the makeup gain" ], @@ -11611,7 +11379,7 @@ "informative": false, "heading": { "id": "DynamicsCompressorOptions-processing", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorOptions-processing", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorOptions-processing", "title": "Processing", "number": "1.19.4" }, @@ -11619,7 +11387,7 @@ }, { "id": "computing-the-envelope-rate", - "href": "https://www.w3.org/TR/webaudio/#computing-the-envelope-rate", + "href": "https://www.w3.org/TR/webaudio-1.0/#computing-the-envelope-rate", "linkingText": [ "Computing the envelope rate" ], @@ -11630,7 +11398,7 @@ "informative": false, "heading": { "id": "DynamicsCompressorOptions-processing", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorOptions-processing", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorOptions-processing", "title": "Processing", "number": "1.19.4" }, @@ -11638,7 +11406,7 @@ }, { "id": "detector-curve", - "href": "https://www.w3.org/TR/webaudio/#detector-curve", + "href": "https://www.w3.org/TR/webaudio-1.0/#detector-curve", "linkingText": [ "detector curve" ], @@ -11649,7 +11417,7 @@ "informative": false, "heading": { "id": "DynamicsCompressorOptions-processing", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorOptions-processing", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorOptions-processing", "title": "Processing", "number": "1.19.4" }, @@ -11657,7 +11425,7 @@ }, { "id": "compression-curve", - "href": "https://www.w3.org/TR/webaudio/#compression-curve", + "href": "https://www.w3.org/TR/webaudio-1.0/#compression-curve", "linkingText": [ "compression curve" ], @@ -11668,7 +11436,7 @@ "informative": false, "heading": { "id": "DynamicsCompressorOptions-processing", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorOptions-processing", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorOptions-processing", "title": "Processing", "number": "1.19.4" }, @@ -11676,7 +11444,7 @@ }, { "id": "linear-to-decibel", - "href": "https://www.w3.org/TR/webaudio/#linear-to-decibel", + "href": "https://www.w3.org/TR/webaudio-1.0/#linear-to-decibel", "linkingText": [ "linear gain unit to decibel" ], @@ -11687,7 +11455,7 @@ "informative": false, "heading": { "id": "DynamicsCompressorOptions-processing", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorOptions-processing", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorOptions-processing", "title": "Processing", "number": "1.19.4" }, @@ -11695,7 +11463,7 @@ }, { "id": "decibels-to-linear-gain-unit", - "href": "https://www.w3.org/TR/webaudio/#decibels-to-linear-gain-unit", + "href": "https://www.w3.org/TR/webaudio-1.0/#decibels-to-linear-gain-unit", "linkingText": [ "decibels to linear gain unit" ], @@ -11706,7 +11474,7 @@ "informative": false, "heading": { "id": "DynamicsCompressorOptions-processing", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorOptions-processing", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorOptions-processing", "title": "Processing", "number": "1.19.4" }, @@ -11714,9 +11482,9 @@ }, { "id": "GainNode", - "href": "https://www.w3.org/TR/webaudio/#GainNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#GainNode", "linkingText": [ - "GainNode" + "gainnode" ], "localLinkingText": [], "type": "interface", @@ -11725,15 +11493,58 @@ "informative": false, "heading": { "id": "GainNode", - "href": "https://www.w3.org/TR/webaudio/#GainNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#GainNode", "title": "The GainNode Interface", "number": "1.20" }, "definedIn": "heading" }, + { + "id": "gainnode", + "href": "https://www.w3.org/TR/webaudio-1.0/#gainnode", + "linkingText": [ + "GainNode" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "GainNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#GainNode", + "title": "The GainNode Interface", + "number": "1.20" + }, + "definedIn": "pre" + }, + { + "id": "dom-gainnode-gainnode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-gainnode-gainnode", + "linkingText": [ + "GainNode(context, options)", + "constructor(context, options)", + "GainNode(context)", + "constructor(context)" + ], + "localLinkingText": [], + "type": "constructor", + "for": [ + "GainNode" + ], + "access": "public", + "informative": false, + "heading": { + "id": "GainNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#GainNode", + "title": "The GainNode Interface", + "number": "1.20" + }, + "definedIn": "pre" + }, { "id": "dom-gainnode-gainnode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-gainnode-gainnode-context-options-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-gainnode-gainnode-context-options-context", "linkingText": [ "context" ], @@ -11749,7 +11560,7 @@ "informative": false, "heading": { "id": "GainNode", - "href": "https://www.w3.org/TR/webaudio/#GainNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#GainNode", "title": "The GainNode Interface", "number": "1.20" }, @@ -11757,7 +11568,7 @@ }, { "id": "dom-gainnode-gainnode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-gainnode-gainnode-context-options-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-gainnode-gainnode-context-options-options", "linkingText": [ "options" ], @@ -11773,31 +11584,28 @@ "informative": false, "heading": { "id": "GainNode", - "href": "https://www.w3.org/TR/webaudio/#GainNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#GainNode", "title": "The GainNode Interface", "number": "1.20" }, "definedIn": "pre" }, { - "id": "dom-gainnode-gainnode", - "href": "https://www.w3.org/TR/webaudio/#dom-gainnode-gainnode", + "id": "dom-gainnode-constructor-gainnode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-gainnode-constructor-gainnode", "linkingText": [ - "GainNode(context, options)", - "constructor(context, options)", - "GainNode(context)", - "constructor(context)" + "GainNode(context, options)" ], "localLinkingText": [], - "type": "constructor", + "type": "method", "for": [ - "GainNode" + "GainNode/constructor()" ], "access": "public", "informative": false, "heading": { "id": "GainNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#GainNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#GainNode-constructors", "title": "Constructors", "number": "1.20.1" }, @@ -11805,7 +11613,7 @@ }, { "id": "dom-gainnode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-gainnode-constructor-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-gainnode-constructor-context", "linkingText": [ "context" ], @@ -11818,7 +11626,7 @@ "informative": false, "heading": { "id": "GainNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#GainNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#GainNode-constructors", "title": "Constructors", "number": "1.20.1" }, @@ -11826,7 +11634,7 @@ }, { "id": "dom-gainnode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-gainnode-constructor-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-gainnode-constructor-options", "linkingText": [ "options" ], @@ -11839,7 +11647,7 @@ "informative": false, "heading": { "id": "GainNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#GainNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#GainNode-constructors", "title": "Constructors", "number": "1.20.1" }, @@ -11847,7 +11655,7 @@ }, { "id": "dom-gainnode-gain", - "href": "https://www.w3.org/TR/webaudio/#dom-gainnode-gain", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-gainnode-gain", "linkingText": [ "gain" ], @@ -11860,7 +11668,7 @@ "informative": false, "heading": { "id": "GainNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#GainNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#GainNode-attributes", "title": "Attributes", "number": "1.20.2" }, @@ -11868,9 +11676,9 @@ }, { "id": "GainOptions", - "href": "https://www.w3.org/TR/webaudio/#GainOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#GainOptions", "linkingText": [ - "GainOptions" + "gainoptions" ], "localLinkingText": [], "type": "dictionary", @@ -11879,15 +11687,34 @@ "informative": false, "heading": { "id": "GainOptions", - "href": "https://www.w3.org/TR/webaudio/#GainOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#GainOptions", "title": "GainOptions", "number": "1.20.3" }, "definedIn": "heading" }, + { + "id": "dictdef-gainoptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictdef-gainoptions", + "linkingText": [ + "GainOptions" + ], + "localLinkingText": [], + "type": "dictionary", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "GainOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#GainOptions", + "title": "GainOptions", + "number": "1.20.3" + }, + "definedIn": "pre" + }, { "id": "dom-gainoptions-gain", - "href": "https://www.w3.org/TR/webaudio/#dom-gainoptions-gain", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-gainoptions-gain", "linkingText": [ "gain" ], @@ -11900,7 +11727,7 @@ "informative": false, "heading": { "id": "dictionary-gainoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-gainoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-gainoptions-members", "title": "Dictionary GainOptions Members", "number": "1.20.3.1" }, @@ -11908,9 +11735,9 @@ }, { "id": "IIRFilterNode", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#IIRFilterNode", "linkingText": [ - "IIRFilterNode" + "iirfilternode" ], "localLinkingText": [], "type": "interface", @@ -11919,15 +11746,56 @@ "informative": false, "heading": { "id": "IIRFilterNode", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#IIRFilterNode", "title": "The IIRFilterNode Interface", "number": "1.21" }, "definedIn": "heading" }, + { + "id": "iirfilternode", + "href": "https://www.w3.org/TR/webaudio-1.0/#iirfilternode", + "linkingText": [ + "IIRFilterNode" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "IIRFilterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#IIRFilterNode", + "title": "The IIRFilterNode Interface", + "number": "1.21" + }, + "definedIn": "pre" + }, + { + "id": "dom-iirfilternode-iirfilternode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-iirfilternode-iirfilternode", + "linkingText": [ + "IIRFilterNode(context, options)", + "constructor(context, options)" + ], + "localLinkingText": [], + "type": "constructor", + "for": [ + "IIRFilterNode" + ], + "access": "public", + "informative": false, + "heading": { + "id": "IIRFilterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#IIRFilterNode", + "title": "The IIRFilterNode Interface", + "number": "1.21" + }, + "definedIn": "pre" + }, { "id": "dom-iirfilternode-iirfilternode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-iirfilternode-iirfilternode-context-options-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-iirfilternode-iirfilternode-context-options-context", "linkingText": [ "context" ], @@ -11941,7 +11809,7 @@ "informative": false, "heading": { "id": "IIRFilterNode", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#IIRFilterNode", "title": "The IIRFilterNode Interface", "number": "1.21" }, @@ -11949,7 +11817,7 @@ }, { "id": "dom-iirfilternode-iirfilternode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-iirfilternode-iirfilternode-context-options-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-iirfilternode-iirfilternode-context-options-options", "linkingText": [ "options" ], @@ -11963,7 +11831,7 @@ "informative": false, "heading": { "id": "IIRFilterNode", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#IIRFilterNode", "title": "The IIRFilterNode Interface", "number": "1.21" }, @@ -11971,7 +11839,7 @@ }, { "id": "dom-iirfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-frequencyhz", - "href": "https://www.w3.org/TR/webaudio/#dom-iirfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-frequencyhz", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-iirfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-frequencyhz", "linkingText": [ "frequencyHz" ], @@ -11984,7 +11852,7 @@ "informative": false, "heading": { "id": "IIRFilterNode", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#IIRFilterNode", "title": "The IIRFilterNode Interface", "number": "1.21" }, @@ -11992,7 +11860,7 @@ }, { "id": "dom-iirfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-magresponse", - "href": "https://www.w3.org/TR/webaudio/#dom-iirfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-magresponse", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-iirfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-magresponse", "linkingText": [ "magResponse" ], @@ -12005,7 +11873,7 @@ "informative": false, "heading": { "id": "IIRFilterNode", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#IIRFilterNode", "title": "The IIRFilterNode Interface", "number": "1.21" }, @@ -12013,7 +11881,7 @@ }, { "id": "dom-iirfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-phaseresponse", - "href": "https://www.w3.org/TR/webaudio/#dom-iirfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-phaseresponse", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-iirfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-phaseresponse", "linkingText": [ "phaseResponse" ], @@ -12026,29 +11894,28 @@ "informative": false, "heading": { "id": "IIRFilterNode", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#IIRFilterNode", "title": "The IIRFilterNode Interface", "number": "1.21" }, "definedIn": "pre" }, { - "id": "dom-iirfilternode-iirfilternode", - "href": "https://www.w3.org/TR/webaudio/#dom-iirfilternode-iirfilternode", + "id": "dom-iirfilternode-constructor-iirfilternode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-iirfilternode-constructor-iirfilternode", "linkingText": [ - "IIRFilterNode(context, options)", - "constructor(context, options)" + "IIRFilterNode(context, options)" ], "localLinkingText": [], "type": "constructor", "for": [ - "IIRFilterNode" + "IIRFilterNode/constructor()" ], "access": "public", "informative": false, "heading": { "id": "IIRFilterNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#IIRFilterNode-constructors", "title": "Constructors", "number": "1.21.1" }, @@ -12056,7 +11923,7 @@ }, { "id": "dom-iirfilternode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-iirfilternode-constructor-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-iirfilternode-constructor-context", "linkingText": [ "context" ], @@ -12069,7 +11936,7 @@ "informative": false, "heading": { "id": "IIRFilterNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#IIRFilterNode-constructors", "title": "Constructors", "number": "1.21.1" }, @@ -12077,7 +11944,7 @@ }, { "id": "dom-iirfilternode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-iirfilternode-constructor-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-iirfilternode-constructor-options", "linkingText": [ "options" ], @@ -12090,7 +11957,7 @@ "informative": false, "heading": { "id": "IIRFilterNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#IIRFilterNode-constructors", "title": "Constructors", "number": "1.21.1" }, @@ -12098,7 +11965,7 @@ }, { "id": "dom-iirfilternode-getfrequencyresponse", - "href": "https://www.w3.org/TR/webaudio/#dom-iirfilternode-getfrequencyresponse", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-iirfilternode-getfrequencyresponse", "linkingText": [ "getFrequencyResponse(frequencyHz, magResponse, phaseResponse)" ], @@ -12111,7 +11978,7 @@ "informative": false, "heading": { "id": "IIRFilterNode-methods", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#IIRFilterNode-methods", "title": "Methods", "number": "1.21.2" }, @@ -12119,7 +11986,7 @@ }, { "id": "dom-iirfilternode-getfrequencyresponse-frequencyhz", - "href": "https://www.w3.org/TR/webaudio/#dom-iirfilternode-getfrequencyresponse-frequencyhz", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-iirfilternode-getfrequencyresponse-frequencyhz", "linkingText": [ "frequencyHz" ], @@ -12132,7 +11999,7 @@ "informative": false, "heading": { "id": "IIRFilterNode-methods", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#IIRFilterNode-methods", "title": "Methods", "number": "1.21.2" }, @@ -12140,7 +12007,7 @@ }, { "id": "dom-iirfilternode-getfrequencyresponse-magresponse", - "href": "https://www.w3.org/TR/webaudio/#dom-iirfilternode-getfrequencyresponse-magresponse", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-iirfilternode-getfrequencyresponse-magresponse", "linkingText": [ "magResponse" ], @@ -12153,7 +12020,7 @@ "informative": false, "heading": { "id": "IIRFilterNode-methods", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#IIRFilterNode-methods", "title": "Methods", "number": "1.21.2" }, @@ -12161,7 +12028,7 @@ }, { "id": "dom-iirfilternode-getfrequencyresponse-phaseresponse", - "href": "https://www.w3.org/TR/webaudio/#dom-iirfilternode-getfrequencyresponse-phaseresponse", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-iirfilternode-getfrequencyresponse-phaseresponse", "linkingText": [ "phaseResponse" ], @@ -12174,7 +12041,7 @@ "informative": false, "heading": { "id": "IIRFilterNode-methods", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#IIRFilterNode-methods", "title": "Methods", "number": "1.21.2" }, @@ -12182,9 +12049,9 @@ }, { "id": "IIRFilterOptions", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#IIRFilterOptions", "linkingText": [ - "IIRFilterOptions" + "iirfilteroptions" ], "localLinkingText": [], "type": "dictionary", @@ -12193,15 +12060,34 @@ "informative": false, "heading": { "id": "IIRFilterOptions", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#IIRFilterOptions", "title": "IIRFilterOptions", "number": "1.21.3" }, "definedIn": "heading" }, + { + "id": "dictdef-iirfilteroptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictdef-iirfilteroptions", + "linkingText": [ + "IIRFilterOptions" + ], + "localLinkingText": [], + "type": "dictionary", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "IIRFilterOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#IIRFilterOptions", + "title": "IIRFilterOptions", + "number": "1.21.3" + }, + "definedIn": "pre" + }, { "id": "dom-iirfilteroptions-feedforward", - "href": "https://www.w3.org/TR/webaudio/#dom-iirfilteroptions-feedforward", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-iirfilteroptions-feedforward", "linkingText": [ "feedforward" ], @@ -12214,7 +12100,7 @@ "informative": false, "heading": { "id": "dictionary-iirfilteroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-iirfilteroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-iirfilteroptions-members", "title": "Dictionary IIRFilterOptions Members", "number": "1.21.3.1" }, @@ -12222,7 +12108,7 @@ }, { "id": "dom-iirfilteroptions-feedback", - "href": "https://www.w3.org/TR/webaudio/#dom-iirfilteroptions-feedback", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-iirfilteroptions-feedback", "linkingText": [ "feedback" ], @@ -12235,7 +12121,7 @@ "informative": false, "heading": { "id": "dictionary-iirfilteroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-iirfilteroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-iirfilteroptions-members", "title": "Dictionary IIRFilterOptions Members", "number": "1.21.3.1" }, @@ -12243,9 +12129,9 @@ }, { "id": "MediaElementAudioSourceNode", - "href": "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaElementAudioSourceNode", "linkingText": [ - "MediaElementAudioSourceNode" + "mediaelementaudiosourcenode" ], "localLinkingText": [], "type": "interface", @@ -12254,15 +12140,34 @@ "informative": false, "heading": { "id": "MediaElementAudioSourceNode", - "href": "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaElementAudioSourceNode", "title": "The MediaElementAudioSourceNode Interface", "number": "1.22" }, "definedIn": "heading" }, + { + "id": "mediaelementaudiosourcenode", + "href": "https://www.w3.org/TR/webaudio-1.0/#mediaelementaudiosourcenode", + "linkingText": [ + "MediaElementAudioSourceNode" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "MediaElementAudioSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaElementAudioSourceNode", + "title": "The MediaElementAudioSourceNode Interface", + "number": "1.22" + }, + "definedIn": "pre" + }, { "id": "dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode-context-options-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode-context-options-context", "linkingText": [ "context" ], @@ -12276,7 +12181,7 @@ "informative": false, "heading": { "id": "MediaElementAudioSourceNode", - "href": "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaElementAudioSourceNode", "title": "The MediaElementAudioSourceNode Interface", "number": "1.22" }, @@ -12284,7 +12189,7 @@ }, { "id": "dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode-context-options-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode-context-options-options", "linkingText": [ "options" ], @@ -12298,7 +12203,7 @@ "informative": false, "heading": { "id": "MediaElementAudioSourceNode", - "href": "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaElementAudioSourceNode", "title": "The MediaElementAudioSourceNode Interface", "number": "1.22" }, @@ -12306,7 +12211,7 @@ }, { "id": "dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode", - "href": "https://www.w3.org/TR/webaudio/#dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode", "linkingText": [ "MediaElementAudioSourceNode(context, options)", "constructor(context, options)" @@ -12320,7 +12225,7 @@ "informative": false, "heading": { "id": "MediaElementAudioSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaElementAudioSourceNode-constructors", "title": "Constructors", "number": "1.22.1" }, @@ -12328,7 +12233,7 @@ }, { "id": "dom-mediaelementaudiosourcenode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-mediaelementaudiosourcenode-constructor-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-mediaelementaudiosourcenode-constructor-context", "linkingText": [ "context" ], @@ -12341,7 +12246,7 @@ "informative": false, "heading": { "id": "MediaElementAudioSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaElementAudioSourceNode-constructors", "title": "Constructors", "number": "1.22.1" }, @@ -12349,7 +12254,7 @@ }, { "id": "dom-mediaelementaudiosourcenode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-mediaelementaudiosourcenode-constructor-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-mediaelementaudiosourcenode-constructor-options", "linkingText": [ "options" ], @@ -12362,7 +12267,7 @@ "informative": false, "heading": { "id": "MediaElementAudioSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaElementAudioSourceNode-constructors", "title": "Constructors", "number": "1.22.1" }, @@ -12370,7 +12275,7 @@ }, { "id": "dom-mediaelementaudiosourcenode-mediaelement", - "href": "https://www.w3.org/TR/webaudio/#dom-mediaelementaudiosourcenode-mediaelement", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-mediaelementaudiosourcenode-mediaelement", "linkingText": [ "mediaElement" ], @@ -12383,7 +12288,7 @@ "informative": false, "heading": { "id": "MediaElementAudioSourceNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaElementAudioSourceNode-attributes", "title": "Attributes", "number": "1.22.2" }, @@ -12391,9 +12296,9 @@ }, { "id": "MediaElementAudioSourceOptions", - "href": "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaElementAudioSourceOptions", "linkingText": [ - "MediaElementAudioSourceOptions" + "mediaelementaudiosourceoptions" ], "localLinkingText": [], "type": "dictionary", @@ -12402,15 +12307,34 @@ "informative": false, "heading": { "id": "MediaElementAudioSourceOptions", - "href": "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaElementAudioSourceOptions", "title": "MediaElementAudioSourceOptions", "number": "1.22.3" }, "definedIn": "heading" }, + { + "id": "dictdef-mediaelementaudiosourceoptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictdef-mediaelementaudiosourceoptions", + "linkingText": [ + "MediaElementAudioSourceOptions" + ], + "localLinkingText": [], + "type": "dictionary", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "MediaElementAudioSourceOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaElementAudioSourceOptions", + "title": "MediaElementAudioSourceOptions", + "number": "1.22.3" + }, + "definedIn": "pre" + }, { "id": "dom-mediaelementaudiosourceoptions-mediaelement", - "href": "https://www.w3.org/TR/webaudio/#dom-mediaelementaudiosourceoptions-mediaelement", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-mediaelementaudiosourceoptions-mediaelement", "linkingText": [ "mediaElement" ], @@ -12423,7 +12347,7 @@ "informative": false, "heading": { "id": "dictionary-mediaelementaudiosourceoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-mediaelementaudiosourceoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-mediaelementaudiosourceoptions-members", "title": "Dictionary MediaElementAudioSourceOptions Members", "number": "1.22.3.1" }, @@ -12431,9 +12355,9 @@ }, { "id": "MediaStreamAudioDestinationNode", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioDestinationNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioDestinationNode", "linkingText": [ - "MediaStreamAudioDestinationNode" + "mediastreamaudiodestinationnode" ], "localLinkingText": [], "type": "interface", @@ -12442,15 +12366,34 @@ "informative": false, "heading": { "id": "MediaStreamAudioDestinationNode", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioDestinationNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioDestinationNode", "title": "The MediaStreamAudioDestinationNode Interface", "number": "1.23" }, "definedIn": "heading" }, + { + "id": "mediastreamaudiodestinationnode", + "href": "https://www.w3.org/TR/webaudio-1.0/#mediastreamaudiodestinationnode", + "linkingText": [ + "MediaStreamAudioDestinationNode" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "MediaStreamAudioDestinationNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioDestinationNode", + "title": "The MediaStreamAudioDestinationNode Interface", + "number": "1.23" + }, + "definedIn": "pre" + }, { "id": "dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode-context-options-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode-context-options-context", "linkingText": [ "context" ], @@ -12466,7 +12409,7 @@ "informative": false, "heading": { "id": "MediaStreamAudioDestinationNode", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioDestinationNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioDestinationNode", "title": "The MediaStreamAudioDestinationNode Interface", "number": "1.23" }, @@ -12474,7 +12417,7 @@ }, { "id": "dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode-context-options-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode-context-options-options", "linkingText": [ "options" ], @@ -12490,7 +12433,7 @@ "informative": false, "heading": { "id": "MediaStreamAudioDestinationNode", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioDestinationNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioDestinationNode", "title": "The MediaStreamAudioDestinationNode Interface", "number": "1.23" }, @@ -12498,7 +12441,7 @@ }, { "id": "dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode", "linkingText": [ "MediaStreamAudioDestinationNode(context, options)", "constructor(context, options)", @@ -12514,7 +12457,7 @@ "informative": false, "heading": { "id": "MediaStreamAudioDestinationNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioDestinationNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioDestinationNode-constructors", "title": "Constructors", "number": "1.23.1" }, @@ -12522,7 +12465,7 @@ }, { "id": "dom-mediastreamaudiodestinationnode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiodestinationnode-constructor-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamaudiodestinationnode-constructor-context", "linkingText": [ "context" ], @@ -12535,7 +12478,7 @@ "informative": false, "heading": { "id": "MediaStreamAudioDestinationNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioDestinationNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioDestinationNode-constructors", "title": "Constructors", "number": "1.23.1" }, @@ -12543,7 +12486,7 @@ }, { "id": "dom-mediastreamaudiodestinationnode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiodestinationnode-constructor-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamaudiodestinationnode-constructor-options", "linkingText": [ "options" ], @@ -12556,7 +12499,7 @@ "informative": false, "heading": { "id": "MediaStreamAudioDestinationNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioDestinationNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioDestinationNode-constructors", "title": "Constructors", "number": "1.23.1" }, @@ -12564,7 +12507,7 @@ }, { "id": "dom-mediastreamaudiodestinationnode-stream", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiodestinationnode-stream", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamaudiodestinationnode-stream", "linkingText": [ "stream" ], @@ -12577,7 +12520,7 @@ "informative": false, "heading": { "id": "MediaStreamAudioDestinationNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioDestinationNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioDestinationNode-attributes", "title": "Attributes", "number": "1.23.2" }, @@ -12585,9 +12528,9 @@ }, { "id": "MediaStreamAudioSourceNode", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioSourceNode", "linkingText": [ - "MediaStreamAudioSourceNode" + "mediastreamaudiosourcenode" ], "localLinkingText": [], "type": "interface", @@ -12596,15 +12539,34 @@ "informative": false, "heading": { "id": "MediaStreamAudioSourceNode", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioSourceNode", "title": "The MediaStreamAudioSourceNode Interface", "number": "1.24" }, "definedIn": "heading" }, + { + "id": "mediastreamaudiosourcenode", + "href": "https://www.w3.org/TR/webaudio-1.0/#mediastreamaudiosourcenode", + "linkingText": [ + "MediaStreamAudioSourceNode" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "MediaStreamAudioSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioSourceNode", + "title": "The MediaStreamAudioSourceNode Interface", + "number": "1.24" + }, + "definedIn": "pre" + }, { "id": "dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode-context-options-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode-context-options-context", "linkingText": [ "context" ], @@ -12618,7 +12580,7 @@ "informative": false, "heading": { "id": "MediaStreamAudioSourceNode", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioSourceNode", "title": "The MediaStreamAudioSourceNode Interface", "number": "1.24" }, @@ -12626,7 +12588,7 @@ }, { "id": "dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode-context-options-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode-context-options-options", "linkingText": [ "options" ], @@ -12640,7 +12602,7 @@ "informative": false, "heading": { "id": "MediaStreamAudioSourceNode", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioSourceNode", "title": "The MediaStreamAudioSourceNode Interface", "number": "1.24" }, @@ -12648,7 +12610,7 @@ }, { "id": "dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode", "linkingText": [ "MediaStreamAudioSourceNode(context, options)", "constructor(context, options)" @@ -12662,7 +12624,7 @@ "informative": false, "heading": { "id": "MediaStreamAudioSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioSourceNode-constructors", "title": "Constructors", "number": "1.24.1" }, @@ -12670,7 +12632,7 @@ }, { "id": "dom-mediastreamaudiosourcenode-input-track-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourcenode-input-track-slot", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamaudiosourcenode-input-track-slot", "linkingText": [ "[[input track]]" ], @@ -12683,7 +12645,7 @@ "informative": false, "heading": { "id": "MediaStreamAudioSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioSourceNode-constructors", "title": "Constructors", "number": "1.24.1" }, @@ -12691,7 +12653,7 @@ }, { "id": "dom-mediastreamaudiosourcenode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourcenode-constructor-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamaudiosourcenode-constructor-context", "linkingText": [ "context" ], @@ -12704,7 +12666,7 @@ "informative": false, "heading": { "id": "MediaStreamAudioSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioSourceNode-constructors", "title": "Constructors", "number": "1.24.1" }, @@ -12712,7 +12674,7 @@ }, { "id": "dom-mediastreamaudiosourcenode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourcenode-constructor-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamaudiosourcenode-constructor-options", "linkingText": [ "options" ], @@ -12725,7 +12687,7 @@ "informative": false, "heading": { "id": "MediaStreamAudioSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioSourceNode-constructors", "title": "Constructors", "number": "1.24.1" }, @@ -12733,7 +12695,7 @@ }, { "id": "dom-mediastreamaudiosourcenode-mediastream", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourcenode-mediastream", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamaudiosourcenode-mediastream", "linkingText": [ "mediaStream" ], @@ -12746,7 +12708,7 @@ "informative": false, "heading": { "id": "MediaStreamAudioSourceNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioSourceNode-attributes", "title": "Attributes", "number": "1.24.2" }, @@ -12754,9 +12716,9 @@ }, { "id": "MediaStreamAudioSourceOptions", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioSourceOptions", "linkingText": [ - "MediaStreamAudioSourceOptions" + "mediastreamaudiosourceoptions" ], "localLinkingText": [], "type": "dictionary", @@ -12765,15 +12727,34 @@ "informative": false, "heading": { "id": "MediaStreamAudioSourceOptions", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioSourceOptions", "title": "MediaStreamAudioSourceOptions", "number": "1.24.3" }, "definedIn": "heading" }, + { + "id": "dictdef-mediastreamaudiosourceoptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictdef-mediastreamaudiosourceoptions", + "linkingText": [ + "MediaStreamAudioSourceOptions" + ], + "localLinkingText": [], + "type": "dictionary", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "MediaStreamAudioSourceOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioSourceOptions", + "title": "MediaStreamAudioSourceOptions", + "number": "1.24.3" + }, + "definedIn": "pre" + }, { "id": "dom-mediastreamaudiosourceoptions-mediastream", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourceoptions-mediastream", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamaudiosourceoptions-mediastream", "linkingText": [ "mediaStream" ], @@ -12786,7 +12767,7 @@ "informative": false, "heading": { "id": "dictionary-mediastreamaudiosourceoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-mediastreamaudiosourceoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-mediastreamaudiosourceoptions-members", "title": "Dictionary MediaStreamAudioSourceOptions Members", "number": "1.24.3.1" }, @@ -12794,9 +12775,9 @@ }, { "id": "MediaStreamTrackAudioSourceNode", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamTrackAudioSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamTrackAudioSourceNode", "linkingText": [ - "MediaStreamTrackAudioSourceNode" + "mediastreamtrackaudiosourcenode" ], "localLinkingText": [], "type": "interface", @@ -12805,15 +12786,34 @@ "informative": false, "heading": { "id": "MediaStreamTrackAudioSourceNode", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamTrackAudioSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamTrackAudioSourceNode", "title": "The MediaStreamTrackAudioSourceNode Interface", "number": "1.25" }, "definedIn": "heading" }, + { + "id": "mediastreamtrackaudiosourcenode", + "href": "https://www.w3.org/TR/webaudio-1.0/#mediastreamtrackaudiosourcenode", + "linkingText": [ + "MediaStreamTrackAudioSourceNode" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "MediaStreamTrackAudioSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamTrackAudioSourceNode", + "title": "The MediaStreamTrackAudioSourceNode Interface", + "number": "1.25" + }, + "definedIn": "pre" + }, { "id": "dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode-context-options-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode-context-options-context", "linkingText": [ "context" ], @@ -12827,7 +12827,7 @@ "informative": false, "heading": { "id": "MediaStreamTrackAudioSourceNode", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamTrackAudioSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamTrackAudioSourceNode", "title": "The MediaStreamTrackAudioSourceNode Interface", "number": "1.25" }, @@ -12835,7 +12835,7 @@ }, { "id": "dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode-context-options-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode-context-options-options", "linkingText": [ "options" ], @@ -12849,7 +12849,7 @@ "informative": false, "heading": { "id": "MediaStreamTrackAudioSourceNode", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamTrackAudioSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamTrackAudioSourceNode", "title": "The MediaStreamTrackAudioSourceNode Interface", "number": "1.25" }, @@ -12857,7 +12857,7 @@ }, { "id": "dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode", "linkingText": [ "MediaStreamTrackAudioSourceNode(context, options)", "constructor(context, options)" @@ -12871,7 +12871,7 @@ "informative": false, "heading": { "id": "MediaStreamTrackAudioSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamTrackAudioSourceNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamTrackAudioSourceNode-constructors", "title": "Constructors", "number": "1.25.1" }, @@ -12879,7 +12879,7 @@ }, { "id": "dom-mediastreamtrackaudiosourcenode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamtrackaudiosourcenode-constructor-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamtrackaudiosourcenode-constructor-context", "linkingText": [ "context" ], @@ -12892,7 +12892,7 @@ "informative": false, "heading": { "id": "MediaStreamTrackAudioSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamTrackAudioSourceNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamTrackAudioSourceNode-constructors", "title": "Constructors", "number": "1.25.1" }, @@ -12900,7 +12900,7 @@ }, { "id": "dom-mediastreamtrackaudiosourcenode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamtrackaudiosourcenode-constructor-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamtrackaudiosourcenode-constructor-options", "linkingText": [ "options" ], @@ -12913,15 +12913,34 @@ "informative": false, "heading": { "id": "MediaStreamTrackAudioSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamTrackAudioSourceNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamTrackAudioSourceNode-constructors", "title": "Constructors", "number": "1.25.1" }, "definedIn": "table" }, { - "id": "MediaStreamTrackAudioSourceOptions", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamTrackAudioSourceOptions", + "id": "MediaStreamTrackAudioSourceOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamTrackAudioSourceOptions", + "linkingText": [ + "mediastreamtrackaudiosourceoptions" + ], + "localLinkingText": [], + "type": "dictionary", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "MediaStreamTrackAudioSourceOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamTrackAudioSourceOptions", + "title": "MediaStreamTrackAudioSourceOptions", + "number": "1.25.2" + }, + "definedIn": "heading" + }, + { + "id": "dictdef-mediastreamtrackaudiosourceoptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictdef-mediastreamtrackaudiosourceoptions", "linkingText": [ "MediaStreamTrackAudioSourceOptions" ], @@ -12932,15 +12951,15 @@ "informative": false, "heading": { "id": "MediaStreamTrackAudioSourceOptions", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamTrackAudioSourceOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamTrackAudioSourceOptions", "title": "MediaStreamTrackAudioSourceOptions", "number": "1.25.2" }, - "definedIn": "heading" + "definedIn": "pre" }, { "id": "dom-mediastreamtrackaudiosourceoptions-mediastreamtrack", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamtrackaudiosourceoptions-mediastreamtrack", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamtrackaudiosourceoptions-mediastreamtrack", "linkingText": [ "mediaStreamTrack" ], @@ -12953,7 +12972,7 @@ "informative": false, "heading": { "id": "dictionary-mediastreamtrackaudiosourceoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-mediastreamtrackaudiosourceoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-mediastreamtrackaudiosourceoptions-members", "title": "Dictionary MediaStreamTrackAudioSourceOptions Members", "number": "1.25.2.1" }, @@ -12961,9 +12980,9 @@ }, { "id": "OscillatorNode", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#OscillatorNode", "linkingText": [ - "OscillatorNode" + "oscillatornode" ], "localLinkingText": [], "type": "interface", @@ -12972,7 +12991,7 @@ "informative": false, "heading": { "id": "OscillatorNode", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#OscillatorNode", "title": "The OscillatorNode Interface", "number": "1.26" }, @@ -12980,7 +12999,7 @@ }, { "id": "computedoscfrequency", - "href": "https://www.w3.org/TR/webaudio/#computedoscfrequency", + "href": "https://www.w3.org/TR/webaudio-1.0/#computedoscfrequency", "linkingText": [ "computedOscFrequency" ], @@ -12991,7 +13010,7 @@ "informative": false, "heading": { "id": "OscillatorNode", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#OscillatorNode", "title": "The OscillatorNode Interface", "number": "1.26" }, @@ -12999,7 +13018,7 @@ }, { "id": "enumdef-oscillatortype", - "href": "https://www.w3.org/TR/webaudio/#enumdef-oscillatortype", + "href": "https://www.w3.org/TR/webaudio-1.0/#enumdef-oscillatortype", "linkingText": [ "OscillatorType" ], @@ -13010,7 +13029,7 @@ "informative": false, "heading": { "id": "OscillatorNode", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#OscillatorNode", "title": "The OscillatorNode Interface", "number": "1.26" }, @@ -13018,7 +13037,7 @@ }, { "id": "dom-oscillatortype-sine", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatortype-sine", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatortype-sine", "linkingText": [ "\"sine\"", "sine" @@ -13032,7 +13051,7 @@ "informative": false, "heading": { "id": "OscillatorNode", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#OscillatorNode", "title": "The OscillatorNode Interface", "number": "1.26" }, @@ -13040,7 +13059,7 @@ }, { "id": "dom-oscillatortype-square", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatortype-square", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatortype-square", "linkingText": [ "\"square\"", "square" @@ -13054,7 +13073,7 @@ "informative": false, "heading": { "id": "OscillatorNode", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#OscillatorNode", "title": "The OscillatorNode Interface", "number": "1.26" }, @@ -13062,7 +13081,7 @@ }, { "id": "dom-oscillatortype-sawtooth", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatortype-sawtooth", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatortype-sawtooth", "linkingText": [ "\"sawtooth\"", "sawtooth" @@ -13076,7 +13095,7 @@ "informative": false, "heading": { "id": "OscillatorNode", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#OscillatorNode", "title": "The OscillatorNode Interface", "number": "1.26" }, @@ -13084,7 +13103,7 @@ }, { "id": "dom-oscillatortype-triangle", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatortype-triangle", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatortype-triangle", "linkingText": [ "\"triangle\"", "triangle" @@ -13098,7 +13117,7 @@ "informative": false, "heading": { "id": "OscillatorNode", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#OscillatorNode", "title": "The OscillatorNode Interface", "number": "1.26" }, @@ -13106,7 +13125,7 @@ }, { "id": "dom-oscillatortype-custom", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatortype-custom", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatortype-custom", "linkingText": [ "\"custom\"", "custom" @@ -13120,15 +13139,34 @@ "informative": false, "heading": { "id": "OscillatorNode", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#OscillatorNode", "title": "The OscillatorNode Interface", "number": "1.26" }, "definedIn": "table" }, + { + "id": "oscillatornode", + "href": "https://www.w3.org/TR/webaudio-1.0/#oscillatornode", + "linkingText": [ + "OscillatorNode" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "OscillatorNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#OscillatorNode", + "title": "The OscillatorNode Interface", + "number": "1.26" + }, + "definedIn": "pre" + }, { "id": "dom-oscillatornode-oscillatornode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatornode-oscillatornode-context-options-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatornode-oscillatornode-context-options-context", "linkingText": [ "context" ], @@ -13144,7 +13182,7 @@ "informative": false, "heading": { "id": "OscillatorNode", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#OscillatorNode", "title": "The OscillatorNode Interface", "number": "1.26" }, @@ -13152,7 +13190,7 @@ }, { "id": "dom-oscillatornode-oscillatornode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatornode-oscillatornode-context-options-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatornode-oscillatornode-context-options-options", "linkingText": [ "options" ], @@ -13168,7 +13206,7 @@ "informative": false, "heading": { "id": "OscillatorNode", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#OscillatorNode", "title": "The OscillatorNode Interface", "number": "1.26" }, @@ -13176,7 +13214,7 @@ }, { "id": "dom-oscillatornode-setperiodicwave-periodicwave-periodicwave", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatornode-setperiodicwave-periodicwave-periodicwave", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatornode-setperiodicwave-periodicwave-periodicwave", "linkingText": [ "periodicWave" ], @@ -13189,7 +13227,7 @@ "informative": false, "heading": { "id": "OscillatorNode", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#OscillatorNode", "title": "The OscillatorNode Interface", "number": "1.26" }, @@ -13197,7 +13235,7 @@ }, { "id": "dom-oscillatornode-oscillatornode", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatornode-oscillatornode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatornode-oscillatornode", "linkingText": [ "OscillatorNode(context, options)", "constructor(context, options)", @@ -13213,7 +13251,7 @@ "informative": false, "heading": { "id": "OscillatorNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#OscillatorNode-constructors", "title": "Constructors", "number": "1.26.1" }, @@ -13221,7 +13259,7 @@ }, { "id": "dom-oscillatornode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatornode-constructor-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatornode-constructor-context", "linkingText": [ "context" ], @@ -13234,7 +13272,7 @@ "informative": false, "heading": { "id": "OscillatorNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#OscillatorNode-constructors", "title": "Constructors", "number": "1.26.1" }, @@ -13242,7 +13280,7 @@ }, { "id": "dom-oscillatornode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatornode-constructor-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatornode-constructor-options", "linkingText": [ "options" ], @@ -13255,7 +13293,7 @@ "informative": false, "heading": { "id": "OscillatorNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#OscillatorNode-constructors", "title": "Constructors", "number": "1.26.1" }, @@ -13263,7 +13301,7 @@ }, { "id": "dom-oscillatornode-detune", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatornode-detune", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatornode-detune", "linkingText": [ "detune" ], @@ -13276,7 +13314,7 @@ "informative": false, "heading": { "id": "OscillatorNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#OscillatorNode-attributes", "title": "Attributes", "number": "1.26.2" }, @@ -13284,7 +13322,7 @@ }, { "id": "dom-oscillatornode-frequency", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatornode-frequency", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatornode-frequency", "linkingText": [ "frequency" ], @@ -13297,7 +13335,7 @@ "informative": false, "heading": { "id": "OscillatorNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#OscillatorNode-attributes", "title": "Attributes", "number": "1.26.2" }, @@ -13305,7 +13343,7 @@ }, { "id": "dom-oscillatornode-type", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatornode-type", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatornode-type", "linkingText": [ "type" ], @@ -13318,7 +13356,7 @@ "informative": false, "heading": { "id": "OscillatorNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#OscillatorNode-attributes", "title": "Attributes", "number": "1.26.2" }, @@ -13326,7 +13364,7 @@ }, { "id": "dom-oscillatornode-setperiodicwave", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatornode-setperiodicwave", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatornode-setperiodicwave", "linkingText": [ "setPeriodicWave(periodicWave)" ], @@ -13339,7 +13377,7 @@ "informative": false, "heading": { "id": "OscillatorNode-methods", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#OscillatorNode-methods", "title": "Methods", "number": "1.26.3" }, @@ -13347,7 +13385,7 @@ }, { "id": "dom-oscillatornode-setperiodicwave-periodicwave", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatornode-setperiodicwave-periodicwave", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatornode-setperiodicwave-periodicwave", "linkingText": [ "periodicWave" ], @@ -13360,7 +13398,7 @@ "informative": false, "heading": { "id": "OscillatorNode-methods", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#OscillatorNode-methods", "title": "Methods", "number": "1.26.3" }, @@ -13368,9 +13406,9 @@ }, { "id": "OscillatorOptions", - "href": "https://www.w3.org/TR/webaudio/#OscillatorOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#OscillatorOptions", "linkingText": [ - "OscillatorOptions" + "oscillatoroptions" ], "localLinkingText": [], "type": "dictionary", @@ -13379,15 +13417,34 @@ "informative": false, "heading": { "id": "OscillatorOptions", - "href": "https://www.w3.org/TR/webaudio/#OscillatorOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#OscillatorOptions", "title": "OscillatorOptions", "number": "1.26.4" }, "definedIn": "heading" }, + { + "id": "dictdef-oscillatoroptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictdef-oscillatoroptions", + "linkingText": [ + "OscillatorOptions" + ], + "localLinkingText": [], + "type": "dictionary", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "OscillatorOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#OscillatorOptions", + "title": "OscillatorOptions", + "number": "1.26.4" + }, + "definedIn": "pre" + }, { "id": "dom-oscillatoroptions-detune", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatoroptions-detune", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatoroptions-detune", "linkingText": [ "detune" ], @@ -13400,7 +13457,7 @@ "informative": false, "heading": { "id": "dictionary-oscillatoroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-oscillatoroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-oscillatoroptions-members", "title": "Dictionary OscillatorOptions Members", "number": "1.26.4.1" }, @@ -13408,7 +13465,7 @@ }, { "id": "dom-oscillatoroptions-frequency", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatoroptions-frequency", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatoroptions-frequency", "linkingText": [ "frequency" ], @@ -13421,7 +13478,7 @@ "informative": false, "heading": { "id": "dictionary-oscillatoroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-oscillatoroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-oscillatoroptions-members", "title": "Dictionary OscillatorOptions Members", "number": "1.26.4.1" }, @@ -13429,7 +13486,7 @@ }, { "id": "dom-oscillatoroptions-periodicwave", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatoroptions-periodicwave", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatoroptions-periodicwave", "linkingText": [ "periodicWave" ], @@ -13442,7 +13499,7 @@ "informative": false, "heading": { "id": "dictionary-oscillatoroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-oscillatoroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-oscillatoroptions-members", "title": "Dictionary OscillatorOptions Members", "number": "1.26.4.1" }, @@ -13450,7 +13507,7 @@ }, { "id": "dom-oscillatoroptions-type", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatoroptions-type", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatoroptions-type", "linkingText": [ "type" ], @@ -13463,7 +13520,7 @@ "informative": false, "heading": { "id": "dictionary-oscillatoroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-oscillatoroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-oscillatoroptions-members", "title": "Dictionary OscillatorOptions Members", "number": "1.26.4.1" }, @@ -13471,9 +13528,9 @@ }, { "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode", "linkingText": [ - "PannerNode" + "pannernode" ], "localLinkingText": [], "type": "interface", @@ -13482,7 +13539,7 @@ "informative": false, "heading": { "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode", "title": "The PannerNode Interface", "number": "1.27" }, @@ -13490,7 +13547,7 @@ }, { "id": "enumdef-panningmodeltype", - "href": "https://www.w3.org/TR/webaudio/#enumdef-panningmodeltype", + "href": "https://www.w3.org/TR/webaudio-1.0/#enumdef-panningmodeltype", "linkingText": [ "PanningModelType" ], @@ -13501,7 +13558,7 @@ "informative": false, "heading": { "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode", "title": "The PannerNode Interface", "number": "1.27" }, @@ -13509,7 +13566,7 @@ }, { "id": "dom-panningmodeltype-equalpower", - "href": "https://www.w3.org/TR/webaudio/#dom-panningmodeltype-equalpower", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-panningmodeltype-equalpower", "linkingText": [ "\"equalpower\"", "equalpower" @@ -13523,7 +13580,7 @@ "informative": false, "heading": { "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode", "title": "The PannerNode Interface", "number": "1.27" }, @@ -13531,7 +13588,7 @@ }, { "id": "dom-panningmodeltype-hrtf", - "href": "https://www.w3.org/TR/webaudio/#dom-panningmodeltype-hrtf", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-panningmodeltype-hrtf", "linkingText": [ "\"HRTF\"", "HRTF" @@ -13545,7 +13602,7 @@ "informative": false, "heading": { "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode", "title": "The PannerNode Interface", "number": "1.27" }, @@ -13553,7 +13610,7 @@ }, { "id": "effective-automation-rate", - "href": "https://www.w3.org/TR/webaudio/#effective-automation-rate", + "href": "https://www.w3.org/TR/webaudio-1.0/#effective-automation-rate", "linkingText": [ "effective automation rate" ], @@ -13564,7 +13621,7 @@ "informative": false, "heading": { "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode", "title": "The PannerNode Interface", "number": "1.27" }, @@ -13572,7 +13629,7 @@ }, { "id": "enumdef-distancemodeltype", - "href": "https://www.w3.org/TR/webaudio/#enumdef-distancemodeltype", + "href": "https://www.w3.org/TR/webaudio-1.0/#enumdef-distancemodeltype", "linkingText": [ "DistanceModelType" ], @@ -13583,7 +13640,7 @@ "informative": false, "heading": { "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode", "title": "The PannerNode Interface", "number": "1.27" }, @@ -13591,7 +13648,7 @@ }, { "id": "dom-distancemodeltype-linear", - "href": "https://www.w3.org/TR/webaudio/#dom-distancemodeltype-linear", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-distancemodeltype-linear", "linkingText": [ "\"linear\"", "linear" @@ -13605,7 +13662,7 @@ "informative": false, "heading": { "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode", "title": "The PannerNode Interface", "number": "1.27" }, @@ -13613,7 +13670,7 @@ }, { "id": "dom-distancemodeltype-inverse", - "href": "https://www.w3.org/TR/webaudio/#dom-distancemodeltype-inverse", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-distancemodeltype-inverse", "linkingText": [ "\"inverse\"", "inverse" @@ -13627,7 +13684,7 @@ "informative": false, "heading": { "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode", "title": "The PannerNode Interface", "number": "1.27" }, @@ -13635,7 +13692,7 @@ }, { "id": "dom-distancemodeltype-exponential", - "href": "https://www.w3.org/TR/webaudio/#dom-distancemodeltype-exponential", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-distancemodeltype-exponential", "linkingText": [ "\"exponential\"", "exponential" @@ -13649,15 +13706,34 @@ "informative": false, "heading": { "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode", "title": "The PannerNode Interface", "number": "1.27" }, "definedIn": "table" }, + { + "id": "pannernode", + "href": "https://www.w3.org/TR/webaudio-1.0/#pannernode", + "linkingText": [ + "PannerNode" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "PannerNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode", + "title": "The PannerNode Interface", + "number": "1.27" + }, + "definedIn": "pre" + }, { "id": "dom-pannernode-pannernode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-pannernode-context-options-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-pannernode-context-options-context", "linkingText": [ "context" ], @@ -13673,7 +13749,7 @@ "informative": false, "heading": { "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode", "title": "The PannerNode Interface", "number": "1.27" }, @@ -13681,7 +13757,7 @@ }, { "id": "dom-pannernode-pannernode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-pannernode-context-options-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-pannernode-context-options-options", "linkingText": [ "options" ], @@ -13697,7 +13773,7 @@ "informative": false, "heading": { "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode", "title": "The PannerNode Interface", "number": "1.27" }, @@ -13705,7 +13781,7 @@ }, { "id": "dom-pannernode-setposition-x-y-z-x", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-setposition-x-y-z-x", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-setposition-x-y-z-x", "linkingText": [ "x" ], @@ -13718,7 +13794,7 @@ "informative": false, "heading": { "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode", "title": "The PannerNode Interface", "number": "1.27" }, @@ -13726,7 +13802,7 @@ }, { "id": "dom-pannernode-setposition-x-y-z-y", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-setposition-x-y-z-y", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-setposition-x-y-z-y", "linkingText": [ "y" ], @@ -13739,7 +13815,7 @@ "informative": false, "heading": { "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode", "title": "The PannerNode Interface", "number": "1.27" }, @@ -13747,7 +13823,7 @@ }, { "id": "dom-pannernode-setposition-x-y-z-z", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-setposition-x-y-z-z", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-setposition-x-y-z-z", "linkingText": [ "z" ], @@ -13760,7 +13836,7 @@ "informative": false, "heading": { "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode", "title": "The PannerNode Interface", "number": "1.27" }, @@ -13768,7 +13844,7 @@ }, { "id": "dom-pannernode-setorientation-x-y-z-x", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-setorientation-x-y-z-x", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-setorientation-x-y-z-x", "linkingText": [ "x" ], @@ -13781,7 +13857,7 @@ "informative": false, "heading": { "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode", "title": "The PannerNode Interface", "number": "1.27" }, @@ -13789,7 +13865,7 @@ }, { "id": "dom-pannernode-setorientation-x-y-z-y", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-setorientation-x-y-z-y", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-setorientation-x-y-z-y", "linkingText": [ "y" ], @@ -13802,7 +13878,7 @@ "informative": false, "heading": { "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode", "title": "The PannerNode Interface", "number": "1.27" }, @@ -13810,7 +13886,7 @@ }, { "id": "dom-pannernode-setorientation-x-y-z-z", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-setorientation-x-y-z-z", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-setorientation-x-y-z-z", "linkingText": [ "z" ], @@ -13823,7 +13899,7 @@ "informative": false, "heading": { "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode", "title": "The PannerNode Interface", "number": "1.27" }, @@ -13831,7 +13907,7 @@ }, { "id": "dom-pannernode-pannernode", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-pannernode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-pannernode", "linkingText": [ "PannerNode(context, options)", "constructor(context, options)", @@ -13847,7 +13923,7 @@ "informative": false, "heading": { "id": "PannerNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode-constructors", "title": "Constructors", "number": "1.27.1" }, @@ -13855,7 +13931,7 @@ }, { "id": "dom-pannernode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-constructor-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-constructor-context", "linkingText": [ "context" ], @@ -13868,7 +13944,7 @@ "informative": false, "heading": { "id": "PannerNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode-constructors", "title": "Constructors", "number": "1.27.1" }, @@ -13876,7 +13952,7 @@ }, { "id": "dom-pannernode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-constructor-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-constructor-options", "linkingText": [ "options" ], @@ -13889,7 +13965,7 @@ "informative": false, "heading": { "id": "PannerNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode-constructors", "title": "Constructors", "number": "1.27.1" }, @@ -13897,7 +13973,7 @@ }, { "id": "dom-pannernode-coneinnerangle", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-coneinnerangle", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-coneinnerangle", "linkingText": [ "coneInnerAngle" ], @@ -13910,7 +13986,7 @@ "informative": false, "heading": { "id": "PannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode-attributes", "title": "Attributes", "number": "1.27.2" }, @@ -13918,7 +13994,7 @@ }, { "id": "dom-pannernode-coneouterangle", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-coneouterangle", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-coneouterangle", "linkingText": [ "coneOuterAngle" ], @@ -13931,7 +14007,7 @@ "informative": false, "heading": { "id": "PannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode-attributes", "title": "Attributes", "number": "1.27.2" }, @@ -13939,7 +14015,7 @@ }, { "id": "dom-pannernode-coneoutergain", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-coneoutergain", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-coneoutergain", "linkingText": [ "coneOuterGain" ], @@ -13952,7 +14028,7 @@ "informative": false, "heading": { "id": "PannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode-attributes", "title": "Attributes", "number": "1.27.2" }, @@ -13960,7 +14036,7 @@ }, { "id": "dom-pannernode-distancemodel", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-distancemodel", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-distancemodel", "linkingText": [ "distanceModel" ], @@ -13973,7 +14049,7 @@ "informative": false, "heading": { "id": "PannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode-attributes", "title": "Attributes", "number": "1.27.2" }, @@ -13981,7 +14057,7 @@ }, { "id": "dom-pannernode-maxdistance", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-maxdistance", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-maxdistance", "linkingText": [ "maxDistance" ], @@ -13994,7 +14070,7 @@ "informative": false, "heading": { "id": "PannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode-attributes", "title": "Attributes", "number": "1.27.2" }, @@ -14002,7 +14078,7 @@ }, { "id": "dom-pannernode-orientationx", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-orientationx", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-orientationx", "linkingText": [ "orientationX" ], @@ -14015,7 +14091,7 @@ "informative": false, "heading": { "id": "PannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode-attributes", "title": "Attributes", "number": "1.27.2" }, @@ -14023,7 +14099,7 @@ }, { "id": "dom-pannernode-orientationy", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-orientationy", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-orientationy", "linkingText": [ "orientationY" ], @@ -14036,7 +14112,7 @@ "informative": false, "heading": { "id": "PannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode-attributes", "title": "Attributes", "number": "1.27.2" }, @@ -14044,7 +14120,7 @@ }, { "id": "dom-pannernode-orientationz", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-orientationz", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-orientationz", "linkingText": [ "orientationZ" ], @@ -14057,7 +14133,7 @@ "informative": false, "heading": { "id": "PannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode-attributes", "title": "Attributes", "number": "1.27.2" }, @@ -14065,7 +14141,7 @@ }, { "id": "dom-pannernode-panningmodel", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-panningmodel", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-panningmodel", "linkingText": [ "panningModel" ], @@ -14078,7 +14154,7 @@ "informative": false, "heading": { "id": "PannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode-attributes", "title": "Attributes", "number": "1.27.2" }, @@ -14086,7 +14162,7 @@ }, { "id": "dom-pannernode-positionx", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-positionx", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-positionx", "linkingText": [ "positionX" ], @@ -14099,7 +14175,7 @@ "informative": false, "heading": { "id": "PannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode-attributes", "title": "Attributes", "number": "1.27.2" }, @@ -14107,7 +14183,7 @@ }, { "id": "dom-pannernode-positiony", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-positiony", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-positiony", "linkingText": [ "positionY" ], @@ -14120,7 +14196,7 @@ "informative": false, "heading": { "id": "PannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode-attributes", "title": "Attributes", "number": "1.27.2" }, @@ -14128,7 +14204,7 @@ }, { "id": "dom-pannernode-positionz", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-positionz", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-positionz", "linkingText": [ "positionZ" ], @@ -14141,7 +14217,7 @@ "informative": false, "heading": { "id": "PannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode-attributes", "title": "Attributes", "number": "1.27.2" }, @@ -14149,7 +14225,7 @@ }, { "id": "dom-pannernode-refdistance", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-refdistance", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-refdistance", "linkingText": [ "refDistance" ], @@ -14162,7 +14238,7 @@ "informative": false, "heading": { "id": "PannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode-attributes", "title": "Attributes", "number": "1.27.2" }, @@ -14170,7 +14246,7 @@ }, { "id": "dom-pannernode-rollofffactor", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-rollofffactor", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-rollofffactor", "linkingText": [ "rolloffFactor" ], @@ -14183,7 +14259,7 @@ "informative": false, "heading": { "id": "PannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode-attributes", "title": "Attributes", "number": "1.27.2" }, @@ -14191,7 +14267,7 @@ }, { "id": "dom-pannernode-setorientation", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-setorientation", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-setorientation", "linkingText": [ "setOrientation(x, y, z)" ], @@ -14204,7 +14280,7 @@ "informative": false, "heading": { "id": "PannerNode-methods", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode-methods", "title": "Methods", "number": "1.27.3" }, @@ -14212,7 +14288,7 @@ }, { "id": "dom-pannernode-setorientation-x", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-setorientation-x", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-setorientation-x", "linkingText": [ "x" ], @@ -14225,7 +14301,7 @@ "informative": false, "heading": { "id": "PannerNode-methods", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode-methods", "title": "Methods", "number": "1.27.3" }, @@ -14233,7 +14309,7 @@ }, { "id": "dom-pannernode-setorientation-y", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-setorientation-y", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-setorientation-y", "linkingText": [ "y" ], @@ -14246,7 +14322,7 @@ "informative": false, "heading": { "id": "PannerNode-methods", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode-methods", "title": "Methods", "number": "1.27.3" }, @@ -14254,7 +14330,7 @@ }, { "id": "dom-pannernode-setorientation-z", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-setorientation-z", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-setorientation-z", "linkingText": [ "z" ], @@ -14267,7 +14343,7 @@ "informative": false, "heading": { "id": "PannerNode-methods", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode-methods", "title": "Methods", "number": "1.27.3" }, @@ -14275,7 +14351,7 @@ }, { "id": "dom-pannernode-setposition", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-setposition", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-setposition", "linkingText": [ "setPosition(x, y, z)" ], @@ -14288,7 +14364,7 @@ "informative": false, "heading": { "id": "PannerNode-methods", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode-methods", "title": "Methods", "number": "1.27.3" }, @@ -14296,7 +14372,7 @@ }, { "id": "dom-pannernode-setposition-x", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-setposition-x", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-setposition-x", "linkingText": [ "x" ], @@ -14309,7 +14385,7 @@ "informative": false, "heading": { "id": "PannerNode-methods", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode-methods", "title": "Methods", "number": "1.27.3" }, @@ -14317,7 +14393,7 @@ }, { "id": "dom-pannernode-setposition-y", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-setposition-y", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-setposition-y", "linkingText": [ "y" ], @@ -14330,7 +14406,7 @@ "informative": false, "heading": { "id": "PannerNode-methods", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode-methods", "title": "Methods", "number": "1.27.3" }, @@ -14338,7 +14414,7 @@ }, { "id": "dom-pannernode-setposition-z", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-setposition-z", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-setposition-z", "linkingText": [ "z" ], @@ -14351,7 +14427,7 @@ "informative": false, "heading": { "id": "PannerNode-methods", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode-methods", "title": "Methods", "number": "1.27.3" }, @@ -14359,9 +14435,9 @@ }, { "id": "PannerOptions", - "href": "https://www.w3.org/TR/webaudio/#PannerOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerOptions", "linkingText": [ - "PannerOptions" + "panneroptions" ], "localLinkingText": [], "type": "dictionary", @@ -14370,15 +14446,34 @@ "informative": false, "heading": { "id": "PannerOptions", - "href": "https://www.w3.org/TR/webaudio/#PannerOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerOptions", "title": "PannerOptions", "number": "1.27.4" }, "definedIn": "heading" }, + { + "id": "dictdef-panneroptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictdef-panneroptions", + "linkingText": [ + "PannerOptions" + ], + "localLinkingText": [], + "type": "dictionary", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "PannerOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerOptions", + "title": "PannerOptions", + "number": "1.27.4" + }, + "definedIn": "pre" + }, { "id": "dom-panneroptions-coneinnerangle", - "href": "https://www.w3.org/TR/webaudio/#dom-panneroptions-coneinnerangle", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-panneroptions-coneinnerangle", "linkingText": [ "coneInnerAngle" ], @@ -14391,7 +14486,7 @@ "informative": false, "heading": { "id": "dictionary-pannernode-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-pannernode-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-pannernode-members", "title": "Dictionary PannerOptions Members", "number": "1.27.4.1" }, @@ -14399,7 +14494,7 @@ }, { "id": "dom-panneroptions-coneouterangle", - "href": "https://www.w3.org/TR/webaudio/#dom-panneroptions-coneouterangle", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-panneroptions-coneouterangle", "linkingText": [ "coneOuterAngle" ], @@ -14412,7 +14507,7 @@ "informative": false, "heading": { "id": "dictionary-pannernode-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-pannernode-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-pannernode-members", "title": "Dictionary PannerOptions Members", "number": "1.27.4.1" }, @@ -14420,7 +14515,7 @@ }, { "id": "dom-panneroptions-coneoutergain", - "href": "https://www.w3.org/TR/webaudio/#dom-panneroptions-coneoutergain", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-panneroptions-coneoutergain", "linkingText": [ "coneOuterGain" ], @@ -14433,7 +14528,7 @@ "informative": false, "heading": { "id": "dictionary-pannernode-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-pannernode-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-pannernode-members", "title": "Dictionary PannerOptions Members", "number": "1.27.4.1" }, @@ -14441,7 +14536,7 @@ }, { "id": "dom-panneroptions-distancemodel", - "href": "https://www.w3.org/TR/webaudio/#dom-panneroptions-distancemodel", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-panneroptions-distancemodel", "linkingText": [ "distanceModel" ], @@ -14454,7 +14549,7 @@ "informative": false, "heading": { "id": "dictionary-pannernode-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-pannernode-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-pannernode-members", "title": "Dictionary PannerOptions Members", "number": "1.27.4.1" }, @@ -14462,7 +14557,7 @@ }, { "id": "dom-panneroptions-maxdistance", - "href": "https://www.w3.org/TR/webaudio/#dom-panneroptions-maxdistance", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-panneroptions-maxdistance", "linkingText": [ "maxDistance" ], @@ -14475,7 +14570,7 @@ "informative": false, "heading": { "id": "dictionary-pannernode-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-pannernode-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-pannernode-members", "title": "Dictionary PannerOptions Members", "number": "1.27.4.1" }, @@ -14483,7 +14578,7 @@ }, { "id": "dom-panneroptions-orientationx", - "href": "https://www.w3.org/TR/webaudio/#dom-panneroptions-orientationx", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-panneroptions-orientationx", "linkingText": [ "orientationX" ], @@ -14496,7 +14591,7 @@ "informative": false, "heading": { "id": "dictionary-pannernode-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-pannernode-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-pannernode-members", "title": "Dictionary PannerOptions Members", "number": "1.27.4.1" }, @@ -14504,7 +14599,7 @@ }, { "id": "dom-panneroptions-orientationy", - "href": "https://www.w3.org/TR/webaudio/#dom-panneroptions-orientationy", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-panneroptions-orientationy", "linkingText": [ "orientationY" ], @@ -14517,7 +14612,7 @@ "informative": false, "heading": { "id": "dictionary-pannernode-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-pannernode-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-pannernode-members", "title": "Dictionary PannerOptions Members", "number": "1.27.4.1" }, @@ -14525,7 +14620,7 @@ }, { "id": "dom-panneroptions-orientationz", - "href": "https://www.w3.org/TR/webaudio/#dom-panneroptions-orientationz", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-panneroptions-orientationz", "linkingText": [ "orientationZ" ], @@ -14538,7 +14633,7 @@ "informative": false, "heading": { "id": "dictionary-pannernode-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-pannernode-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-pannernode-members", "title": "Dictionary PannerOptions Members", "number": "1.27.4.1" }, @@ -14546,7 +14641,7 @@ }, { "id": "dom-panneroptions-panningmodel", - "href": "https://www.w3.org/TR/webaudio/#dom-panneroptions-panningmodel", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-panneroptions-panningmodel", "linkingText": [ "panningModel" ], @@ -14559,7 +14654,7 @@ "informative": false, "heading": { "id": "dictionary-pannernode-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-pannernode-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-pannernode-members", "title": "Dictionary PannerOptions Members", "number": "1.27.4.1" }, @@ -14567,7 +14662,7 @@ }, { "id": "dom-panneroptions-positionx", - "href": "https://www.w3.org/TR/webaudio/#dom-panneroptions-positionx", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-panneroptions-positionx", "linkingText": [ "positionX" ], @@ -14580,7 +14675,7 @@ "informative": false, "heading": { "id": "dictionary-pannernode-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-pannernode-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-pannernode-members", "title": "Dictionary PannerOptions Members", "number": "1.27.4.1" }, @@ -14588,7 +14683,7 @@ }, { "id": "dom-panneroptions-positiony", - "href": "https://www.w3.org/TR/webaudio/#dom-panneroptions-positiony", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-panneroptions-positiony", "linkingText": [ "positionY" ], @@ -14601,7 +14696,7 @@ "informative": false, "heading": { "id": "dictionary-pannernode-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-pannernode-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-pannernode-members", "title": "Dictionary PannerOptions Members", "number": "1.27.4.1" }, @@ -14609,7 +14704,7 @@ }, { "id": "dom-panneroptions-positionz", - "href": "https://www.w3.org/TR/webaudio/#dom-panneroptions-positionz", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-panneroptions-positionz", "linkingText": [ "positionZ" ], @@ -14622,7 +14717,7 @@ "informative": false, "heading": { "id": "dictionary-pannernode-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-pannernode-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-pannernode-members", "title": "Dictionary PannerOptions Members", "number": "1.27.4.1" }, @@ -14630,7 +14725,7 @@ }, { "id": "dom-panneroptions-refdistance", - "href": "https://www.w3.org/TR/webaudio/#dom-panneroptions-refdistance", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-panneroptions-refdistance", "linkingText": [ "refDistance" ], @@ -14643,7 +14738,7 @@ "informative": false, "heading": { "id": "dictionary-pannernode-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-pannernode-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-pannernode-members", "title": "Dictionary PannerOptions Members", "number": "1.27.4.1" }, @@ -14651,7 +14746,7 @@ }, { "id": "dom-panneroptions-rollofffactor", - "href": "https://www.w3.org/TR/webaudio/#dom-panneroptions-rollofffactor", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-panneroptions-rollofffactor", "linkingText": [ "rolloffFactor" ], @@ -14664,7 +14759,7 @@ "informative": false, "heading": { "id": "dictionary-pannernode-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-pannernode-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-pannernode-members", "title": "Dictionary PannerOptions Members", "number": "1.27.4.1" }, @@ -14672,9 +14767,9 @@ }, { "id": "PeriodicWave", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWave", + "href": "https://www.w3.org/TR/webaudio-1.0/#PeriodicWave", "linkingText": [ - "PeriodicWave" + "periodicwave" ], "localLinkingText": [], "type": "interface", @@ -14683,15 +14778,34 @@ "informative": false, "heading": { "id": "PeriodicWave", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWave", + "href": "https://www.w3.org/TR/webaudio-1.0/#PeriodicWave", "title": "The PeriodicWave Interface", "number": "1.28" }, "definedIn": "heading" }, + { + "id": "periodicwave", + "href": "https://www.w3.org/TR/webaudio-1.0/#periodicwave", + "linkingText": [ + "PeriodicWave" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "PeriodicWave", + "href": "https://www.w3.org/TR/webaudio-1.0/#PeriodicWave", + "title": "The PeriodicWave Interface", + "number": "1.28" + }, + "definedIn": "pre" + }, { "id": "dom-periodicwave-periodicwave-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-periodicwave-periodicwave-context-options-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-periodicwave-periodicwave-context-options-context", "linkingText": [ "context" ], @@ -14707,7 +14821,7 @@ "informative": false, "heading": { "id": "PeriodicWave", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWave", + "href": "https://www.w3.org/TR/webaudio-1.0/#PeriodicWave", "title": "The PeriodicWave Interface", "number": "1.28" }, @@ -14715,7 +14829,7 @@ }, { "id": "dom-periodicwave-periodicwave-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-periodicwave-periodicwave-context-options-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-periodicwave-periodicwave-context-options-options", "linkingText": [ "options" ], @@ -14731,7 +14845,7 @@ "informative": false, "heading": { "id": "PeriodicWave", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWave", + "href": "https://www.w3.org/TR/webaudio-1.0/#PeriodicWave", "title": "The PeriodicWave Interface", "number": "1.28" }, @@ -14739,7 +14853,7 @@ }, { "id": "dom-periodicwave-periodicwave", - "href": "https://www.w3.org/TR/webaudio/#dom-periodicwave-periodicwave", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-periodicwave-periodicwave", "linkingText": [ "PeriodicWave(context, options)", "constructor(context, options)", @@ -14755,7 +14869,7 @@ "informative": false, "heading": { "id": "PeriodicWave-constructors", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWave-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#PeriodicWave-constructors", "title": "Constructors", "number": "1.28.1" }, @@ -14763,7 +14877,7 @@ }, { "id": "dom-periodicwave-real-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-periodicwave-real-slot", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-periodicwave-real-slot", "linkingText": [ "[[real]]" ], @@ -14776,7 +14890,7 @@ "informative": false, "heading": { "id": "PeriodicWave-constructors", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWave-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#PeriodicWave-constructors", "title": "Constructors", "number": "1.28.1" }, @@ -14784,7 +14898,7 @@ }, { "id": "dom-periodicwave-imag-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-periodicwave-imag-slot", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-periodicwave-imag-slot", "linkingText": [ "[[imag]]" ], @@ -14797,7 +14911,7 @@ "informative": false, "heading": { "id": "PeriodicWave-constructors", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWave-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#PeriodicWave-constructors", "title": "Constructors", "number": "1.28.1" }, @@ -14805,7 +14919,7 @@ }, { "id": "dom-periodicwave-normalize-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-periodicwave-normalize-slot", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-periodicwave-normalize-slot", "linkingText": [ "[[normalize]]" ], @@ -14818,7 +14932,7 @@ "informative": false, "heading": { "id": "PeriodicWave-constructors", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWave-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#PeriodicWave-constructors", "title": "Constructors", "number": "1.28.1" }, @@ -14826,7 +14940,7 @@ }, { "id": "dom-periodicwave-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-periodicwave-constructor-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-periodicwave-constructor-context", "linkingText": [ "context" ], @@ -14839,7 +14953,7 @@ "informative": false, "heading": { "id": "PeriodicWave-constructors", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWave-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#PeriodicWave-constructors", "title": "Constructors", "number": "1.28.1" }, @@ -14847,7 +14961,7 @@ }, { "id": "dom-periodicwave-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-periodicwave-constructor-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-periodicwave-constructor-options", "linkingText": [ "options" ], @@ -14860,7 +14974,7 @@ "informative": false, "heading": { "id": "PeriodicWave-constructors", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWave-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#PeriodicWave-constructors", "title": "Constructors", "number": "1.28.1" }, @@ -14868,9 +14982,9 @@ }, { "id": "PeriodicWaveConstraints", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWaveConstraints", + "href": "https://www.w3.org/TR/webaudio-1.0/#PeriodicWaveConstraints", "linkingText": [ - "PeriodicWaveConstraints" + "periodicwaveconstraints" ], "localLinkingText": [], "type": "dictionary", @@ -14879,15 +14993,34 @@ "informative": false, "heading": { "id": "PeriodicWaveConstraints", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWaveConstraints", + "href": "https://www.w3.org/TR/webaudio-1.0/#PeriodicWaveConstraints", "title": "PeriodicWaveConstraints", "number": "1.28.2" }, "definedIn": "heading" }, + { + "id": "dictdef-periodicwaveconstraints", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictdef-periodicwaveconstraints", + "linkingText": [ + "PeriodicWaveConstraints" + ], + "localLinkingText": [], + "type": "dictionary", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "PeriodicWaveConstraints", + "href": "https://www.w3.org/TR/webaudio-1.0/#PeriodicWaveConstraints", + "title": "PeriodicWaveConstraints", + "number": "1.28.2" + }, + "definedIn": "pre" + }, { "id": "dom-periodicwaveconstraints-disablenormalization", - "href": "https://www.w3.org/TR/webaudio/#dom-periodicwaveconstraints-disablenormalization", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-periodicwaveconstraints-disablenormalization", "linkingText": [ "disableNormalization" ], @@ -14900,7 +15033,7 @@ "informative": false, "heading": { "id": "dictionary-periodicwaveconstraints-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-periodicwaveconstraints-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-periodicwaveconstraints-members", "title": "Dictionary PeriodicWaveConstraints Members", "number": "1.28.2.1" }, @@ -14908,9 +15041,9 @@ }, { "id": "PeriodicWaveOptions", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWaveOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#PeriodicWaveOptions", "linkingText": [ - "PeriodicWaveOptions" + "periodicwaveoptions" ], "localLinkingText": [], "type": "dictionary", @@ -14919,15 +15052,34 @@ "informative": false, "heading": { "id": "PeriodicWaveOptions", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWaveOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#PeriodicWaveOptions", "title": "PeriodicWaveOptions", "number": "1.28.3" }, "definedIn": "heading" }, + { + "id": "dictdef-periodicwaveoptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictdef-periodicwaveoptions", + "linkingText": [ + "PeriodicWaveOptions" + ], + "localLinkingText": [], + "type": "dictionary", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "PeriodicWaveOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#PeriodicWaveOptions", + "title": "PeriodicWaveOptions", + "number": "1.28.3" + }, + "definedIn": "pre" + }, { "id": "dom-periodicwaveoptions-imag", - "href": "https://www.w3.org/TR/webaudio/#dom-periodicwaveoptions-imag", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-periodicwaveoptions-imag", "linkingText": [ "imag" ], @@ -14940,7 +15092,7 @@ "informative": false, "heading": { "id": "dictionary-periodicwaveoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-periodicwaveoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-periodicwaveoptions-members", "title": "Dictionary PeriodicWaveOptions Members", "number": "1.28.3.1" }, @@ -14948,7 +15100,7 @@ }, { "id": "dom-periodicwaveoptions-real", - "href": "https://www.w3.org/TR/webaudio/#dom-periodicwaveoptions-real", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-periodicwaveoptions-real", "linkingText": [ "real" ], @@ -14961,7 +15113,7 @@ "informative": false, "heading": { "id": "dictionary-periodicwaveoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-periodicwaveoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-periodicwaveoptions-members", "title": "Dictionary PeriodicWaveOptions Members", "number": "1.28.3.1" }, @@ -14969,9 +15121,9 @@ }, { "id": "ScriptProcessorNode", - "href": "https://www.w3.org/TR/webaudio/#ScriptProcessorNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#ScriptProcessorNode", "linkingText": [ - "ScriptProcessorNode" + "scriptprocessornode" ], "localLinkingText": [], "type": "interface", @@ -14980,15 +15132,34 @@ "informative": false, "heading": { "id": "ScriptProcessorNode", - "href": "https://www.w3.org/TR/webaudio/#ScriptProcessorNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#ScriptProcessorNode", "title": "The ScriptProcessorNode Interface - DEPRECATED", "number": "1.29" }, "definedIn": "heading" }, + { + "id": "scriptprocessornode", + "href": "https://www.w3.org/TR/webaudio-1.0/#scriptprocessornode", + "linkingText": [ + "ScriptProcessorNode" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "ScriptProcessorNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#ScriptProcessorNode", + "title": "The ScriptProcessorNode Interface - DEPRECATED", + "number": "1.29" + }, + "definedIn": "pre" + }, { "id": "dom-scriptprocessornode-buffersize", - "href": "https://www.w3.org/TR/webaudio/#dom-scriptprocessornode-buffersize", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-scriptprocessornode-buffersize", "linkingText": [ "bufferSize" ], @@ -15001,7 +15172,7 @@ "informative": false, "heading": { "id": "ScriptProcessorNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#ScriptProcessorNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#ScriptProcessorNode-attributes", "title": "Attributes", "number": "1.29.1" }, @@ -15009,7 +15180,7 @@ }, { "id": "dom-scriptprocessornode-onaudioprocess", - "href": "https://www.w3.org/TR/webaudio/#dom-scriptprocessornode-onaudioprocess", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-scriptprocessornode-onaudioprocess", "linkingText": [ "onaudioprocess" ], @@ -15022,36 +15193,34 @@ "informative": false, "heading": { "id": "ScriptProcessorNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#ScriptProcessorNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#ScriptProcessorNode-attributes", "title": "Attributes", "number": "1.29.1" }, "definedIn": "dt" }, { - "id": "eventdef-scriptprocessornode-audioprocess", - "href": "https://www.w3.org/TR/webaudio/#eventdef-scriptprocessornode-audioprocess", + "id": "StereoPannerNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#StereoPannerNode", "linkingText": [ - "audioprocess" + "stereopannernode" ], "localLinkingText": [], - "type": "event", - "for": [ - "ScriptProcessorNode" - ], + "type": "interface", + "for": [], "access": "public", "informative": false, "heading": { - "id": "ScriptProcessorNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#ScriptProcessorNode-attributes", - "title": "Attributes", - "number": "1.29.1" + "id": "StereoPannerNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#StereoPannerNode", + "title": "The StereoPannerNode Interface", + "number": "1.30" }, - "definedIn": "prose" + "definedIn": "heading" }, { "id": "stereopannernode", - "href": "https://www.w3.org/TR/webaudio/#stereopannernode", + "href": "https://www.w3.org/TR/webaudio-1.0/#stereopannernode", "linkingText": [ "StereoPannerNode" ], @@ -15061,16 +15230,16 @@ "access": "public", "informative": false, "heading": { - "id": "stereopannernode", - "href": "https://www.w3.org/TR/webaudio/#stereopannernode", + "id": "StereoPannerNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#StereoPannerNode", "title": "The StereoPannerNode Interface", "number": "1.30" }, - "definedIn": "heading" + "definedIn": "pre" }, { "id": "dom-stereopannernode-stereopannernode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-stereopannernode-stereopannernode-context-options-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-stereopannernode-stereopannernode-context-options-context", "linkingText": [ "context" ], @@ -15085,8 +15254,8 @@ "access": "public", "informative": false, "heading": { - "id": "stereopannernode", - "href": "https://www.w3.org/TR/webaudio/#stereopannernode", + "id": "StereoPannerNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#StereoPannerNode", "title": "The StereoPannerNode Interface", "number": "1.30" }, @@ -15094,7 +15263,7 @@ }, { "id": "dom-stereopannernode-stereopannernode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-stereopannernode-stereopannernode-context-options-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-stereopannernode-stereopannernode-context-options-options", "linkingText": [ "options" ], @@ -15109,8 +15278,8 @@ "access": "public", "informative": false, "heading": { - "id": "stereopannernode", - "href": "https://www.w3.org/TR/webaudio/#stereopannernode", + "id": "StereoPannerNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#StereoPannerNode", "title": "The StereoPannerNode Interface", "number": "1.30" }, @@ -15118,7 +15287,7 @@ }, { "id": "dom-stereopannernode-stereopannernode", - "href": "https://www.w3.org/TR/webaudio/#dom-stereopannernode-stereopannernode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-stereopannernode-stereopannernode", "linkingText": [ "StereoPannerNode(context, options)", "constructor(context, options)", @@ -15134,7 +15303,7 @@ "informative": false, "heading": { "id": "StereoPannerNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#StereoPannerNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#StereoPannerNode-constructors", "title": "Constructors", "number": "1.30.1" }, @@ -15142,7 +15311,7 @@ }, { "id": "dom-stereopannernode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-stereopannernode-constructor-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-stereopannernode-constructor-context", "linkingText": [ "context" ], @@ -15155,7 +15324,7 @@ "informative": false, "heading": { "id": "StereoPannerNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#StereoPannerNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#StereoPannerNode-constructors", "title": "Constructors", "number": "1.30.1" }, @@ -15163,7 +15332,7 @@ }, { "id": "dom-stereopannernode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-stereopannernode-constructor-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-stereopannernode-constructor-options", "linkingText": [ "options" ], @@ -15176,7 +15345,7 @@ "informative": false, "heading": { "id": "StereoPannerNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#StereoPannerNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#StereoPannerNode-constructors", "title": "Constructors", "number": "1.30.1" }, @@ -15184,7 +15353,7 @@ }, { "id": "dom-stereopannernode-pan", - "href": "https://www.w3.org/TR/webaudio/#dom-stereopannernode-pan", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-stereopannernode-pan", "linkingText": [ "pan" ], @@ -15197,7 +15366,7 @@ "informative": false, "heading": { "id": "StereoPannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#StereoPannerNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#StereoPannerNode-attributes", "title": "Attributes", "number": "1.30.2" }, @@ -15205,9 +15374,9 @@ }, { "id": "StereoPannerOptions", - "href": "https://www.w3.org/TR/webaudio/#StereoPannerOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#StereoPannerOptions", "linkingText": [ - "StereoPannerOptions" + "stereopanneroptions" ], "localLinkingText": [], "type": "dictionary", @@ -15216,15 +15385,34 @@ "informative": false, "heading": { "id": "StereoPannerOptions", - "href": "https://www.w3.org/TR/webaudio/#StereoPannerOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#StereoPannerOptions", "title": "StereoPannerOptions", "number": "1.30.3" }, "definedIn": "heading" }, + { + "id": "dictdef-stereopanneroptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictdef-stereopanneroptions", + "linkingText": [ + "StereoPannerOptions" + ], + "localLinkingText": [], + "type": "dictionary", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "StereoPannerOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#StereoPannerOptions", + "title": "StereoPannerOptions", + "number": "1.30.3" + }, + "definedIn": "pre" + }, { "id": "dom-stereopanneroptions-pan", - "href": "https://www.w3.org/TR/webaudio/#dom-stereopanneroptions-pan", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-stereopanneroptions-pan", "linkingText": [ "pan" ], @@ -15237,7 +15425,7 @@ "informative": false, "heading": { "id": "dictionary-stereopanneroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-stereopanneroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-stereopanneroptions-members", "title": "Dictionary StereoPannerOptions Members", "number": "1.30.3.1" }, @@ -15245,9 +15433,9 @@ }, { "id": "WaveShaperNode", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#WaveShaperNode", "linkingText": [ - "WaveShaperNode" + "waveshapernode" ], "localLinkingText": [], "type": "interface", @@ -15256,7 +15444,7 @@ "informative": false, "heading": { "id": "WaveShaperNode", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#WaveShaperNode", "title": "The WaveShaperNode Interface", "number": "1.31" }, @@ -15264,7 +15452,7 @@ }, { "id": "enumdef-oversampletype", - "href": "https://www.w3.org/TR/webaudio/#enumdef-oversampletype", + "href": "https://www.w3.org/TR/webaudio-1.0/#enumdef-oversampletype", "linkingText": [ "OverSampleType" ], @@ -15275,7 +15463,7 @@ "informative": false, "heading": { "id": "WaveShaperNode", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#WaveShaperNode", "title": "The WaveShaperNode Interface", "number": "1.31" }, @@ -15283,7 +15471,7 @@ }, { "id": "dom-oversampletype-none", - "href": "https://www.w3.org/TR/webaudio/#dom-oversampletype-none", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-oversampletype-none", "linkingText": [ "\"none\"", "none" @@ -15297,7 +15485,7 @@ "informative": false, "heading": { "id": "WaveShaperNode", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#WaveShaperNode", "title": "The WaveShaperNode Interface", "number": "1.31" }, @@ -15305,7 +15493,7 @@ }, { "id": "dom-oversampletype-2x", - "href": "https://www.w3.org/TR/webaudio/#dom-oversampletype-2x", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-oversampletype-2x", "linkingText": [ "\"2x\"", "2x" @@ -15319,7 +15507,7 @@ "informative": false, "heading": { "id": "WaveShaperNode", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#WaveShaperNode", "title": "The WaveShaperNode Interface", "number": "1.31" }, @@ -15327,7 +15515,7 @@ }, { "id": "dom-oversampletype-4x", - "href": "https://www.w3.org/TR/webaudio/#dom-oversampletype-4x", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-oversampletype-4x", "linkingText": [ "\"4x\"", "4x" @@ -15341,15 +15529,34 @@ "informative": false, "heading": { "id": "WaveShaperNode", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#WaveShaperNode", "title": "The WaveShaperNode Interface", "number": "1.31" }, "definedIn": "table" }, + { + "id": "waveshapernode", + "href": "https://www.w3.org/TR/webaudio-1.0/#waveshapernode", + "linkingText": [ + "WaveShaperNode" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "WaveShaperNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#WaveShaperNode", + "title": "The WaveShaperNode Interface", + "number": "1.31" + }, + "definedIn": "pre" + }, { "id": "dom-waveshapernode-waveshapernode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-waveshapernode-waveshapernode-context-options-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-waveshapernode-waveshapernode-context-options-context", "linkingText": [ "context" ], @@ -15365,7 +15572,7 @@ "informative": false, "heading": { "id": "WaveShaperNode", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#WaveShaperNode", "title": "The WaveShaperNode Interface", "number": "1.31" }, @@ -15373,7 +15580,7 @@ }, { "id": "dom-waveshapernode-waveshapernode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-waveshapernode-waveshapernode-context-options-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-waveshapernode-waveshapernode-context-options-options", "linkingText": [ "options" ], @@ -15389,7 +15596,7 @@ "informative": false, "heading": { "id": "WaveShaperNode", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#WaveShaperNode", "title": "The WaveShaperNode Interface", "number": "1.31" }, @@ -15397,7 +15604,7 @@ }, { "id": "dom-waveshapernode-waveshapernode", - "href": "https://www.w3.org/TR/webaudio/#dom-waveshapernode-waveshapernode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-waveshapernode-waveshapernode", "linkingText": [ "WaveShaperNode(context, options)", "constructor(context, options)", @@ -15413,7 +15620,7 @@ "informative": false, "heading": { "id": "WaveShaperNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#WaveShaperNode-constructors", "title": "Constructors", "number": "1.31.1" }, @@ -15421,7 +15628,7 @@ }, { "id": "dom-waveshapernode-curve-set-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-waveshapernode-curve-set-slot", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-waveshapernode-curve-set-slot", "linkingText": [ "[[curve set]]" ], @@ -15434,7 +15641,7 @@ "informative": false, "heading": { "id": "WaveShaperNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#WaveShaperNode-constructors", "title": "Constructors", "number": "1.31.1" }, @@ -15442,7 +15649,7 @@ }, { "id": "dom-waveshapernode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-waveshapernode-constructor-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-waveshapernode-constructor-context", "linkingText": [ "context" ], @@ -15455,7 +15662,7 @@ "informative": false, "heading": { "id": "WaveShaperNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#WaveShaperNode-constructors", "title": "Constructors", "number": "1.31.1" }, @@ -15463,7 +15670,7 @@ }, { "id": "dom-waveshapernode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-waveshapernode-constructor-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-waveshapernode-constructor-options", "linkingText": [ "options" ], @@ -15476,7 +15683,7 @@ "informative": false, "heading": { "id": "WaveShaperNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#WaveShaperNode-constructors", "title": "Constructors", "number": "1.31.1" }, @@ -15484,7 +15691,7 @@ }, { "id": "dom-waveshapernode-curve", - "href": "https://www.w3.org/TR/webaudio/#dom-waveshapernode-curve", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-waveshapernode-curve", "linkingText": [ "curve" ], @@ -15497,7 +15704,7 @@ "informative": false, "heading": { "id": "WaveShaperNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#WaveShaperNode-attributes", "title": "Attributes", "number": "1.31.2" }, @@ -15505,7 +15712,7 @@ }, { "id": "dom-waveshapernode-oversample", - "href": "https://www.w3.org/TR/webaudio/#dom-waveshapernode-oversample", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-waveshapernode-oversample", "linkingText": [ "oversample" ], @@ -15518,7 +15725,7 @@ "informative": false, "heading": { "id": "WaveShaperNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#WaveShaperNode-attributes", "title": "Attributes", "number": "1.31.2" }, @@ -15526,9 +15733,9 @@ }, { "id": "WaveShaperOptions", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#WaveShaperOptions", "linkingText": [ - "WaveShaperOptions" + "waveshaperoptions" ], "localLinkingText": [], "type": "dictionary", @@ -15537,15 +15744,34 @@ "informative": false, "heading": { "id": "WaveShaperOptions", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#WaveShaperOptions", "title": "WaveShaperOptions", "number": "1.31.3" }, "definedIn": "heading" }, + { + "id": "dictdef-waveshaperoptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictdef-waveshaperoptions", + "linkingText": [ + "WaveShaperOptions" + ], + "localLinkingText": [], + "type": "dictionary", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "WaveShaperOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#WaveShaperOptions", + "title": "WaveShaperOptions", + "number": "1.31.3" + }, + "definedIn": "pre" + }, { "id": "dom-waveshaperoptions-curve", - "href": "https://www.w3.org/TR/webaudio/#dom-waveshaperoptions-curve", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-waveshaperoptions-curve", "linkingText": [ "curve" ], @@ -15558,7 +15784,7 @@ "informative": false, "heading": { "id": "dictionary-waveshaperoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-waveshaperoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-waveshaperoptions-members", "title": "Dictionary WaveShaperOptions Members", "number": "1.31.3.1" }, @@ -15566,7 +15792,7 @@ }, { "id": "dom-waveshaperoptions-oversample", - "href": "https://www.w3.org/TR/webaudio/#dom-waveshaperoptions-oversample", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-waveshaperoptions-oversample", "linkingText": [ "oversample" ], @@ -15579,7 +15805,7 @@ "informative": false, "heading": { "id": "dictionary-waveshaperoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-waveshaperoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-waveshaperoptions-members", "title": "Dictionary WaveShaperOptions Members", "number": "1.31.3.1" }, @@ -15587,9 +15813,9 @@ }, { "id": "AudioWorklet", - "href": "https://www.w3.org/TR/webaudio/#AudioWorklet", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorklet", "linkingText": [ - "AudioWorklet" + "audioworklet" ], "localLinkingText": [], "type": "interface", @@ -15598,36 +15824,34 @@ "informative": false, "heading": { "id": "AudioWorklet", - "href": "https://www.w3.org/TR/webaudio/#AudioWorklet", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorklet", "title": "The AudioWorklet Interface", "number": "1.32" }, "definedIn": "heading" }, { - "id": "dom-audioworklet-port", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworklet-port", + "id": "audioworklet", + "href": "https://www.w3.org/TR/webaudio-1.0/#audioworklet", "linkingText": [ - "port" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ "AudioWorklet" ], + "localLinkingText": [], + "type": "interface", + "for": [], "access": "public", "informative": false, "heading": { - "id": "AudioWorklet-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioWorklet-attributes", - "title": "Attributes", - "number": "1.32.1" + "id": "AudioWorklet", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorklet", + "title": "The AudioWorklet Interface", + "number": "1.32" }, - "definedIn": "dt" + "definedIn": "pre" }, { "id": "node-name-to-parameter-descriptor-map", - "href": "https://www.w3.org/TR/webaudio/#node-name-to-parameter-descriptor-map", + "href": "https://www.w3.org/TR/webaudio-1.0/#node-name-to-parameter-descriptor-map", "linkingText": [ "node name to parameter descriptor map" ], @@ -15638,17 +15862,17 @@ "informative": false, "heading": { "id": "AudioWorklet-concepts", - "href": "https://www.w3.org/TR/webaudio/#AudioWorklet-concepts", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorklet-concepts", "title": "Concepts", - "number": "1.32.2" + "number": "1.32.1" }, "definedIn": "prose" }, { "id": "AudioWorkletGlobalScope", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletGlobalScope", "linkingText": [ - "AudioWorkletGlobalScope" + "audioworkletglobalscope" ], "localLinkingText": [], "type": "interface", @@ -15657,15 +15881,15 @@ "informative": false, "heading": { "id": "AudioWorkletGlobalScope", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletGlobalScope", "title": "The AudioWorkletGlobalScope Interface", - "number": "1.32.3" + "number": "1.32.2" }, "definedIn": "heading" }, { "id": "node-name-to-processor-constructor-map", - "href": "https://www.w3.org/TR/webaudio/#node-name-to-processor-constructor-map", + "href": "https://www.w3.org/TR/webaudio-1.0/#node-name-to-processor-constructor-map", "linkingText": [ "node name to processor constructor map" ], @@ -15676,15 +15900,15 @@ "informative": false, "heading": { "id": "AudioWorkletGlobalScope", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletGlobalScope", "title": "The AudioWorkletGlobalScope Interface", - "number": "1.32.3" + "number": "1.32.2" }, "definedIn": "prose" }, { "id": "pending-processor-construction-data", - "href": "https://www.w3.org/TR/webaudio/#pending-processor-construction-data", + "href": "https://www.w3.org/TR/webaudio-1.0/#pending-processor-construction-data", "linkingText": [ "pending processor construction data" ], @@ -15695,15 +15919,15 @@ "informative": false, "heading": { "id": "AudioWorkletGlobalScope", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletGlobalScope", "title": "The AudioWorkletGlobalScope Interface", - "number": "1.32.3" + "number": "1.32.2" }, "definedIn": "prose" }, { "id": "pending-processor-construction-data-node-reference", - "href": "https://www.w3.org/TR/webaudio/#pending-processor-construction-data-node-reference", + "href": "https://www.w3.org/TR/webaudio-1.0/#pending-processor-construction-data-node-reference", "linkingText": [ "node reference" ], @@ -15716,15 +15940,15 @@ "informative": false, "heading": { "id": "AudioWorkletGlobalScope", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletGlobalScope", "title": "The AudioWorkletGlobalScope Interface", - "number": "1.32.3" + "number": "1.32.2" }, "definedIn": "prose" }, { "id": "pending-processor-construction-data-transferred-port", - "href": "https://www.w3.org/TR/webaudio/#pending-processor-construction-data-transferred-port", + "href": "https://www.w3.org/TR/webaudio-1.0/#pending-processor-construction-data-transferred-port", "linkingText": [ "transferred port" ], @@ -15737,15 +15961,15 @@ "informative": false, "heading": { "id": "AudioWorkletGlobalScope", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletGlobalScope", "title": "The AudioWorkletGlobalScope Interface", - "number": "1.32.3" + "number": "1.32.2" }, "definedIn": "prose" }, { "id": "callbackdef-audioworkletprocessorconstructor", - "href": "https://www.w3.org/TR/webaudio/#callbackdef-audioworkletprocessorconstructor", + "href": "https://www.w3.org/TR/webaudio-1.0/#callbackdef-audioworkletprocessorconstructor", "linkingText": [ "AudioWorkletProcessorConstructor" ], @@ -15756,15 +15980,15 @@ "informative": false, "heading": { "id": "AudioWorkletGlobalScope", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletGlobalScope", "title": "The AudioWorkletGlobalScope Interface", - "number": "1.32.3" + "number": "1.32.2" }, "definedIn": "pre" }, { "id": "dom-audioworkletprocessorconstructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletprocessorconstructor-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletprocessorconstructor-options", "linkingText": [ "options" ], @@ -15777,59 +16001,36 @@ "informative": false, "heading": { "id": "AudioWorkletGlobalScope", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope", - "title": "The AudioWorkletGlobalScope Interface", - "number": "1.32.3" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioworkletglobalscope-currentframe", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletglobalscope-currentframe", - "linkingText": [ - "currentFrame" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioWorkletGlobalScope" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletGlobalScope-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope-attributes", - "title": "Attributes", - "number": "1.32.3.1" + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletGlobalScope", + "title": "The AudioWorkletGlobalScope Interface", + "number": "1.32.2" }, - "definedIn": "dt" + "definedIn": "pre" }, { - "id": "dom-audioworkletglobalscope-currenttime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletglobalscope-currenttime", + "id": "audioworkletglobalscope", + "href": "https://www.w3.org/TR/webaudio-1.0/#audioworkletglobalscope", "linkingText": [ - "currentTime" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ "AudioWorkletGlobalScope" ], + "localLinkingText": [], + "type": "interface", + "for": [], "access": "public", "informative": false, "heading": { - "id": "AudioWorkletGlobalScope-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope-attributes", - "title": "Attributes", - "number": "1.32.3.1" + "id": "AudioWorkletGlobalScope", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletGlobalScope", + "title": "The AudioWorkletGlobalScope Interface", + "number": "1.32.2" }, - "definedIn": "dt" + "definedIn": "pre" }, { - "id": "dom-audioworkletglobalscope-samplerate", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletglobalscope-samplerate", + "id": "dom-audioworkletglobalscope-currentframe", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletglobalscope-currentframe", "linkingText": [ - "sampleRate" + "currentFrame" ], "localLinkingText": [], "type": "attribute", @@ -15840,17 +16041,17 @@ "informative": false, "heading": { "id": "AudioWorkletGlobalScope-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletGlobalScope-attributes", "title": "Attributes", - "number": "1.32.3.1" + "number": "1.32.2.1" }, "definedIn": "dt" }, { - "id": "dom-audioworkletglobalscope-renderquantumsize", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletglobalscope-renderquantumsize", + "id": "dom-audioworkletglobalscope-currenttime", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletglobalscope-currenttime", "linkingText": [ - "renderQuantumSize" + "currentTime" ], "localLinkingText": [], "type": "attribute", @@ -15861,17 +16062,17 @@ "informative": false, "heading": { "id": "AudioWorkletGlobalScope-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletGlobalScope-attributes", "title": "Attributes", - "number": "1.32.3.1" + "number": "1.32.2.1" }, "definedIn": "dt" }, { - "id": "dom-audioworkletglobalscope-port", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletglobalscope-port", + "id": "dom-audioworkletglobalscope-samplerate", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletglobalscope-samplerate", "linkingText": [ - "port" + "sampleRate" ], "localLinkingText": [], "type": "attribute", @@ -15882,15 +16083,15 @@ "informative": false, "heading": { "id": "AudioWorkletGlobalScope-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletGlobalScope-attributes", "title": "Attributes", - "number": "1.32.3.1" + "number": "1.32.2.1" }, "definedIn": "dt" }, { "id": "dom-audioworkletglobalscope-registerprocessor", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletglobalscope-registerprocessor", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletglobalscope-registerprocessor", "linkingText": [ "registerProcessor(name, processorCtor)" ], @@ -15903,15 +16104,15 @@ "informative": false, "heading": { "id": "AudioWorkletGlobalScope-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletGlobalScope-methods", "title": "Methods", - "number": "1.32.3.2" + "number": "1.32.2.2" }, "definedIn": "dt" }, { "id": "dom-audioworkletglobalscope-registerprocessor-name-processorctor-name", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletglobalscope-registerprocessor-name-processorctor-name", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletglobalscope-registerprocessor-name-processorctor-name", "linkingText": [ "name" ], @@ -15924,15 +16125,15 @@ "informative": false, "heading": { "id": "AudioWorkletGlobalScope-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletGlobalScope-methods", "title": "Methods", - "number": "1.32.3.2" + "number": "1.32.2.2" }, "definedIn": "table" }, { "id": "dom-audioworkletglobalscope-registerprocessor-name-processorctor-processorctor", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletglobalscope-registerprocessor-name-processorctor-processorctor", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletglobalscope-registerprocessor-name-processorctor-processorctor", "linkingText": [ "processorCtor" ], @@ -15945,15 +16146,15 @@ "informative": false, "heading": { "id": "AudioWorkletGlobalScope-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletGlobalScope-methods", "title": "Methods", - "number": "1.32.3.2" + "number": "1.32.2.2" }, "definedIn": "table" }, { "id": "processor-construction-data", - "href": "https://www.w3.org/TR/webaudio/#processor-construction-data", + "href": "https://www.w3.org/TR/webaudio-1.0/#processor-construction-data", "linkingText": [ "processor construction data" ], @@ -15964,15 +16165,15 @@ "informative": false, "heading": { "id": "AudioWorkletProcessor-instantiation", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor-instantiation", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletProcessor-instantiation", "title": "The instantiation of AudioWorkletProcessor", - "number": "1.32.3.3" + "number": "1.32.2.3" }, "definedIn": "prose" }, { "id": "processor-construction-data-name", - "href": "https://www.w3.org/TR/webaudio/#processor-construction-data-name", + "href": "https://www.w3.org/TR/webaudio-1.0/#processor-construction-data-name", "linkingText": [ "name" ], @@ -15985,15 +16186,15 @@ "informative": false, "heading": { "id": "AudioWorkletProcessor-instantiation", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor-instantiation", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletProcessor-instantiation", "title": "The instantiation of AudioWorkletProcessor", - "number": "1.32.3.3" + "number": "1.32.2.3" }, "definedIn": "prose" }, { "id": "processor-construction-data-node", - "href": "https://www.w3.org/TR/webaudio/#processor-construction-data-node", + "href": "https://www.w3.org/TR/webaudio-1.0/#processor-construction-data-node", "linkingText": [ "node" ], @@ -16006,15 +16207,15 @@ "informative": false, "heading": { "id": "AudioWorkletProcessor-instantiation", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor-instantiation", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletProcessor-instantiation", "title": "The instantiation of AudioWorkletProcessor", - "number": "1.32.3.3" + "number": "1.32.2.3" }, "definedIn": "prose" }, { "id": "processor-construction-data-options", - "href": "https://www.w3.org/TR/webaudio/#processor-construction-data-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#processor-construction-data-options", "linkingText": [ "options" ], @@ -16027,15 +16228,15 @@ "informative": false, "heading": { "id": "AudioWorkletProcessor-instantiation", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor-instantiation", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletProcessor-instantiation", "title": "The instantiation of AudioWorkletProcessor", - "number": "1.32.3.3" + "number": "1.32.2.3" }, "definedIn": "prose" }, { "id": "processor-construction-data-port", - "href": "https://www.w3.org/TR/webaudio/#processor-construction-data-port", + "href": "https://www.w3.org/TR/webaudio-1.0/#processor-construction-data-port", "linkingText": [ "port" ], @@ -16048,17 +16249,17 @@ "informative": false, "heading": { "id": "AudioWorkletProcessor-instantiation", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor-instantiation", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletProcessor-instantiation", "title": "The instantiation of AudioWorkletProcessor", - "number": "1.32.3.3" + "number": "1.32.2.3" }, "definedIn": "prose" }, { "id": "AudioWorkletNode", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletNode", "linkingText": [ - "AudioWorkletNode" + "audioworkletnode" ], "localLinkingText": [], "type": "interface", @@ -16067,15 +16268,15 @@ "informative": false, "heading": { "id": "AudioWorkletNode", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletNode", "title": "The AudioWorkletNode Interface", - "number": "1.32.4" + "number": "1.32.3" }, "definedIn": "heading" }, { "id": "active-source", - "href": "https://www.w3.org/TR/webaudio/#active-source", + "href": "https://www.w3.org/TR/webaudio-1.0/#active-source", "linkingText": [ "active source" ], @@ -16086,15 +16287,15 @@ "informative": false, "heading": { "id": "AudioWorkletNode", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletNode", "title": "The AudioWorkletNode Interface", - "number": "1.32.4" + "number": "1.32.3" }, "definedIn": "prose" }, { "id": "audioparammap", - "href": "https://www.w3.org/TR/webaudio/#audioparammap", + "href": "https://www.w3.org/TR/webaudio-1.0/#audioparammap", "linkingText": [ "AudioParamMap" ], @@ -16105,15 +16306,34 @@ "informative": false, "heading": { "id": "AudioWorkletNode", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletNode", "title": "The AudioWorkletNode Interface", - "number": "1.32.4" + "number": "1.32.3" + }, + "definedIn": "pre" + }, + { + "id": "audioworkletnode", + "href": "https://www.w3.org/TR/webaudio-1.0/#audioworkletnode", + "linkingText": [ + "AudioWorkletNode" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "AudioWorkletNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletNode", + "title": "The AudioWorkletNode Interface", + "number": "1.32.3" }, "definedIn": "pre" }, { "id": "dom-audioworkletnode-audioworkletnode-context-name-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-audioworkletnode-context-name-options-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletnode-audioworkletnode-context-name-options-context", "linkingText": [ "context" ], @@ -16129,15 +16349,15 @@ "informative": false, "heading": { "id": "AudioWorkletNode", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletNode", "title": "The AudioWorkletNode Interface", - "number": "1.32.4" + "number": "1.32.3" }, "definedIn": "pre" }, { "id": "dom-audioworkletnode-audioworkletnode-context-name-options-name", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-audioworkletnode-context-name-options-name", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletnode-audioworkletnode-context-name-options-name", "linkingText": [ "name" ], @@ -16153,15 +16373,15 @@ "informative": false, "heading": { "id": "AudioWorkletNode", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletNode", "title": "The AudioWorkletNode Interface", - "number": "1.32.4" + "number": "1.32.3" }, "definedIn": "pre" }, { "id": "dom-audioworkletnode-audioworkletnode-context-name-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-audioworkletnode-context-name-options-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletnode-audioworkletnode-context-name-options-options", "linkingText": [ "options" ], @@ -16177,15 +16397,15 @@ "informative": false, "heading": { "id": "AudioWorkletNode", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletNode", "title": "The AudioWorkletNode Interface", - "number": "1.32.4" + "number": "1.32.3" }, "definedIn": "pre" }, { "id": "dom-audioworkletnode-audioworkletnode", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-audioworkletnode", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletnode-audioworkletnode", "linkingText": [ "AudioWorkletNode(context, name, options)", "constructor(context, name, options)", @@ -16201,15 +16421,15 @@ "informative": false, "heading": { "id": "AudioWorkletNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletNode-constructors", "title": "Constructors", - "number": "1.32.4.1" + "number": "1.32.3.1" }, "definedIn": "dt" }, { "id": "dom-audioworkletnode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-constructor-context", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletnode-constructor-context", "linkingText": [ "context" ], @@ -16222,15 +16442,15 @@ "informative": false, "heading": { "id": "AudioWorkletNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletNode-constructors", "title": "Constructors", - "number": "1.32.4.1" + "number": "1.32.3.1" }, "definedIn": "table" }, { "id": "dom-audioworkletnode-constructor-name", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-constructor-name", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletnode-constructor-name", "linkingText": [ "name" ], @@ -16243,15 +16463,15 @@ "informative": false, "heading": { "id": "AudioWorkletNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletNode-constructors", "title": "Constructors", - "number": "1.32.4.1" + "number": "1.32.3.1" }, "definedIn": "table" }, { "id": "dom-audioworkletnode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-constructor-options", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletnode-constructor-options", "linkingText": [ "options" ], @@ -16264,15 +16484,15 @@ "informative": false, "heading": { "id": "AudioWorkletNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletNode-constructors", "title": "Constructors", - "number": "1.32.4.1" + "number": "1.32.3.1" }, "definedIn": "table" }, { "id": "dom-audioworkletnode-onprocessorerror", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-onprocessorerror", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletnode-onprocessorerror", "linkingText": [ "onprocessorerror" ], @@ -16285,20 +16505,20 @@ "informative": false, "heading": { "id": "AudioWorkletNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletNode-attributes", "title": "Attributes", - "number": "1.32.4.2" + "number": "1.32.3.2" }, "definedIn": "dt" }, { - "id": "eventdef-audioworkletnode-processorerror", - "href": "https://www.w3.org/TR/webaudio/#eventdef-audioworkletnode-processorerror", + "id": "dom-audioworkletnode-parameters", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletnode-parameters", "linkingText": [ - "processorerror" + "parameters" ], "localLinkingText": [], - "type": "event", + "type": "attribute", "for": [ "AudioWorkletNode" ], @@ -16306,17 +16526,17 @@ "informative": false, "heading": { "id": "AudioWorkletNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletNode-attributes", "title": "Attributes", - "number": "1.32.4.2" + "number": "1.32.3.2" }, - "definedIn": "prose" + "definedIn": "dt" }, { - "id": "dom-audioworkletnode-parameters", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-parameters", + "id": "dom-audioworkletnode-port", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletnode-port", "linkingText": [ - "parameters" + "port" ], "localLinkingText": [], "type": "attribute", @@ -16327,36 +16547,34 @@ "informative": false, "heading": { "id": "AudioWorkletNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletNode-attributes", "title": "Attributes", - "number": "1.32.4.2" + "number": "1.32.3.2" }, "definedIn": "dt" }, { - "id": "dom-audioworkletnode-port", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-port", + "id": "AudioWorkletNodeOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletNodeOptions", "linkingText": [ - "port" + "audioworkletnodeoptions" ], "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioWorkletNode" - ], + "type": "dictionary", + "for": [], "access": "public", "informative": false, "heading": { - "id": "AudioWorkletNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode-attributes", - "title": "Attributes", - "number": "1.32.4.2" + "id": "AudioWorkletNodeOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletNodeOptions", + "title": "AudioWorkletNodeOptions", + "number": "1.32.3.3" }, - "definedIn": "dt" + "definedIn": "heading" }, { - "id": "AudioWorkletNodeOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNodeOptions", + "id": "dictdef-audioworkletnodeoptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictdef-audioworkletnodeoptions", "linkingText": [ "AudioWorkletNodeOptions" ], @@ -16367,15 +16585,15 @@ "informative": false, "heading": { "id": "AudioWorkletNodeOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNodeOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletNodeOptions", "title": "AudioWorkletNodeOptions", - "number": "1.32.4.3" + "number": "1.32.3.3" }, - "definedIn": "heading" + "definedIn": "pre" }, { "id": "dom-audioworkletnodeoptions-numberofinputs", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletnodeoptions-numberofinputs", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletnodeoptions-numberofinputs", "linkingText": [ "numberOfInputs" ], @@ -16388,15 +16606,15 @@ "informative": false, "heading": { "id": "dictionary-audioworkletnodeoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audioworkletnodeoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audioworkletnodeoptions-members", "title": "Dictionary AudioWorkletNodeOptions Members", - "number": "1.32.4.3.1" + "number": "1.32.3.3.1" }, "definedIn": "dt" }, { "id": "dom-audioworkletnodeoptions-numberofoutputs", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletnodeoptions-numberofoutputs", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletnodeoptions-numberofoutputs", "linkingText": [ "numberOfOutputs" ], @@ -16409,15 +16627,15 @@ "informative": false, "heading": { "id": "dictionary-audioworkletnodeoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audioworkletnodeoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audioworkletnodeoptions-members", "title": "Dictionary AudioWorkletNodeOptions Members", - "number": "1.32.4.3.1" + "number": "1.32.3.3.1" }, "definedIn": "dt" }, { "id": "dom-audioworkletnodeoptions-outputchannelcount", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletnodeoptions-outputchannelcount", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletnodeoptions-outputchannelcount", "linkingText": [ "outputChannelCount" ], @@ -16430,15 +16648,15 @@ "informative": false, "heading": { "id": "dictionary-audioworkletnodeoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audioworkletnodeoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audioworkletnodeoptions-members", "title": "Dictionary AudioWorkletNodeOptions Members", - "number": "1.32.4.3.1" + "number": "1.32.3.3.1" }, "definedIn": "dt" }, { "id": "dom-audioworkletnodeoptions-parameterdata", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletnodeoptions-parameterdata", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletnodeoptions-parameterdata", "linkingText": [ "parameterData" ], @@ -16451,15 +16669,15 @@ "informative": false, "heading": { "id": "dictionary-audioworkletnodeoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audioworkletnodeoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audioworkletnodeoptions-members", "title": "Dictionary AudioWorkletNodeOptions Members", - "number": "1.32.4.3.1" + "number": "1.32.3.3.1" }, "definedIn": "dt" }, { "id": "dom-audioworkletnodeoptions-processoroptions", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletnodeoptions-processoroptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletnodeoptions-processoroptions", "linkingText": [ "processorOptions" ], @@ -16472,17 +16690,17 @@ "informative": false, "heading": { "id": "dictionary-audioworkletnodeoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audioworkletnodeoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audioworkletnodeoptions-members", "title": "Dictionary AudioWorkletNodeOptions Members", - "number": "1.32.4.3.1" + "number": "1.32.3.3.1" }, "definedIn": "dt" }, { "id": "AudioWorkletProcessor", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletProcessor", "linkingText": [ - "AudioWorkletProcessor" + "audioworkletprocessor" ], "localLinkingText": [], "type": "interface", @@ -16491,15 +16709,34 @@ "informative": false, "heading": { "id": "AudioWorkletProcessor", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletProcessor", "title": "The AudioWorkletProcessor Interface", - "number": "1.32.5" + "number": "1.32.4" }, "definedIn": "heading" }, + { + "id": "audioworkletprocessor", + "href": "https://www.w3.org/TR/webaudio-1.0/#audioworkletprocessor", + "linkingText": [ + "AudioWorkletProcessor" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "AudioWorkletProcessor", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletProcessor", + "title": "The AudioWorkletProcessor Interface", + "number": "1.32.4" + }, + "definedIn": "pre" + }, { "id": "dom-audioworkletprocesscallback-inputs", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletprocesscallback-inputs", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletprocesscallback-inputs", "linkingText": [ "inputs" ], @@ -16512,15 +16749,15 @@ "informative": false, "heading": { "id": "AudioWorkletProcessor", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletProcessor", "title": "The AudioWorkletProcessor Interface", - "number": "1.32.5" + "number": "1.32.4" }, "definedIn": "pre" }, { "id": "dom-audioworkletprocesscallback-outputs", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletprocesscallback-outputs", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletprocesscallback-outputs", "linkingText": [ "outputs" ], @@ -16533,15 +16770,15 @@ "informative": false, "heading": { "id": "AudioWorkletProcessor", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletProcessor", "title": "The AudioWorkletProcessor Interface", - "number": "1.32.5" + "number": "1.32.4" }, "definedIn": "pre" }, { "id": "dom-audioworkletprocesscallback-parameters", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletprocesscallback-parameters", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletprocesscallback-parameters", "linkingText": [ "parameters" ], @@ -16554,15 +16791,15 @@ "informative": false, "heading": { "id": "AudioWorkletProcessor", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletProcessor", "title": "The AudioWorkletProcessor Interface", - "number": "1.32.5" + "number": "1.32.4" }, "definedIn": "pre" }, { "id": "dom-audioworkletprocessor-node-reference-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletprocessor-node-reference-slot", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletprocessor-node-reference-slot", "linkingText": [ "[[node reference]]" ], @@ -16575,15 +16812,15 @@ "informative": false, "heading": { "id": "AudioWorkletProcessor", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletProcessor", "title": "The AudioWorkletProcessor Interface", - "number": "1.32.5" + "number": "1.32.4" }, "definedIn": "dt" }, { "id": "dom-audioworkletprocessor-callable-process-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletprocessor-callable-process-slot", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletprocessor-callable-process-slot", "linkingText": [ "[[callable process]]" ], @@ -16596,15 +16833,15 @@ "informative": false, "heading": { "id": "AudioWorkletProcessor", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletProcessor", "title": "The AudioWorkletProcessor Interface", - "number": "1.32.5" + "number": "1.32.4" }, "definedIn": "dt" }, { "id": "dom-audioworkletprocessor-audioworkletprocessor", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletprocessor-audioworkletprocessor", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletprocessor-audioworkletprocessor", "linkingText": [ "AudioWorkletProcessor()", "constructor()" @@ -16618,15 +16855,15 @@ "informative": false, "heading": { "id": "AudioWorketProcessor-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioWorketProcessor-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorketProcessor-constructors", "title": "Constructors", - "number": "1.32.5.1" + "number": "1.32.4.1" }, "definedIn": "dt" }, { "id": "dom-audioworkletprocessor-port", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletprocessor-port", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletprocessor-port", "linkingText": [ "port" ], @@ -16639,15 +16876,15 @@ "informative": false, "heading": { "id": "AudioWorkletProcessor-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletProcessor-attributes", "title": "Attributes", - "number": "1.32.5.2" + "number": "1.32.4.2" }, "definedIn": "dt" }, { "id": "process", - "href": "https://www.w3.org/TR/webaudio/#process", + "href": "https://www.w3.org/TR/webaudio-1.0/#process", "linkingText": [ "process()" ], @@ -16658,15 +16895,15 @@ "informative": false, "heading": { "id": "callback-audioworketprocess-callback", - "href": "https://www.w3.org/TR/webaudio/#callback-audioworketprocess-callback", + "href": "https://www.w3.org/TR/webaudio-1.0/#callback-audioworketprocess-callback", "title": "Callback AudioWorkletProcessCallback", - "number": "1.32.5.3" + "number": "1.32.4.3" }, "definedIn": "prose" }, { "id": "parameterdescriptors", - "href": "https://www.w3.org/TR/webaudio/#parameterdescriptors", + "href": "https://www.w3.org/TR/webaudio-1.0/#parameterdescriptors", "linkingText": [ "parameterDescriptors" ], @@ -16677,15 +16914,15 @@ "informative": false, "heading": { "id": "callback-audioworketprocess-callback", - "href": "https://www.w3.org/TR/webaudio/#callback-audioworketprocess-callback", + "href": "https://www.w3.org/TR/webaudio-1.0/#callback-audioworketprocess-callback", "title": "Callback AudioWorkletProcessCallback", - "number": "1.32.5.3" + "number": "1.32.4.3" }, "definedIn": "prose" }, { "id": "audioworkletprocess-callback-parameters", - "href": "https://www.w3.org/TR/webaudio/#audioworkletprocess-callback-parameters", + "href": "https://www.w3.org/TR/webaudio-1.0/#audioworkletprocess-callback-parameters", "linkingText": [ "AudioWorkletProcessCallback", "AudioWorkletProcessCallback()" @@ -16697,17 +16934,17 @@ "informative": false, "heading": { "id": "audioworkletprocess-callback-parameters", - "href": "https://www.w3.org/TR/webaudio/#audioworkletprocess-callback-parameters", + "href": "https://www.w3.org/TR/webaudio-1.0/#audioworkletprocess-callback-parameters", "title": "Callback AudioWorkletProcessCallback Parameters", - "number": "1.32.5.3.1" + "number": "1.32.4.3.1" }, "definedIn": "heading" }, { "id": "AudioParamDescriptor", - "href": "https://www.w3.org/TR/webaudio/#AudioParamDescriptor", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParamDescriptor", "linkingText": [ - "AudioParamDescriptor" + "audioparamdescriptor" ], "localLinkingText": [], "type": "dictionary", @@ -16716,15 +16953,34 @@ "informative": false, "heading": { "id": "AudioParamDescriptor", - "href": "https://www.w3.org/TR/webaudio/#AudioParamDescriptor", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParamDescriptor", "title": "AudioParamDescriptor", - "number": "1.32.5.4" + "number": "1.32.4.4" }, "definedIn": "heading" }, + { + "id": "dictdef-audioparamdescriptor", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictdef-audioparamdescriptor", + "linkingText": [ + "AudioParamDescriptor" + ], + "localLinkingText": [], + "type": "dictionary", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "AudioParamDescriptor", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParamDescriptor", + "title": "AudioParamDescriptor", + "number": "1.32.4.4" + }, + "definedIn": "pre" + }, { "id": "dom-audioparamdescriptor-automationrate", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparamdescriptor-automationrate", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparamdescriptor-automationrate", "linkingText": [ "automationRate" ], @@ -16737,15 +16993,15 @@ "informative": false, "heading": { "id": "dictionary-audioparamdescriptor-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audioparamdescriptor-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audioparamdescriptor-members", "title": "Dictionary AudioParamDescriptor Members", - "number": "1.32.5.4.1" + "number": "1.32.4.4.1" }, "definedIn": "dt" }, { "id": "dom-audioparamdescriptor-defaultvalue", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparamdescriptor-defaultvalue", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparamdescriptor-defaultvalue", "linkingText": [ "defaultValue" ], @@ -16758,15 +17014,15 @@ "informative": false, "heading": { "id": "dictionary-audioparamdescriptor-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audioparamdescriptor-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audioparamdescriptor-members", "title": "Dictionary AudioParamDescriptor Members", - "number": "1.32.5.4.1" + "number": "1.32.4.4.1" }, "definedIn": "dt" }, { "id": "dom-audioparamdescriptor-maxvalue", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparamdescriptor-maxvalue", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparamdescriptor-maxvalue", "linkingText": [ "maxValue" ], @@ -16779,15 +17035,15 @@ "informative": false, "heading": { "id": "dictionary-audioparamdescriptor-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audioparamdescriptor-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audioparamdescriptor-members", "title": "Dictionary AudioParamDescriptor Members", - "number": "1.32.5.4.1" + "number": "1.32.4.4.1" }, "definedIn": "dt" }, { "id": "dom-audioparamdescriptor-minvalue", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparamdescriptor-minvalue", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparamdescriptor-minvalue", "linkingText": [ "minValue" ], @@ -16800,15 +17056,15 @@ "informative": false, "heading": { "id": "dictionary-audioparamdescriptor-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audioparamdescriptor-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audioparamdescriptor-members", "title": "Dictionary AudioParamDescriptor Members", - "number": "1.32.5.4.1" + "number": "1.32.4.4.1" }, "definedIn": "dt" }, { "id": "dom-audioparamdescriptor-name", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparamdescriptor-name", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-audioparamdescriptor-name", "linkingText": [ "name" ], @@ -16821,15 +17077,15 @@ "informative": false, "heading": { "id": "dictionary-audioparamdescriptor-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audioparamdescriptor-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audioparamdescriptor-members", "title": "Dictionary AudioParamDescriptor Members", - "number": "1.32.5.4.1" + "number": "1.32.4.4.1" }, "definedIn": "dt" }, { "id": "control-thread", - "href": "https://www.w3.org/TR/webaudio/#control-thread", + "href": "https://www.w3.org/TR/webaudio-1.0/#control-thread", "linkingText": [ "control thread" ], @@ -16840,7 +17096,7 @@ "informative": false, "heading": { "id": "control-thread-and-rendering-thread", - "href": "https://www.w3.org/TR/webaudio/#control-thread-and-rendering-thread", + "href": "https://www.w3.org/TR/webaudio-1.0/#control-thread-and-rendering-thread", "title": "Control Thread and Rendering Thread", "number": "2.2" }, @@ -16848,7 +17104,7 @@ }, { "id": "rendering-thread", - "href": "https://www.w3.org/TR/webaudio/#rendering-thread", + "href": "https://www.w3.org/TR/webaudio-1.0/#rendering-thread", "linkingText": [ "rendering thread" ], @@ -16859,7 +17115,7 @@ "informative": false, "heading": { "id": "control-thread-and-rendering-thread", - "href": "https://www.w3.org/TR/webaudio/#control-thread-and-rendering-thread", + "href": "https://www.w3.org/TR/webaudio-1.0/#control-thread-and-rendering-thread", "title": "Control Thread and Rendering Thread", "number": "2.2" }, @@ -16867,7 +17123,7 @@ }, { "id": "control-message-queue", - "href": "https://www.w3.org/TR/webaudio/#control-message-queue", + "href": "https://www.w3.org/TR/webaudio-1.0/#control-message-queue", "linkingText": [ "control message queue" ], @@ -16878,7 +17134,7 @@ "informative": false, "heading": { "id": "control-thread-and-rendering-thread", - "href": "https://www.w3.org/TR/webaudio/#control-thread-and-rendering-thread", + "href": "https://www.w3.org/TR/webaudio-1.0/#control-thread-and-rendering-thread", "title": "Control Thread and Rendering Thread", "number": "2.2" }, @@ -16886,7 +17142,7 @@ }, { "id": "control-message", - "href": "https://www.w3.org/TR/webaudio/#control-message", + "href": "https://www.w3.org/TR/webaudio-1.0/#control-message", "linkingText": [ "control message" ], @@ -16897,7 +17153,7 @@ "informative": false, "heading": { "id": "control-thread-and-rendering-thread", - "href": "https://www.w3.org/TR/webaudio/#control-thread-and-rendering-thread", + "href": "https://www.w3.org/TR/webaudio-1.0/#control-thread-and-rendering-thread", "title": "Control Thread and Rendering Thread", "number": "2.2" }, @@ -16905,7 +17161,7 @@ }, { "id": "queuing", - "href": "https://www.w3.org/TR/webaudio/#queuing", + "href": "https://www.w3.org/TR/webaudio-1.0/#queuing", "linkingText": [ "queue a control message" ], @@ -16916,7 +17172,7 @@ "informative": false, "heading": { "id": "control-thread-and-rendering-thread", - "href": "https://www.w3.org/TR/webaudio/#control-thread-and-rendering-thread", + "href": "https://www.w3.org/TR/webaudio-1.0/#control-thread-and-rendering-thread", "title": "Control Thread and Rendering Thread", "number": "2.2" }, @@ -16924,7 +17180,7 @@ }, { "id": "oldest-message", - "href": "https://www.w3.org/TR/webaudio/#oldest-message", + "href": "https://www.w3.org/TR/webaudio-1.0/#oldest-message", "linkingText": [ "oldest message" ], @@ -16935,7 +17191,7 @@ "informative": false, "heading": { "id": "control-thread-and-rendering-thread", - "href": "https://www.w3.org/TR/webaudio/#control-thread-and-rendering-thread", + "href": "https://www.w3.org/TR/webaudio-1.0/#control-thread-and-rendering-thread", "title": "Control Thread and Rendering Thread", "number": "2.2" }, @@ -16943,7 +17199,7 @@ }, { "id": "swap", - "href": "https://www.w3.org/TR/webaudio/#swap", + "href": "https://www.w3.org/TR/webaudio-1.0/#swap", "linkingText": [ "swap" ], @@ -16954,34 +17210,15 @@ "informative": false, "heading": { "id": "control-thread-and-rendering-thread", - "href": "https://www.w3.org/TR/webaudio/#control-thread-and-rendering-thread", + "href": "https://www.w3.org/TR/webaudio-1.0/#control-thread-and-rendering-thread", "title": "Control Thread and Rendering Thread", "number": "2.2" }, "definedIn": "prose" }, - { - "id": "render-quantum-size", - "href": "https://www.w3.org/TR/webaudio/#render-quantum-size", - "linkingText": [ - "render quantum size" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", - "title": "Rendering an Audio Graph", - "number": "2.4" - }, - "definedIn": "prose" - }, { "id": "render-quantum", - "href": "https://www.w3.org/TR/webaudio/#render-quantum", + "href": "https://www.w3.org/TR/webaudio-1.0/#render-quantum", "linkingText": [ "render quantum" ], @@ -16992,74 +17229,17 @@ "informative": false, "heading": { "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", - "title": "Rendering an Audio Graph", - "number": "2.4" - }, - "definedIn": "prose" - }, - { - "id": "atomically", - "href": "https://www.w3.org/TR/webaudio/#atomically", - "linkingText": [ - "atomically" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", - "title": "Rendering an Audio Graph", - "number": "2.4" - }, - "definedIn": "prose" - }, - { - "id": "system-level-audio-callback", - "href": "https://www.w3.org/TR/webaudio/#system-level-audio-callback", - "linkingText": [ - "system-level audio callback" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", - "title": "Rendering an Audio Graph", - "number": "2.4" - }, - "definedIn": "prose" - }, - { - "id": "system-level-audio-callback-buffer-size", - "href": "https://www.w3.org/TR/webaudio/#system-level-audio-callback-buffer-size", - "linkingText": [ - "system-level audio callback buffer size" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", + "href": "https://www.w3.org/TR/webaudio-1.0/#rendering-loop", "title": "Rendering an Audio Graph", "number": "2.4" }, "definedIn": "prose" }, { - "id": "load-value", - "href": "https://www.w3.org/TR/webaudio/#load-value", + "id": "render-quantum-size", + "href": "https://www.w3.org/TR/webaudio-1.0/#render-quantum-size", "linkingText": [ - "load value" + "render quantum size" ], "localLinkingText": [], "type": "dfn", @@ -17068,17 +17248,17 @@ "informative": false, "heading": { "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", + "href": "https://www.w3.org/TR/webaudio-1.0/#rendering-loop", "title": "Rendering an Audio Graph", "number": "2.4" }, "definedIn": "prose" }, { - "id": "audio-buffer-underrun", - "href": "https://www.w3.org/TR/webaudio/#audio-buffer-underrun", + "id": "atomically", + "href": "https://www.w3.org/TR/webaudio-1.0/#atomically", "linkingText": [ - "audio buffer underrun" + "atomically" ], "localLinkingText": [], "type": "dfn", @@ -17087,7 +17267,7 @@ "informative": false, "heading": { "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", + "href": "https://www.w3.org/TR/webaudio-1.0/#rendering-loop", "title": "Rendering an Audio Graph", "number": "2.4" }, @@ -17095,7 +17275,7 @@ }, { "id": "baseaudiocontext-associated-task-queue", - "href": "https://www.w3.org/TR/webaudio/#baseaudiocontext-associated-task-queue", + "href": "https://www.w3.org/TR/webaudio-1.0/#baseaudiocontext-associated-task-queue", "linkingText": [ "associated task queue" ], @@ -17108,7 +17288,7 @@ "informative": false, "heading": { "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", + "href": "https://www.w3.org/TR/webaudio-1.0/#rendering-loop", "title": "Rendering an Audio Graph", "number": "2.4" }, @@ -17116,7 +17296,7 @@ }, { "id": "dom-baseaudiocontext-current-frame-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-current-frame-slot", + "href": "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-current-frame-slot", "linkingText": [ "[[current frame]]" ], @@ -17129,7 +17309,7 @@ "informative": false, "heading": { "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", + "href": "https://www.w3.org/TR/webaudio-1.0/#rendering-loop", "title": "Rendering an Audio Graph", "number": "2.4" }, @@ -17137,7 +17317,7 @@ }, { "id": "visit", - "href": "https://www.w3.org/TR/webaudio/#visit", + "href": "https://www.w3.org/TR/webaudio-1.0/#visit", "linkingText": [ "Visit" ], @@ -17148,7 +17328,7 @@ "informative": false, "heading": { "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", + "href": "https://www.w3.org/TR/webaudio-1.0/#rendering-loop", "title": "Rendering an Audio Graph", "number": "2.4" }, @@ -17156,7 +17336,7 @@ }, { "id": "input-audioparam-buffer", - "href": "https://www.w3.org/TR/webaudio/#input-audioparam-buffer", + "href": "https://www.w3.org/TR/webaudio-1.0/#input-audioparam-buffer", "linkingText": [ "input AudioParam buffer" ], @@ -17167,7 +17347,7 @@ "informative": false, "heading": { "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", + "href": "https://www.w3.org/TR/webaudio-1.0/#rendering-loop", "title": "Rendering an Audio Graph", "number": "2.4" }, @@ -17175,7 +17355,7 @@ }, { "id": "input-buffer", - "href": "https://www.w3.org/TR/webaudio/#input-buffer", + "href": "https://www.w3.org/TR/webaudio-1.0/#input-buffer", "linkingText": [ "input buffer" ], @@ -17186,7 +17366,7 @@ "informative": false, "heading": { "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", + "href": "https://www.w3.org/TR/webaudio-1.0/#rendering-loop", "title": "Rendering an Audio Graph", "number": "2.4" }, @@ -17194,7 +17374,7 @@ }, { "id": "mute", - "href": "https://www.w3.org/TR/webaudio/#mute", + "href": "https://www.w3.org/TR/webaudio-1.0/#mute", "linkingText": [ "Muting" ], @@ -17205,7 +17385,7 @@ "informative": false, "heading": { "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", + "href": "https://www.w3.org/TR/webaudio-1.0/#rendering-loop", "title": "Rendering an Audio Graph", "number": "2.4" }, @@ -17213,7 +17393,7 @@ }, { "id": "available-for-reading", - "href": "https://www.w3.org/TR/webaudio/#available-for-reading", + "href": "https://www.w3.org/TR/webaudio-1.0/#available-for-reading", "linkingText": [ "Making a buffer available for reading" ], @@ -17224,7 +17404,7 @@ "informative": false, "heading": { "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", + "href": "https://www.w3.org/TR/webaudio-1.0/#rendering-loop", "title": "Rendering an Audio Graph", "number": "2.4" }, @@ -17232,7 +17412,7 @@ }, { "id": "recording-the-input", - "href": "https://www.w3.org/TR/webaudio/#recording-the-input", + "href": "https://www.w3.org/TR/webaudio-1.0/#recording-the-input", "linkingText": [ "Recording the input" ], @@ -17243,7 +17423,7 @@ "informative": false, "heading": { "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", + "href": "https://www.w3.org/TR/webaudio-1.0/#rendering-loop", "title": "Rendering an Audio Graph", "number": "2.4" }, @@ -17251,7 +17431,7 @@ }, { "id": "computing-a-block-of-audio", - "href": "https://www.w3.org/TR/webaudio/#computing-a-block-of-audio", + "href": "https://www.w3.org/TR/webaudio-1.0/#computing-a-block-of-audio", "linkingText": [ "Computing a block of audio" ], @@ -17262,17 +17442,17 @@ "informative": false, "heading": { "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", + "href": "https://www.w3.org/TR/webaudio-1.0/#rendering-loop", "title": "Rendering an Audio Graph", "number": "2.4" }, "definedIn": "prose" }, { - "id": "processing-an-input-buffer", - "href": "https://www.w3.org/TR/webaudio/#processing-an-input-buffer", + "id": "processing-input-buffer", + "href": "https://www.w3.org/TR/webaudio-1.0/#processing-input-buffer", "linkingText": [ - "Processing an input buffer" + "processing-input-buffer" ], "localLinkingText": [], "type": "dfn", @@ -17281,7 +17461,7 @@ "informative": false, "heading": { "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", + "href": "https://www.w3.org/TR/webaudio-1.0/#rendering-loop", "title": "Rendering an Audio Graph", "number": "2.4" }, @@ -17289,7 +17469,7 @@ }, { "id": "mixing-rules", - "href": "https://www.w3.org/TR/webaudio/#mixing-rules", + "href": "https://www.w3.org/TR/webaudio-1.0/#mixing-rules", "linkingText": [ "mixing rules" ], @@ -17300,7 +17480,7 @@ "informative": false, "heading": { "id": "channel-up-mixing-and-down-mixing", - "href": "https://www.w3.org/TR/webaudio/#channel-up-mixing-and-down-mixing", + "href": "https://www.w3.org/TR/webaudio-1.0/#channel-up-mixing-and-down-mixing", "title": "Channel Up-Mixing and Down-Mixing", "number": "4" }, @@ -17308,7 +17488,7 @@ }, { "id": "up-mixing", - "href": "https://www.w3.org/TR/webaudio/#up-mixing", + "href": "https://www.w3.org/TR/webaudio-1.0/#up-mixing", "linkingText": [ "up-mixing" ], @@ -17319,7 +17499,7 @@ "informative": false, "heading": { "id": "channel-up-mixing-and-down-mixing", - "href": "https://www.w3.org/TR/webaudio/#channel-up-mixing-and-down-mixing", + "href": "https://www.w3.org/TR/webaudio-1.0/#channel-up-mixing-and-down-mixing", "title": "Channel Up-Mixing and Down-Mixing", "number": "4" }, @@ -17327,7 +17507,7 @@ }, { "id": "down-mixing", - "href": "https://www.w3.org/TR/webaudio/#down-mixing", + "href": "https://www.w3.org/TR/webaudio-1.0/#down-mixing", "linkingText": [ "down-mixing" ], @@ -17338,7 +17518,7 @@ "informative": false, "heading": { "id": "channel-up-mixing-and-down-mixing", - "href": "https://www.w3.org/TR/webaudio/#channel-up-mixing-and-down-mixing", + "href": "https://www.w3.org/TR/webaudio-1.0/#channel-up-mixing-and-down-mixing", "title": "Channel Up-Mixing and Down-Mixing", "number": "4" }, @@ -17346,7 +17526,7 @@ }, { "id": "linear-pcm", - "href": "https://www.w3.org/TR/webaudio/#linear-pcm", + "href": "https://www.w3.org/TR/webaudio-1.0/#linear-pcm", "linkingText": [ "linear PCM" ], @@ -17357,11 +17537,47 @@ "informative": false, "heading": { "id": "audio-sample-format", - "href": "https://www.w3.org/TR/webaudio/#audio-sample-format", + "href": "https://www.w3.org/TR/webaudio-1.0/#audio-sample-format", "title": "Audio sample format", "number": "5.1" }, "definedIn": "prose" + }, + { + "id": "conformant-user-agent", + "href": "https://www.w3.org/TR/webaudio-1.0/#conformant-user-agent", + "linkingText": [ + "conformant user agent" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "conformance-classes", + "href": "https://www.w3.org/TR/webaudio-1.0/#conformance-classes", + "title": "Conformance Classes" + }, + "definedIn": "prose" + }, + { + "id": "conformant-server", + "href": "https://www.w3.org/TR/webaudio-1.0/#conformant-server", + "linkingText": [ + "conformant server" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "conformance-classes", + "href": "https://www.w3.org/TR/webaudio-1.0/#conformance-classes", + "title": "Conformance Classes" + }, + "definedIn": "prose" } ] } \ No newline at end of file diff --git a/tr/dfns/webdriver-bidi.json b/tr/dfns/webdriver-bidi.json new file mode 100644 index 000000000000..e4e21695e5b1 --- /dev/null +++ b/tr/dfns/webdriver-bidi.json @@ -0,0 +1,5742 @@ +{ + "spec": { + "title": "WebDriver BiDi", + "url": "https://www.w3.org/TR/webdriver-bidi/" + }, + "dfns": [ + { + "id": "wait-queue", + "href": "https://www.w3.org/TR/webdriver-bidi/#wait-queue", + "linkingText": [ + "wait queue" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "infrastructure", + "href": "https://www.w3.org/TR/webdriver-bidi/#infrastructure", + "title": "Infrastructure", + "number": "2" + }, + "definedIn": "prose" + }, + { + "id": "awaits", + "href": "https://www.w3.org/TR/webdriver-bidi/#awaits", + "linkingText": [ + "awaits" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "infrastructure", + "href": "https://www.w3.org/TR/webdriver-bidi/#infrastructure", + "title": "Infrastructure", + "number": "2" + }, + "definedIn": "prose" + }, + { + "id": "resume", + "href": "https://www.w3.org/TR/webdriver-bidi/#resume", + "linkingText": [ + "resume" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "infrastructure", + "href": "https://www.w3.org/TR/webdriver-bidi/#infrastructure", + "title": "Infrastructure", + "number": "2" + }, + "definedIn": "prose" + }, + { + "id": "remote-end-definition", + "href": "https://www.w3.org/TR/webdriver-bidi/#remote-end-definition", + "linkingText": [ + "remote end definition" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "protocol", + "href": "https://www.w3.org/TR/webdriver-bidi/#protocol", + "title": "Protocol", + "number": "3" + }, + "definedIn": "prose" + }, + { + "id": "local-end-definition", + "href": "https://www.w3.org/TR/webdriver-bidi/#local-end-definition", + "linkingText": [ + "local end definition" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "protocol", + "href": "https://www.w3.org/TR/webdriver-bidi/#protocol", + "title": "Protocol", + "number": "3" + }, + "definedIn": "prose" + }, + { + "id": "bidi-flag", + "href": "https://www.w3.org/TR/webdriver-bidi/#bidi-flag", + "linkingText": [ + "BiDi flag" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "session", + "href": "https://www.w3.org/TR/webdriver-bidi/#session", + "title": "Session", + "number": "3.2" + }, + "definedIn": "prose" + }, + { + "id": "bidi-session", + "href": "https://www.w3.org/TR/webdriver-bidi/#bidi-session", + "linkingText": [ + "BiDi session" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "session", + "href": "https://www.w3.org/TR/webdriver-bidi/#session", + "title": "Session", + "number": "3.2" + }, + "definedIn": "prose" + }, + { + "id": "active-bidi-sessions", + "href": "https://www.w3.org/TR/webdriver-bidi/#active-bidi-sessions", + "linkingText": [ + "active BiDi sessions" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "session", + "href": "https://www.w3.org/TR/webdriver-bidi/#session", + "title": "Session", + "number": "3.2" + }, + "definedIn": "prose" + }, + { + "id": "module", + "href": "https://www.w3.org/TR/webdriver-bidi/#module", + "linkingText": [ + "module" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "protocol-modules", + "href": "https://www.w3.org/TR/webdriver-bidi/#protocol-modules", + "title": "Modules", + "number": "3.3" + }, + "definedIn": "prose" + }, + { + "id": "module-module-name", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-module-name", + "linkingText": [ + "module name" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "module" + ], + "access": "public", + "informative": false, + "heading": { + "id": "protocol-modules", + "href": "https://www.w3.org/TR/webdriver-bidi/#protocol-modules", + "title": "Modules", + "number": "3.3" + }, + "definedIn": "prose" + }, + { + "id": "extension-modules", + "href": "https://www.w3.org/TR/webdriver-bidi/#extension-modules", + "linkingText": [ + "extension modules" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "protocol-modules", + "href": "https://www.w3.org/TR/webdriver-bidi/#protocol-modules", + "title": "Modules", + "number": "3.3" + }, + "definedIn": "prose" + }, + { + "id": "command", + "href": "https://www.w3.org/TR/webdriver-bidi/#command", + "linkingText": [ + "command" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "commands", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands", + "title": "Commands", + "number": "3.4" + }, + "definedIn": "prose" + }, + { + "id": "command-command-type", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-command-type", + "linkingText": [ + "command type" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "command" + ], + "access": "public", + "informative": false, + "heading": { + "id": "commands", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands", + "title": "Commands", + "number": "3.4" + }, + "definedIn": "prose" + }, + { + "id": "command-command-name", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-command-name", + "linkingText": [ + "command name" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "command" + ], + "access": "public", + "informative": false, + "heading": { + "id": "commands", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands", + "title": "Commands", + "number": "3.4" + }, + "definedIn": "prose" + }, + { + "id": "command-command-parameters", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-command-parameters", + "linkingText": [ + "command parameters" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "command" + ], + "access": "public", + "informative": false, + "heading": { + "id": "commands", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands", + "title": "Commands", + "number": "3.4" + }, + "definedIn": "prose" + }, + { + "id": "command-result-type", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-result-type", + "linkingText": [ + "result type" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "command" + ], + "access": "public", + "informative": false, + "heading": { + "id": "commands", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands", + "title": "Commands", + "number": "3.4" + }, + "definedIn": "prose" + }, + { + "id": "static-command", + "href": "https://www.w3.org/TR/webdriver-bidi/#static-command", + "linkingText": [ + "static command" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "commands", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands", + "title": "Commands", + "number": "3.4" + }, + "definedIn": "prose" + }, + { + "id": "set-of-all-command-names", + "href": "https://www.w3.org/TR/webdriver-bidi/#set-of-all-command-names", + "linkingText": [ + "set of all command names" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "commands", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands", + "title": "Commands", + "number": "3.4" + }, + "definedIn": "prose" + }, + { + "id": "errors-no-such-client-window", + "href": "https://www.w3.org/TR/webdriver-bidi/#errors-no-such-client-window", + "linkingText": [ + "no such client window" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "errors" + ], + "access": "public", + "informative": false, + "heading": { + "id": "errors", + "href": "https://www.w3.org/TR/webdriver-bidi/#errors", + "title": "Errors", + "number": "3.5" + }, + "definedIn": "dt" + }, + { + "id": "errors-no-such-handle", + "href": "https://www.w3.org/TR/webdriver-bidi/#errors-no-such-handle", + "linkingText": [ + "no such handle" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "errors" + ], + "access": "public", + "informative": false, + "heading": { + "id": "errors", + "href": "https://www.w3.org/TR/webdriver-bidi/#errors", + "title": "Errors", + "number": "3.5" + }, + "definedIn": "dt" + }, + { + "id": "errors-no-such-history-entry", + "href": "https://www.w3.org/TR/webdriver-bidi/#errors-no-such-history-entry", + "linkingText": [ + "no such history entry" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "errors" + ], + "access": "public", + "informative": false, + "heading": { + "id": "errors", + "href": "https://www.w3.org/TR/webdriver-bidi/#errors", + "title": "Errors", + "number": "3.5" + }, + "definedIn": "dt" + }, + { + "id": "errors-no-such-intercept", + "href": "https://www.w3.org/TR/webdriver-bidi/#errors-no-such-intercept", + "linkingText": [ + "no such intercept" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "errors" + ], + "access": "public", + "informative": false, + "heading": { + "id": "errors", + "href": "https://www.w3.org/TR/webdriver-bidi/#errors", + "title": "Errors", + "number": "3.5" + }, + "definedIn": "dt" + }, + { + "id": "errors-no-such-node", + "href": "https://www.w3.org/TR/webdriver-bidi/#errors-no-such-node", + "linkingText": [ + "no such node" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "errors" + ], + "access": "public", + "informative": false, + "heading": { + "id": "errors", + "href": "https://www.w3.org/TR/webdriver-bidi/#errors", + "title": "Errors", + "number": "3.5" + }, + "definedIn": "dt" + }, + { + "id": "errors-no-such-request", + "href": "https://www.w3.org/TR/webdriver-bidi/#errors-no-such-request", + "linkingText": [ + "no such request" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "errors" + ], + "access": "public", + "informative": false, + "heading": { + "id": "errors", + "href": "https://www.w3.org/TR/webdriver-bidi/#errors", + "title": "Errors", + "number": "3.5" + }, + "definedIn": "dt" + }, + { + "id": "errors-no-such-script", + "href": "https://www.w3.org/TR/webdriver-bidi/#errors-no-such-script", + "linkingText": [ + "no such script" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "errors" + ], + "access": "public", + "informative": false, + "heading": { + "id": "errors", + "href": "https://www.w3.org/TR/webdriver-bidi/#errors", + "title": "Errors", + "number": "3.5" + }, + "definedIn": "dt" + }, + { + "id": "errors-no-such-storage-partition", + "href": "https://www.w3.org/TR/webdriver-bidi/#errors-no-such-storage-partition", + "linkingText": [ + "no such storage partition" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "errors" + ], + "access": "public", + "informative": false, + "heading": { + "id": "errors", + "href": "https://www.w3.org/TR/webdriver-bidi/#errors", + "title": "Errors", + "number": "3.5" + }, + "definedIn": "dt" + }, + { + "id": "errors-no-such-user-context", + "href": "https://www.w3.org/TR/webdriver-bidi/#errors-no-such-user-context", + "linkingText": [ + "no such user context" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "errors" + ], + "access": "public", + "informative": false, + "heading": { + "id": "errors", + "href": "https://www.w3.org/TR/webdriver-bidi/#errors", + "title": "Errors", + "number": "3.5" + }, + "definedIn": "dt" + }, + { + "id": "errors-unable-to-close-browser", + "href": "https://www.w3.org/TR/webdriver-bidi/#errors-unable-to-close-browser", + "linkingText": [ + "unable to close browser" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "errors" + ], + "access": "public", + "informative": false, + "heading": { + "id": "errors", + "href": "https://www.w3.org/TR/webdriver-bidi/#errors", + "title": "Errors", + "number": "3.5" + }, + "definedIn": "dt" + }, + { + "id": "errors-unable-to-set-cookie", + "href": "https://www.w3.org/TR/webdriver-bidi/#errors-unable-to-set-cookie", + "linkingText": [ + "unable to set cookie" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "errors" + ], + "access": "public", + "informative": false, + "heading": { + "id": "errors", + "href": "https://www.w3.org/TR/webdriver-bidi/#errors", + "title": "Errors", + "number": "3.5" + }, + "definedIn": "dt" + }, + { + "id": "errors-underspecified-storage-partition", + "href": "https://www.w3.org/TR/webdriver-bidi/#errors-underspecified-storage-partition", + "linkingText": [ + "underspecified storage partition" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "errors" + ], + "access": "public", + "informative": false, + "heading": { + "id": "errors", + "href": "https://www.w3.org/TR/webdriver-bidi/#errors", + "title": "Errors", + "number": "3.5" + }, + "definedIn": "dt" + }, + { + "id": "errors-unable-to-set-file-input", + "href": "https://www.w3.org/TR/webdriver-bidi/#errors-unable-to-set-file-input", + "linkingText": [ + "unable to set file input" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "errors" + ], + "access": "public", + "informative": false, + "heading": { + "id": "errors", + "href": "https://www.w3.org/TR/webdriver-bidi/#errors", + "title": "Errors", + "number": "3.5" + }, + "definedIn": "dt" + }, + { + "id": "event", + "href": "https://www.w3.org/TR/webdriver-bidi/#event", + "linkingText": [ + "event" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "events", + "href": "https://www.w3.org/TR/webdriver-bidi/#events", + "title": "Events", + "number": "3.6" + }, + "definedIn": "prose" + }, + { + "id": "event-event-type", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-event-type", + "linkingText": [ + "event type" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "event" + ], + "access": "public", + "informative": false, + "heading": { + "id": "events", + "href": "https://www.w3.org/TR/webdriver-bidi/#events", + "title": "Events", + "number": "3.6" + }, + "definedIn": "prose" + }, + { + "id": "event-event-name", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-event-name", + "linkingText": [ + "event name" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "event" + ], + "access": "public", + "informative": false, + "heading": { + "id": "events", + "href": "https://www.w3.org/TR/webdriver-bidi/#events", + "title": "Events", + "number": "3.6" + }, + "definedIn": "prose" + }, + { + "id": "event-event-parameters", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-event-parameters", + "linkingText": [ + "event parameters." + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "event" + ], + "access": "public", + "informative": false, + "heading": { + "id": "events", + "href": "https://www.w3.org/TR/webdriver-bidi/#events", + "title": "Events", + "number": "3.6" + }, + "definedIn": "prose" + }, + { + "id": "event-remote-end-event-trigger", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-remote-end-event-trigger", + "linkingText": [ + "remote end event trigger" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "event" + ], + "access": "public", + "informative": false, + "heading": { + "id": "events", + "href": "https://www.w3.org/TR/webdriver-bidi/#events", + "title": "Events", + "number": "3.6" + }, + "definedIn": "prose" + }, + { + "id": "event-remote-end-subscribe-steps", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-remote-end-subscribe-steps", + "linkingText": [ + "remote end subscribe steps" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "event" + ], + "access": "public", + "informative": false, + "heading": { + "id": "events", + "href": "https://www.w3.org/TR/webdriver-bidi/#events", + "title": "Events", + "number": "3.6" + }, + "definedIn": "prose" + }, + { + "id": "event-subscribe-priority", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-subscribe-priority", + "linkingText": [ + "subscribe priority" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "event" + ], + "access": "public", + "informative": false, + "heading": { + "id": "events", + "href": "https://www.w3.org/TR/webdriver-bidi/#events", + "title": "Events", + "number": "3.6" + }, + "definedIn": "prose" + }, + { + "id": "event-global-event-set", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-global-event-set", + "linkingText": [ + "global event set" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "event" + ], + "access": "public", + "informative": false, + "heading": { + "id": "events", + "href": "https://www.w3.org/TR/webdriver-bidi/#events", + "title": "Events", + "number": "3.6" + }, + "definedIn": "prose" + }, + { + "id": "event-in-the-default-event-set", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-in-the-default-event-set", + "linkingText": [ + "in the default event set" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "event" + ], + "access": "public", + "informative": false, + "heading": { + "id": "events", + "href": "https://www.w3.org/TR/webdriver-bidi/#events", + "title": "Events", + "number": "3.6" + }, + "definedIn": "prose" + }, + { + "id": "event-navigable-event-map", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-navigable-event-map", + "linkingText": [ + "navigable event map" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "event" + ], + "access": "public", + "informative": false, + "heading": { + "id": "events", + "href": "https://www.w3.org/TR/webdriver-bidi/#events", + "title": "Events", + "number": "3.6" + }, + "definedIn": "prose" + }, + { + "id": "event-enabled-navigables", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-enabled-navigables", + "linkingText": [ + "event enabled navigables" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "events", + "href": "https://www.w3.org/TR/webdriver-bidi/#events", + "title": "Events", + "number": "3.6" + }, + "definedIn": "prose" + }, + { + "id": "set-of-sessions-for-which-an-event-is-enabled", + "href": "https://www.w3.org/TR/webdriver-bidi/#set-of-sessions-for-which-an-event-is-enabled", + "linkingText": [ + "set of sessions for which an event is enabled" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "events", + "href": "https://www.w3.org/TR/webdriver-bidi/#events", + "title": "Events", + "number": "3.6" + }, + "definedIn": "prose" + }, + { + "id": "event-is-enabled", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-is-enabled", + "linkingText": [ + "event is enabled" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "events", + "href": "https://www.w3.org/TR/webdriver-bidi/#events", + "title": "Events", + "number": "3.6" + }, + "definedIn": "prose" + }, + { + "id": "obtain-a-set-of-event-names", + "href": "https://www.w3.org/TR/webdriver-bidi/#obtain-a-set-of-event-names", + "linkingText": [ + "obtain a set of event names" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "events", + "href": "https://www.w3.org/TR/webdriver-bidi/#events", + "title": "Events", + "number": "3.6" + }, + "definedIn": "prose" + }, + { + "id": "websocket-listener", + "href": "https://www.w3.org/TR/webdriver-bidi/#websocket-listener", + "linkingText": [ + "WebSocket listener" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "transport", + "href": "https://www.w3.org/TR/webdriver-bidi/#transport", + "title": "Transport", + "number": "4" + }, + "definedIn": "prose" + }, + { + "id": "listener-host", + "href": "https://www.w3.org/TR/webdriver-bidi/#listener-host", + "linkingText": [ + "host" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "listener" + ], + "access": "private", + "informative": false, + "heading": { + "id": "transport", + "href": "https://www.w3.org/TR/webdriver-bidi/#transport", + "title": "Transport", + "number": "4" + }, + "definedIn": "prose" + }, + { + "id": "listener-port", + "href": "https://www.w3.org/TR/webdriver-bidi/#listener-port", + "linkingText": [ + "port" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "listener" + ], + "access": "private", + "informative": false, + "heading": { + "id": "transport", + "href": "https://www.w3.org/TR/webdriver-bidi/#transport", + "title": "Transport", + "number": "4" + }, + "definedIn": "prose" + }, + { + "id": "listener-secure-flag", + "href": "https://www.w3.org/TR/webdriver-bidi/#listener-secure-flag", + "linkingText": [ + "secure flag" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "listener" + ], + "access": "private", + "informative": false, + "heading": { + "id": "transport", + "href": "https://www.w3.org/TR/webdriver-bidi/#transport", + "title": "Transport", + "number": "4" + }, + "definedIn": "prose" + }, + { + "id": "list-of-websocket-resources", + "href": "https://www.w3.org/TR/webdriver-bidi/#list-of-websocket-resources", + "linkingText": [ + "list of WebSocket resources" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "transport", + "href": "https://www.w3.org/TR/webdriver-bidi/#transport", + "title": "Transport", + "number": "4" + }, + "definedIn": "prose" + }, + { + "id": "active-listeners", + "href": "https://www.w3.org/TR/webdriver-bidi/#active-listeners", + "linkingText": [ + "active listeners" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "transport", + "href": "https://www.w3.org/TR/webdriver-bidi/#transport", + "title": "Transport", + "number": "4" + }, + "definedIn": "prose" + }, + { + "id": "websocket-connections-not-associated-with-a-session", + "href": "https://www.w3.org/TR/webdriver-bidi/#websocket-connections-not-associated-with-a-session", + "linkingText": [ + "WebSocket connections not associated with a session" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "transport", + "href": "https://www.w3.org/TR/webdriver-bidi/#transport", + "title": "Transport", + "number": "4" + }, + "definedIn": "prose" + }, + { + "id": "websocket-connection", + "href": "https://www.w3.org/TR/webdriver-bidi/#websocket-connection", + "linkingText": [ + "WebSocket connection" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "transport", + "href": "https://www.w3.org/TR/webdriver-bidi/#transport", + "title": "Transport", + "number": "4" + }, + "definedIn": "prose" + }, + { + "id": "session-websocket-connections", + "href": "https://www.w3.org/TR/webdriver-bidi/#session-websocket-connections", + "linkingText": [ + "session WebSocket connections" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "transport", + "href": "https://www.w3.org/TR/webdriver-bidi/#transport", + "title": "Transport", + "number": "4" + }, + "definedIn": "prose" + }, + { + "id": "associated-with-connection", + "href": "https://www.w3.org/TR/webdriver-bidi/#associated-with-connection", + "linkingText": [ + "associated with connection" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "transport", + "href": "https://www.w3.org/TR/webdriver-bidi/#transport", + "title": "Transport", + "number": "4" + }, + "definedIn": "prose" + }, + { + "id": "construct-a-websocket-resource-name", + "href": "https://www.w3.org/TR/webdriver-bidi/#construct-a-websocket-resource-name", + "linkingText": [ + "construct a WebSocket resource name" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "transport", + "href": "https://www.w3.org/TR/webdriver-bidi/#transport", + "title": "Transport", + "number": "4" + }, + "definedIn": "prose" + }, + { + "id": "construct-a-websocket-url", + "href": "https://www.w3.org/TR/webdriver-bidi/#construct-a-websocket-url", + "linkingText": [ + "construct a WebSocket URL" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "transport", + "href": "https://www.w3.org/TR/webdriver-bidi/#transport", + "title": "Transport", + "number": "4" + }, + "definedIn": "prose" + }, + { + "id": "get-a-session-id-for-a-websocket-resource", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-a-session-id-for-a-websocket-resource", + "linkingText": [ + "get a session ID for a WebSocket resource" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "transport", + "href": "https://www.w3.org/TR/webdriver-bidi/#transport", + "title": "Transport", + "number": "4" + }, + "definedIn": "prose" + }, + { + "id": "start-listening-for-a-websocket-connection", + "href": "https://www.w3.org/TR/webdriver-bidi/#start-listening-for-a-websocket-connection", + "linkingText": [ + "start listening for a WebSocket connection" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "transport", + "href": "https://www.w3.org/TR/webdriver-bidi/#transport", + "title": "Transport", + "number": "4" + }, + "definedIn": "prose" + }, + { + "id": "handle-an-incoming-message", + "href": "https://www.w3.org/TR/webdriver-bidi/#handle-an-incoming-message", + "linkingText": [ + "handle an incoming message" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "transport", + "href": "https://www.w3.org/TR/webdriver-bidi/#transport", + "title": "Transport", + "number": "4" + }, + "definedIn": "prose" + }, + { + "id": "get-related-navigables", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-related-navigables", + "linkingText": [ + "get related navigables" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "transport", + "href": "https://www.w3.org/TR/webdriver-bidi/#transport", + "title": "Transport", + "number": "4" + }, + "definedIn": "prose" + }, + { + "id": "emit-an-event", + "href": "https://www.w3.org/TR/webdriver-bidi/#emit-an-event", + "linkingText": [ + "emit an event" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "transport", + "href": "https://www.w3.org/TR/webdriver-bidi/#transport", + "title": "Transport", + "number": "4" + }, + "definedIn": "prose" + }, + { + "id": "send-an-error-response", + "href": "https://www.w3.org/TR/webdriver-bidi/#send-an-error-response", + "linkingText": [ + "send an error response" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "transport", + "href": "https://www.w3.org/TR/webdriver-bidi/#transport", + "title": "Transport", + "number": "4" + }, + "definedIn": "prose" + }, + { + "id": "handle-a-connection-closing", + "href": "https://www.w3.org/TR/webdriver-bidi/#handle-a-connection-closing", + "linkingText": [ + "handle a connection closing" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "transport", + "href": "https://www.w3.org/TR/webdriver-bidi/#transport", + "title": "Transport", + "number": "4" + }, + "definedIn": "prose" + }, + { + "id": "close-the-websocket-connections", + "href": "https://www.w3.org/TR/webdriver-bidi/#close-the-websocket-connections", + "linkingText": [ + "close the WebSocket connections" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "transport", + "href": "https://www.w3.org/TR/webdriver-bidi/#transport", + "title": "Transport", + "number": "4" + }, + "definedIn": "prose" + }, + { + "id": "supports-bidi-only-sessions", + "href": "https://www.w3.org/TR/webdriver-bidi/#supports-bidi-only-sessions", + "linkingText": [ + "supports BiDi-only sessions" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "establishing", + "href": "https://www.w3.org/TR/webdriver-bidi/#establishing", + "title": "Establishing a Connection", + "number": "4.1" + }, + "definedIn": "prose" + }, + { + "id": "sandbox-map", + "href": "https://www.w3.org/TR/webdriver-bidi/#sandbox-map", + "linkingText": [ + "sandbox map" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "sandbox", + "href": "https://www.w3.org/TR/webdriver-bidi/#sandbox", + "title": "Sandboxed Script Execution", + "number": "5" + }, + "definedIn": "prose" + }, + { + "id": "get-or-create-a-sandbox-realm", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-or-create-a-sandbox-realm", + "linkingText": [ + "get or create a sandbox realm" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "sandbox-realm", + "href": "https://www.w3.org/TR/webdriver-bidi/#sandbox-realm", + "title": "Sandbox Realms", + "number": "5.1" + }, + "definedIn": "prose" + }, + { + "id": "create-a-sandbox-realm", + "href": "https://www.w3.org/TR/webdriver-bidi/#create-a-sandbox-realm", + "linkingText": [ + "create a sandbox realm" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "sandbox-realm", + "href": "https://www.w3.org/TR/webdriver-bidi/#sandbox-realm", + "title": "Sandbox Realms", + "number": "5.1" + }, + "definedIn": "prose" + }, + { + "id": "get-a-sandbox-name", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-a-sandbox-name", + "linkingText": [ + "get a sandbox name" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "sandbox-realm", + "href": "https://www.w3.org/TR/webdriver-bidi/#sandbox-realm", + "title": "Sandbox Realms", + "number": "5.1" + }, + "definedIn": "prose" + }, + { + "id": "sandboxproxy", + "href": "https://www.w3.org/TR/webdriver-bidi/#sandboxproxy", + "linkingText": [ + "SandboxProxy" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "sandbox-proxy", + "href": "https://www.w3.org/TR/webdriver-bidi/#sandbox-proxy", + "title": "Sandbox Proxy Objects", + "number": "5.2" + }, + "definedIn": "prose" + }, + { + "id": "unwrapped", + "href": "https://www.w3.org/TR/webdriver-bidi/#unwrapped", + "linkingText": [ + "unwrapped" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "sandbox-proxy", + "href": "https://www.w3.org/TR/webdriver-bidi/#sandbox-proxy", + "title": "Sandbox Proxy Objects", + "number": "5.2" + }, + "definedIn": "prose" + }, + { + "id": "sandboxwindowproxy", + "href": "https://www.w3.org/TR/webdriver-bidi/#sandboxwindowproxy", + "linkingText": [ + "SandboxWindowProxy" + ], + "localLinkingText": [], + "type": "interface", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "sandbox-sandboxwindowproxy", + "href": "https://www.w3.org/TR/webdriver-bidi/#sandbox-sandboxwindowproxy", + "title": "SandboxWindowProxy", + "number": "5.3" + }, + "definedIn": "prose" + }, + { + "id": "user-context", + "href": "https://www.w3.org/TR/webdriver-bidi/#user-context", + "linkingText": [ + "user context" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "user-contexts", + "href": "https://www.w3.org/TR/webdriver-bidi/#user-contexts", + "title": "User Contexts", + "number": "6" + }, + "definedIn": "prose" + }, + { + "id": "user-context-user-context-id", + "href": "https://www.w3.org/TR/webdriver-bidi/#user-context-user-context-id", + "linkingText": [ + "user context id" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "user context" + ], + "access": "public", + "informative": false, + "heading": { + "id": "user-contexts", + "href": "https://www.w3.org/TR/webdriver-bidi/#user-contexts", + "title": "User Contexts", + "number": "6" + }, + "definedIn": "prose" + }, + { + "id": "associated-user-context", + "href": "https://www.w3.org/TR/webdriver-bidi/#associated-user-context", + "linkingText": [ + "associated user context" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "user-contexts", + "href": "https://www.w3.org/TR/webdriver-bidi/#user-contexts", + "title": "User Contexts", + "number": "6" + }, + "definedIn": "prose" + }, + { + "id": "empty-user-context", + "href": "https://www.w3.org/TR/webdriver-bidi/#empty-user-context", + "linkingText": [ + "empty user context" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "user-contexts", + "href": "https://www.w3.org/TR/webdriver-bidi/#user-contexts", + "title": "User Contexts", + "number": "6" + }, + "definedIn": "prose" + }, + { + "id": "default-user-context", + "href": "https://www.w3.org/TR/webdriver-bidi/#default-user-context", + "linkingText": [ + "default user context" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "user-contexts", + "href": "https://www.w3.org/TR/webdriver-bidi/#user-contexts", + "title": "User Contexts", + "number": "6" + }, + "definedIn": "prose" + }, + { + "id": "set-of-user-contexts", + "href": "https://www.w3.org/TR/webdriver-bidi/#set-of-user-contexts", + "linkingText": [ + "set of user contexts" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "user-contexts", + "href": "https://www.w3.org/TR/webdriver-bidi/#user-contexts", + "title": "User Contexts", + "number": "6" + }, + "definedIn": "prose" + }, + { + "id": "get-user-context", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-user-context", + "linkingText": [ + "get user context" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "user-contexts", + "href": "https://www.w3.org/TR/webdriver-bidi/#user-contexts", + "title": "User Contexts", + "number": "6" + }, + "definedIn": "prose" + }, + { + "id": "modules-session", + "href": "https://www.w3.org/TR/webdriver-bidi/#modules-session", + "linkingText": [ + "session" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "modules" + ], + "access": "public", + "informative": false, + "heading": { + "id": "module-session", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-session", + "title": "The session Module", + "number": "7.1" + }, + "definedIn": "prose" + }, + { + "id": "end-the-session", + "href": "https://www.w3.org/TR/webdriver-bidi/#end-the-session", + "linkingText": [ + "end the session" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "module-session-definition", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-session-definition", + "title": "Definition", + "number": "7.1.1" + }, + "definedIn": "prose" + }, + { + "id": "cleanup-the-session", + "href": "https://www.w3.org/TR/webdriver-bidi/#cleanup-the-session", + "linkingText": [ + "cleanup the session" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "module-session-definition", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-session-definition", + "title": "Definition", + "number": "7.1.1" + }, + "definedIn": "prose" + }, + { + "id": "cleanup-remote-end-state", + "href": "https://www.w3.org/TR/webdriver-bidi/#cleanup-remote-end-state", + "linkingText": [ + "cleanup remote end state" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "module-session-definition", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-session-definition", + "title": "Definition", + "number": "7.1.1" + }, + "definedIn": "prose" + }, + { + "id": "update-the-event-map", + "href": "https://www.w3.org/TR/webdriver-bidi/#update-the-event-map", + "linkingText": [ + "update the event map" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "module-session-definition", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-session-definition", + "title": "Definition", + "number": "7.1.1" + }, + "definedIn": "prose" + }, + { + "id": "websocket-url", + "href": "https://www.w3.org/TR/webdriver-bidi/#websocket-url", + "linkingText": [ + "WebSocket URL" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-session-CapabilityRequest", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-session-CapabilityRequest", + "title": "The session.CapabilityRequest Type", + "number": "7.1.2.2" + }, + "definedIn": "table" + }, + { + "id": "commands-sessionstatus", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-sessionstatus", + "linkingText": [ + "session.status" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-session-status", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-session-status", + "title": "The session.status Command", + "number": "7.1.3.1" + }, + "definedIn": "prose" + }, + { + "id": "commands-sessionnew", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-sessionnew", + "linkingText": [ + "session.new" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-session-new", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-session-new", + "title": "The session.new Command", + "number": "7.1.3.2" + }, + "definedIn": "prose" + }, + { + "id": "commands-sessionend", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-sessionend", + "linkingText": [ + "session.end" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-session-end", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-session-end", + "title": "The session.end Command", + "number": "7.1.3.3" + }, + "definedIn": "prose" + }, + { + "id": "commands-sessionsubscribe", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-sessionsubscribe", + "linkingText": [ + "session.subscribe" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-session-subscribe", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-session-subscribe", + "title": "The session.subscribe Command", + "number": "7.1.3.4" + }, + "definedIn": "prose" + }, + { + "id": "commands-sessionunsubscribe", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-sessionunsubscribe", + "linkingText": [ + "session.unsubscribe" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-session-unsubscribe", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-session-unsubscribe", + "title": "The session.unsubscribe Command", + "number": "7.1.3.5" + }, + "definedIn": "prose" + }, + { + "id": "modules-browser", + "href": "https://www.w3.org/TR/webdriver-bidi/#modules-browser", + "linkingText": [ + "browser" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "modules" + ], + "access": "public", + "informative": false, + "heading": { + "id": "module-browser", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-browser", + "title": "The browser Module", + "number": "7.2" + }, + "definedIn": "prose" + }, + { + "id": "client-window", + "href": "https://www.w3.org/TR/webdriver-bidi/#client-window", + "linkingText": [ + "client window" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "module-browser-window", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-browser-window", + "title": "Windows", + "number": "7.2.2" + }, + "definedIn": "prose" + }, + { + "id": "client-window-id", + "href": "https://www.w3.org/TR/webdriver-bidi/#client-window-id", + "linkingText": [ + "client window id" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "module-browser-window", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-browser-window", + "title": "Windows", + "number": "7.2.2" + }, + "definedIn": "prose" + }, + { + "id": "client-window-x-coordinate", + "href": "https://www.w3.org/TR/webdriver-bidi/#client-window-x-coordinate", + "linkingText": [ + "x-coordinate" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "client window" + ], + "access": "private", + "informative": false, + "heading": { + "id": "module-browser-window", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-browser-window", + "title": "Windows", + "number": "7.2.2" + }, + "definedIn": "prose" + }, + { + "id": "client-window-y-coordinate", + "href": "https://www.w3.org/TR/webdriver-bidi/#client-window-y-coordinate", + "linkingText": [ + "y-coordinate" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "client window" + ], + "access": "private", + "informative": false, + "heading": { + "id": "module-browser-window", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-browser-window", + "title": "Windows", + "number": "7.2.2" + }, + "definedIn": "prose" + }, + { + "id": "client-window-width", + "href": "https://www.w3.org/TR/webdriver-bidi/#client-window-width", + "linkingText": [ + "width" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "client window" + ], + "access": "private", + "informative": false, + "heading": { + "id": "module-browser-window", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-browser-window", + "title": "Windows", + "number": "7.2.2" + }, + "definedIn": "prose" + }, + { + "id": "client-window-height", + "href": "https://www.w3.org/TR/webdriver-bidi/#client-window-height", + "linkingText": [ + "height" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "client window" + ], + "access": "private", + "informative": false, + "heading": { + "id": "module-browser-window", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-browser-window", + "title": "Windows", + "number": "7.2.2" + }, + "definedIn": "prose" + }, + { + "id": "maximize-the-client-window", + "href": "https://www.w3.org/TR/webdriver-bidi/#maximize-the-client-window", + "linkingText": [ + "maximize the client window" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "module-browser-window", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-browser-window", + "title": "Windows", + "number": "7.2.2" + }, + "definedIn": "prose" + }, + { + "id": "maximize-client-window-is-supported", + "href": "https://www.w3.org/TR/webdriver-bidi/#maximize-client-window-is-supported", + "linkingText": [ + "maximize client window is supported" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "module-browser-window", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-browser-window", + "title": "Windows", + "number": "7.2.2" + }, + "definedIn": "prose" + }, + { + "id": "minimize-the-client-window", + "href": "https://www.w3.org/TR/webdriver-bidi/#minimize-the-client-window", + "linkingText": [ + "minimize the client window" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "module-browser-window", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-browser-window", + "title": "Windows", + "number": "7.2.2" + }, + "definedIn": "prose" + }, + { + "id": "minimize-client-window-is-supported", + "href": "https://www.w3.org/TR/webdriver-bidi/#minimize-client-window-is-supported", + "linkingText": [ + "minimize client window is supported" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "module-browser-window", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-browser-window", + "title": "Windows", + "number": "7.2.2" + }, + "definedIn": "prose" + }, + { + "id": "restore-the-client-window", + "href": "https://www.w3.org/TR/webdriver-bidi/#restore-the-client-window", + "linkingText": [ + "restore the client window" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "module-browser-window", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-browser-window", + "title": "Windows", + "number": "7.2.2" + }, + "definedIn": "prose" + }, + { + "id": "restore-client-window-is-supported", + "href": "https://www.w3.org/TR/webdriver-bidi/#restore-client-window-is-supported", + "linkingText": [ + "restore client window is supported" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "module-browser-window", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-browser-window", + "title": "Windows", + "number": "7.2.2" + }, + "definedIn": "prose" + }, + { + "id": "get-the-client-window-state", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-client-window-state", + "linkingText": [ + "get the client window state" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "module-browser-window", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-browser-window", + "title": "Windows", + "number": "7.2.2" + }, + "definedIn": "prose" + }, + { + "id": "set-the-client-window-state", + "href": "https://www.w3.org/TR/webdriver-bidi/#set-the-client-window-state", + "linkingText": [ + "set the client window state" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "module-browser-window", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-browser-window", + "title": "Windows", + "number": "7.2.2" + }, + "definedIn": "prose" + }, + { + "id": "get-the-client-window-info", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-client-window-info", + "linkingText": [ + "get the client window info" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-browser-ClientWindowInfo", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-browser-ClientWindowInfo", + "title": "The browser.ClientWindowInfo Type", + "number": "7.2.3.2" + }, + "definedIn": "prose" + }, + { + "id": "commands-browserclose", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-browserclose", + "linkingText": [ + "browser.close" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-browser-close", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browser-close", + "title": "The browser.close Command", + "number": "7.2.4.1" + }, + "definedIn": "prose" + }, + { + "id": "commands-browsercreateusercontext", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-browsercreateusercontext", + "linkingText": [ + "browser.createUserContext" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-browser-createUserContext", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browser-createUserContext", + "title": "The browser.createUserContext Command", + "number": "7.2.4.2" + }, + "definedIn": "prose" + }, + { + "id": "commands-browsergetclientwindows", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-browsergetclientwindows", + "linkingText": [ + "browser.getClientWindows" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-browser-getClientWindows", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browser-getClientWindows", + "title": "The browser.getClientWindows Command", + "number": "7.2.4.3" + }, + "definedIn": "prose" + }, + { + "id": "commands-browsergetusercontexts", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-browsergetusercontexts", + "linkingText": [ + "browser.getUserContexts" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-browser-getUserContexts", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browser-getUserContexts", + "title": "The browser.getUserContexts Command", + "number": "7.2.4.4" + }, + "definedIn": "prose" + }, + { + "id": "commands-browserremoveusercontext", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-browserremoveusercontext", + "linkingText": [ + "browser.removeUserContext" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-browser-removeUserContext", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browser-removeUserContext", + "title": "The browser.removeUserContext Command", + "number": "7.2.4.5" + }, + "definedIn": "prose" + }, + { + "id": "commands-browsersetclientwindowstate", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-browsersetclientwindowstate", + "linkingText": [ + "browser.setClientWindowState" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-browser-setClientWindowState", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browser-setClientWindowState", + "title": "The browser.setClientWindowState Command", + "number": "7.2.4.6" + }, + "definedIn": "prose" + }, + { + "id": "modules-browsingcontext", + "href": "https://www.w3.org/TR/webdriver-bidi/#modules-browsingcontext", + "linkingText": [ + "browsingContext" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "modules" + ], + "access": "public", + "informative": false, + "heading": { + "id": "module-browsingContext", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-browsingContext", + "title": "The browsingContext Module", + "number": "7.3" + }, + "definedIn": "prose" + }, + { + "id": "webdriver-navigation-status", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-navigation-status", + "linkingText": [ + "WebDriver navigation status" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "module-browsingContext", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-browsingContext", + "title": "The browsingContext Module", + "number": "7.3" + }, + "definedIn": "prose" + }, + { + "id": "navigation-status-id", + "href": "https://www.w3.org/TR/webdriver-bidi/#navigation-status-id", + "linkingText": [ + "id" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "WebDriver navigation status" + ], + "access": "public", + "informative": false, + "heading": { + "id": "module-browsingContext", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-browsingContext", + "title": "The browsingContext Module", + "number": "7.3" + }, + "definedIn": "dt" + }, + { + "id": "navigation-status-status", + "href": "https://www.w3.org/TR/webdriver-bidi/#navigation-status-status", + "linkingText": [ + "status" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "WebDriver navigation status" + ], + "access": "public", + "informative": false, + "heading": { + "id": "module-browsingContext", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-browsingContext", + "title": "The browsingContext Module", + "number": "7.3" + }, + "definedIn": "dt" + }, + { + "id": "navigation-status-canceled", + "href": "https://www.w3.org/TR/webdriver-bidi/#navigation-status-canceled", + "linkingText": [ + "canceled" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "module-browsingContext", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-browsingContext", + "title": "The browsingContext Module", + "number": "7.3" + }, + "definedIn": "prose" + }, + { + "id": "navigation-status-pending", + "href": "https://www.w3.org/TR/webdriver-bidi/#navigation-status-pending", + "linkingText": [ + "pending" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "module-browsingContext", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-browsingContext", + "title": "The browsingContext Module", + "number": "7.3" + }, + "definedIn": "prose" + }, + { + "id": "navigation-status-complete", + "href": "https://www.w3.org/TR/webdriver-bidi/#navigation-status-complete", + "linkingText": [ + "complete" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "module-browsingContext", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-browsingContext", + "title": "The browsingContext Module", + "number": "7.3" + }, + "definedIn": "prose" + }, + { + "id": "navigation-status-url", + "href": "https://www.w3.org/TR/webdriver-bidi/#navigation-status-url", + "linkingText": [ + "url" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "WebDriver navigation status" + ], + "access": "public", + "informative": false, + "heading": { + "id": "module-browsingContext", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-browsingContext", + "title": "The browsingContext Module", + "number": "7.3" + }, + "definedIn": "dt" + }, + { + "id": "device-pixel-ratio-overrides", + "href": "https://www.w3.org/TR/webdriver-bidi/#device-pixel-ratio-overrides", + "linkingText": [ + "device pixel ratio overrides" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "module-browsingContext-definition", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-browsingContext-definition", + "title": "Definition", + "number": "7.3.1" + }, + "definedIn": "prose" + }, + { + "id": "navigable-id", + "href": "https://www.w3.org/TR/webdriver-bidi/#navigable-id", + "linkingText": [ + "navigable id" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "type-browsingContext-Browsingcontext", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-browsingContext-Browsingcontext", + "title": "The browsingContext.BrowsingContext Type", + "number": "7.3.2.1" + }, + "definedIn": "prose" + }, + { + "id": "associated-storage-partition", + "href": "https://www.w3.org/TR/webdriver-bidi/#associated-storage-partition", + "linkingText": [ + "associated storage partition" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-browsingContext-Browsingcontext", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-browsingContext-Browsingcontext", + "title": "The browsingContext.BrowsingContext Type", + "number": "7.3.2.1" + }, + "definedIn": "prose" + }, + { + "id": "original-opener", + "href": "https://www.w3.org/TR/webdriver-bidi/#original-opener", + "linkingText": [ + "original opener" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-browsingContext-Browsingcontext", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-browsingContext-Browsingcontext", + "title": "The browsingContext.BrowsingContext Type", + "number": "7.3.2.1" + }, + "definedIn": "prose" + }, + { + "id": "get-a-navigable", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-a-navigable", + "linkingText": [ + "get a navigable" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "type-browsingContext-Browsingcontext", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-browsingContext-Browsingcontext", + "title": "The browsingContext.BrowsingContext Type", + "number": "7.3.2.1" + }, + "definedIn": "prose" + }, + { + "id": "get-the-parent-navigable", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-parent-navigable", + "linkingText": [ + "get the parent navigable" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-browsingContext-Info", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-browsingContext-Info", + "title": "The browsingContext.Info Type", + "number": "7.3.2.2" + }, + "definedIn": "prose" + }, + { + "id": "get-the-child-navigables", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-child-navigables", + "linkingText": [ + "get the child navigables" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-browsingContext-Info", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-browsingContext-Info", + "title": "The browsingContext.Info Type", + "number": "7.3.2.2" + }, + "definedIn": "prose" + }, + { + "id": "get-the-navigable-info", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-navigable-info", + "linkingText": [ + "get the navigable info" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-browsingContext-Info", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-browsingContext-Info", + "title": "The browsingContext.Info Type", + "number": "7.3.2.2" + }, + "definedIn": "prose" + }, + { + "id": "await-a-navigation", + "href": "https://www.w3.org/TR/webdriver-bidi/#await-a-navigation", + "linkingText": [ + "await a navigation" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-browsingContext-Info", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-browsingContext-Info", + "title": "The browsingContext.Info Type", + "number": "7.3.2.2" + }, + "definedIn": "prose" + }, + { + "id": "get-the-navigation-info", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-navigation-info", + "linkingText": [ + "get the navigation info" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-browsingContext-NavigationInfo", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-browsingContext-NavigationInfo", + "title": "The browsingContext.NavigationInfo Type", + "number": "7.3.2.5" + }, + "definedIn": "prose" + }, + { + "id": "commands-browsingcontextactivate", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontextactivate", + "linkingText": [ + "browsingContext.activate" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-browsingContext-activate", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-activate", + "title": "The browsingContext.activate Command", + "number": "7.3.3.1" + }, + "definedIn": "prose" + }, + { + "id": "activate-a-navigable", + "href": "https://www.w3.org/TR/webdriver-bidi/#activate-a-navigable", + "linkingText": [ + "activate a navigable" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "command-browsingContext-activate", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-activate", + "title": "The browsingContext.activate Command", + "number": "7.3.3.1" + }, + "definedIn": "prose" + }, + { + "id": "commands-browsingcontextcapturescreenshot", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontextcapturescreenshot", + "linkingText": [ + "browsingContext.captureScreenshot" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-browsingContext-captureScreenshot", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-captureScreenshot", + "title": "The browsingContext.captureScreenshot Command", + "number": "7.3.3.2" + }, + "definedIn": "prose" + }, + { + "id": "normalize-rect", + "href": "https://www.w3.org/TR/webdriver-bidi/#normalize-rect", + "linkingText": [ + "normalize rect" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "command-browsingContext-captureScreenshot", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-captureScreenshot", + "title": "The browsingContext.captureScreenshot Command", + "number": "7.3.3.2" + }, + "definedIn": "prose" + }, + { + "id": "rectangle-intersection", + "href": "https://www.w3.org/TR/webdriver-bidi/#rectangle-intersection", + "linkingText": [ + "rectangle intersection" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "command-browsingContext-captureScreenshot", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-captureScreenshot", + "title": "The browsingContext.captureScreenshot Command", + "number": "7.3.3.2" + }, + "definedIn": "prose" + }, + { + "id": "render-document-to-a-canvas", + "href": "https://www.w3.org/TR/webdriver-bidi/#render-document-to-a-canvas", + "linkingText": [ + "render document to a canvas" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "command-browsingContext-captureScreenshot", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-captureScreenshot", + "title": "The browsingContext.captureScreenshot Command", + "number": "7.3.3.2" + }, + "definedIn": "prose" + }, + { + "id": "encode-a-canvas-as-base64", + "href": "https://www.w3.org/TR/webdriver-bidi/#encode-a-canvas-as-base64", + "linkingText": [ + "encode a canvas as Base64" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "command-browsingContext-captureScreenshot", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-captureScreenshot", + "title": "The browsingContext.captureScreenshot Command", + "number": "7.3.3.2" + }, + "definedIn": "prose" + }, + { + "id": "get-the-origin-rectangle", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-origin-rectangle", + "linkingText": [ + "get the origin rectangle" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "command-browsingContext-captureScreenshot", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-captureScreenshot", + "title": "The browsingContext.captureScreenshot Command", + "number": "7.3.3.2" + }, + "definedIn": "prose" + }, + { + "id": "commands-browsingcontextclose", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontextclose", + "linkingText": [ + "browsingContext.close" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-browsingContext-close", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-close", + "title": "The browsingContext.close Command", + "number": "7.3.3.3" + }, + "definedIn": "prose" + }, + { + "id": "commands-browsingcontextcreate", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontextcreate", + "linkingText": [ + "browsingContext.create" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-browsingContext-create", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-create", + "title": "The browsingContext.create Command", + "number": "7.3.3.4" + }, + "definedIn": "prose" + }, + { + "id": "commands-browsingcontextgettree", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontextgettree", + "linkingText": [ + "browsingContext.getTree" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-browsingContext-getTree", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-getTree", + "title": "The browsingContext.getTree Command", + "number": "7.3.3.5" + }, + "definedIn": "prose" + }, + { + "id": "commands-browsingcontexthandleuserprompt", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontexthandleuserprompt", + "linkingText": [ + "browsingContext.handleUserPrompt" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-browsingContext-handleUserPrompt", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-handleUserPrompt", + "title": "The browsingContext.handleUserPrompt Command", + "number": "7.3.3.6" + }, + "definedIn": "prose" + }, + { + "id": "commands-browsingcontextlocatenodes", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontextlocatenodes", + "linkingText": [ + "browsingContext.locateNodes" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-browsingContext-locateNodes", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-locateNodes", + "title": "The browsingContext.locateNodes Command", + "number": "7.3.3.7" + }, + "definedIn": "prose" + }, + { + "id": "locate-nodes-using-css", + "href": "https://www.w3.org/TR/webdriver-bidi/#locate-nodes-using-css", + "linkingText": [ + "locate nodes using CSS" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "command-browsingContext-locateNodes", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-locateNodes", + "title": "The browsingContext.locateNodes Command", + "number": "7.3.3.7" + }, + "definedIn": "prose" + }, + { + "id": "locate-nodes-using-xpath", + "href": "https://www.w3.org/TR/webdriver-bidi/#locate-nodes-using-xpath", + "linkingText": [ + "locate nodes using XPath" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "command-browsingContext-locateNodes", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-locateNodes", + "title": "The browsingContext.locateNodes Command", + "number": "7.3.3.7" + }, + "definedIn": "prose" + }, + { + "id": "locate-nodes-using-inner-text", + "href": "https://www.w3.org/TR/webdriver-bidi/#locate-nodes-using-inner-text", + "linkingText": [ + "locate nodes using inner text" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "command-browsingContext-locateNodes", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-locateNodes", + "title": "The browsingContext.locateNodes Command", + "number": "7.3.3.7" + }, + "definedIn": "prose" + }, + { + "id": "collect-nodes-using-accessibility-attributes", + "href": "https://www.w3.org/TR/webdriver-bidi/#collect-nodes-using-accessibility-attributes", + "linkingText": [ + "collect nodes using accessibility attributes" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "command-browsingContext-locateNodes", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-locateNodes", + "title": "The browsingContext.locateNodes Command", + "number": "7.3.3.7" + }, + "definedIn": "prose" + }, + { + "id": "locate-nodes-using-accessibility-attributes", + "href": "https://www.w3.org/TR/webdriver-bidi/#locate-nodes-using-accessibility-attributes", + "linkingText": [ + "locate nodes using accessibility attributes" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "command-browsingContext-locateNodes", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-locateNodes", + "title": "The browsingContext.locateNodes Command", + "number": "7.3.3.7" + }, + "definedIn": "prose" + }, + { + "id": "commands-browsingcontextnavigate", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontextnavigate", + "linkingText": [ + "browsingContext.navigate" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-browsingContext-navigate", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-navigate", + "title": "The browsingContext.navigate Command", + "number": "7.3.3.8" + }, + "definedIn": "prose" + }, + { + "id": "commands-browsingcontextprint", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontextprint", + "linkingText": [ + "browsingContext.print" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-browsingContext-print", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-print", + "title": "The browsingContext.print Command", + "number": "7.3.3.9" + }, + "definedIn": "prose" + }, + { + "id": "commands-browsingcontextreload", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontextreload", + "linkingText": [ + "browsingContext.reload" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-browsingContext-reload", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-reload", + "title": "The browsingContext.reload Command", + "number": "7.3.3.10" + }, + "definedIn": "prose" + }, + { + "id": "commands-browsingcontextsetviewport", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontextsetviewport", + "linkingText": [ + "browsingContext.setViewport" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-browsingContext-setViewport", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-setViewport", + "title": "The browsingContext.setViewport Command", + "number": "7.3.3.11" + }, + "definedIn": "prose" + }, + { + "id": "commands-browsingcontexttraversehistory", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontexttraversehistory", + "linkingText": [ + "browsingContext.traverseHistory" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-browsingContext-traverseHistory", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-traverseHistory", + "title": "The browsingContext.traverseHistory Command", + "number": "7.3.3.12" + }, + "definedIn": "prose" + }, + { + "id": "webdriver-bidi-page-show", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-page-show", + "linkingText": [ + "WebDriver BiDi page show" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "command-browsingContext-traverseHistory", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-traverseHistory", + "title": "The browsingContext.traverseHistory Command", + "number": "7.3.3.12" + }, + "definedIn": "prose" + }, + { + "id": "webdriver-bidi-pop-state", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-pop-state", + "linkingText": [ + "WebDriver BiDi pop state" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "command-browsingContext-traverseHistory", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-traverseHistory", + "title": "The browsingContext.traverseHistory Command", + "number": "7.3.3.12" + }, + "definedIn": "prose" + }, + { + "id": "recursively-emit-context-created-events", + "href": "https://www.w3.org/TR/webdriver-bidi/#recursively-emit-context-created-events", + "linkingText": [ + "Recursively emit context created events" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "event-browsingContext-contextCreated", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-contextCreated", + "title": "The browsingContext.contextCreated Event", + "number": "7.3.4.1" + }, + "definedIn": "prose" + }, + { + "id": "emit-a-context-created-event", + "href": "https://www.w3.org/TR/webdriver-bidi/#emit-a-context-created-event", + "linkingText": [ + "Emit a context created event" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "event-browsingContext-contextCreated", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-contextCreated", + "title": "The browsingContext.contextCreated Event", + "number": "7.3.4.1" + }, + "definedIn": "prose" + }, + { + "id": "webdriver-bidi-navigable-created", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-navigable-created", + "linkingText": [ + "WebDriver BiDi navigable created" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "event-browsingContext-contextCreated", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-contextCreated", + "title": "The browsingContext.contextCreated Event", + "number": "7.3.4.1" + }, + "definedIn": "prose" + }, + { + "id": "webdriver-bidi-navigable-destroyed", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-navigable-destroyed", + "linkingText": [ + "WebDriver BiDi navigable destroyed" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "event-browsingContext-contextDestroyed", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-contextDestroyed", + "title": "The browsingContext.contextDestroyed Event", + "number": "7.3.4.2" + }, + "definedIn": "prose" + }, + { + "id": "webdriver-bidi-navigation-started", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-navigation-started", + "linkingText": [ + "WebDriver BiDi navigation started" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "event-browsingContext-navigationStarted", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-navigationStarted", + "title": "The browsingContext.navigationStarted Event", + "number": "7.3.4.3" + }, + "definedIn": "prose" + }, + { + "id": "webdriver-bidi-fragment-navigated", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-fragment-navigated", + "linkingText": [ + "WebDriver BiDi fragment navigated" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "event-browsingContext-fragmentNavigated", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-fragmentNavigated", + "title": "The browsingContext.fragmentNavigated Event", + "number": "7.3.4.4" + }, + "definedIn": "prose" + }, + { + "id": "webdriver-bidi-history-updated", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-history-updated", + "linkingText": [ + "WebDriver BiDi history updated" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "event-browsingContext-historyUpdated", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-historyUpdated", + "title": "The browsingContext.historyUpdated Event", + "number": "7.3.4.5" + }, + "definedIn": "prose" + }, + { + "id": "webdriver-bidi-dom-content-loaded", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-dom-content-loaded", + "linkingText": [ + "WebDriver BiDi DOM content loaded" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "event-browsingContext-domContentLoaded", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-domContentLoaded", + "title": "The browsingContext.domContentLoaded Event", + "number": "7.3.4.6" + }, + "definedIn": "prose" + }, + { + "id": "webdriver-bidi-load-complete", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-load-complete", + "linkingText": [ + "WebDriver BiDi load complete" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "event-browsingContext-load", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-load", + "title": "The browsingContext.load Event", + "number": "7.3.4.7" + }, + "definedIn": "prose" + }, + { + "id": "webdriver-bidi-download-started", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-download-started", + "linkingText": [ + "WebDriver BiDi download started" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "event-browsingContext-downoadWillBegin", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-downoadWillBegin", + "title": "The browsingContext.downloadWillBegin Event", + "number": "7.3.4.8" + }, + "definedIn": "prose" + }, + { + "id": "webdriver-bidi-navigation-aborted", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-navigation-aborted", + "linkingText": [ + "WebDriver BiDi navigation aborted" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "event-browsingContext-navigationAborted", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-navigationAborted", + "title": "The browsingContext.navigationAborted Event", + "number": "7.3.4.9" + }, + "definedIn": "prose" + }, + { + "id": "webdriver-bidi-navigation-failed", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-navigation-failed", + "linkingText": [ + "WebDriver BiDi navigation failed" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "event-browsingContext-navigationFailed", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-navigationFailed", + "title": "The browsingContext.navigationFailed Event", + "number": "7.3.4.10" + }, + "definedIn": "prose" + }, + { + "id": "webdriver-bidi-user-prompt-closed", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-user-prompt-closed", + "linkingText": [ + "WebDriver BiDi user prompt closed" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "event-browsingContext-userPromptClosed", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-userPromptClosed", + "title": "The browsingContext.userPromptClosed Event", + "number": "7.3.4.11" + }, + "definedIn": "prose" + }, + { + "id": "webdriver-bidi-user-prompt-opened", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-user-prompt-opened", + "linkingText": [ + "WebDriver BiDi user prompt opened" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "event-browsingContext-userPromptOpened", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-userPromptOpened", + "title": "The browsingContext.userPromptOpened Event", + "number": "7.3.4.12" + }, + "definedIn": "prose" + }, + { + "id": "modules-network", + "href": "https://www.w3.org/TR/webdriver-bidi/#modules-network", + "linkingText": [ + "network" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "modules" + ], + "access": "public", + "informative": false, + "heading": { + "id": "module-network", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-network", + "title": "The network Module", + "number": "7.4" + }, + "definedIn": "prose" + }, + { + "id": "before-request-sent-map", + "href": "https://www.w3.org/TR/webdriver-bidi/#before-request-sent-map", + "linkingText": [ + "before request sent map" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "module-network-definition", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-network-definition", + "title": "Definition", + "number": "7.4.1" + }, + "definedIn": "prose" + }, + { + "id": "default-cache-behavior", + "href": "https://www.w3.org/TR/webdriver-bidi/#default-cache-behavior", + "linkingText": [ + "default cache behavior" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "module-network-definition", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-network-definition", + "title": "Definition", + "number": "7.4.1" + }, + "definedIn": "prose" + }, + { + "id": "navigable-cache-behavior-map", + "href": "https://www.w3.org/TR/webdriver-bidi/#navigable-cache-behavior-map", + "linkingText": [ + "navigable cache behavior map" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "module-network-definition", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-network-definition", + "title": "Definition", + "number": "7.4.1" + }, + "definedIn": "prose" + }, + { + "id": "network-intercept", + "href": "https://www.w3.org/TR/webdriver-bidi/#network-intercept", + "linkingText": [ + "network intercept" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "network-intercepts", + "href": "https://www.w3.org/TR/webdriver-bidi/#network-intercepts", + "title": "Network Intercepts", + "number": "7.4.2" + }, + "definedIn": "prose" + }, + { + "id": "intercept-map", + "href": "https://www.w3.org/TR/webdriver-bidi/#intercept-map", + "linkingText": [ + "intercept map" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "network-intercepts", + "href": "https://www.w3.org/TR/webdriver-bidi/#network-intercepts", + "title": "Network Intercepts", + "number": "7.4.2" + }, + "definedIn": "prose" + }, + { + "id": "blocked-request-map", + "href": "https://www.w3.org/TR/webdriver-bidi/#blocked-request-map", + "linkingText": [ + "blocked request map" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "network-intercepts", + "href": "https://www.w3.org/TR/webdriver-bidi/#network-intercepts", + "title": "Network Intercepts", + "number": "7.4.2" + }, + "definedIn": "prose" + }, + { + "id": "get-the-network-intercepts", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-network-intercepts", + "linkingText": [ + "get the network intercepts" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "network-intercepts", + "href": "https://www.w3.org/TR/webdriver-bidi/#network-intercepts", + "title": "Network Intercepts", + "number": "7.4.2" + }, + "definedIn": "prose" + }, + { + "id": "update-the-response", + "href": "https://www.w3.org/TR/webdriver-bidi/#update-the-response", + "linkingText": [ + "update the response" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "network-intercepts", + "href": "https://www.w3.org/TR/webdriver-bidi/#network-intercepts", + "title": "Network Intercepts", + "number": "7.4.2" + }, + "definedIn": "prose" + }, + { + "id": "extract-challenges", + "href": "https://www.w3.org/TR/webdriver-bidi/#extract-challenges", + "linkingText": [ + "extract challenges" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-network-AuthChallenge", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-AuthChallenge", + "title": "The network.AuthChallenge Type", + "number": "7.4.3.1" + }, + "definedIn": "prose" + }, + { + "id": "process-a-network-event", + "href": "https://www.w3.org/TR/webdriver-bidi/#process-a-network-event", + "linkingText": [ + "process a network event" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-network-BaseParameters", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-BaseParameters", + "title": "The network.BaseParameters Type", + "number": "7.4.3.3" + }, + "definedIn": "prose" + }, + { + "id": "deserialize-protocol-bytes", + "href": "https://www.w3.org/TR/webdriver-bidi/#deserialize-protocol-bytes", + "linkingText": [ + "deserialize protocol bytes" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-network-BytesValue", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-BytesValue", + "title": "The network.BytesValue Type", + "number": "7.4.3.4" + }, + "definedIn": "prose" + }, + { + "id": "serialize-protocol-bytes", + "href": "https://www.w3.org/TR/webdriver-bidi/#serialize-protocol-bytes", + "linkingText": [ + "serialize protocol bytes" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-network-BytesValue", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-BytesValue", + "title": "The network.BytesValue Type", + "number": "7.4.3.4" + }, + "definedIn": "prose" + }, + { + "id": "serialize-cookie", + "href": "https://www.w3.org/TR/webdriver-bidi/#serialize-cookie", + "linkingText": [ + "serialize cookie" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-network-Cookie", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-Cookie", + "title": "The network.Cookie Type", + "number": "7.4.3.5" + }, + "definedIn": "prose" + }, + { + "id": "serialize-cookie-header", + "href": "https://www.w3.org/TR/webdriver-bidi/#serialize-cookie-header", + "linkingText": [ + "serialize cookie header" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-network-CookieHeader", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-CookieHeader", + "title": "The network.CookieHeader Type", + "number": "7.4.3.6" + }, + "definedIn": "prose" + }, + { + "id": "get-the-fetch-timings", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-fetch-timings", + "linkingText": [ + "get the fetch timings" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-network-FetchTimingInfo", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-FetchTimingInfo", + "title": "The network.FetchTimingInfo Type", + "number": "7.4.3.7" + }, + "definedIn": "prose" + }, + { + "id": "serialize-header", + "href": "https://www.w3.org/TR/webdriver-bidi/#serialize-header", + "linkingText": [ + "serialize header" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-network-Header", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-Header", + "title": "The network.Header Type", + "number": "7.4.3.8" + }, + "definedIn": "prose" + }, + { + "id": "deserialize-header", + "href": "https://www.w3.org/TR/webdriver-bidi/#deserialize-header", + "linkingText": [ + "deserialize header" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-network-Header", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-Header", + "title": "The network.Header Type", + "number": "7.4.3.8" + }, + "definedIn": "prose" + }, + { + "id": "get-the-initiator", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-initiator", + "linkingText": [ + "get the initiator" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-network-Initiator", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-Initiator", + "title": "The network.Initiator Type", + "number": "7.4.3.9" + }, + "definedIn": "prose" + }, + { + "id": "request-id", + "href": "https://www.w3.org/TR/webdriver-bidi/#request-id", + "linkingText": [ + "request id" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "type-network-Request", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-Request", + "title": "The network.Request Type", + "number": "7.4.3.11" + }, + "definedIn": "prose" + }, + { + "id": "get-the-request-data", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-request-data", + "linkingText": [ + "get the request data" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-network-RequestData", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-RequestData", + "title": "The network.RequestData Type", + "number": "7.4.3.12" + }, + "definedIn": "prose" + }, + { + "id": "get-the-response-content-info", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-response-content-info", + "linkingText": [ + "get the response content info" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-network-ResponseContent", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-ResponseContent", + "title": "The network.ResponseContent Type", + "number": "7.4.3.13" + }, + "definedIn": "prose" + }, + { + "id": "get-the-protocol", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-protocol", + "linkingText": [ + "get the protocol" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-network-ResponseData", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-ResponseData", + "title": "The network.ResponseData Type", + "number": "7.4.3.14" + }, + "definedIn": "prose" + }, + { + "id": "get-the-response-data", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-response-data", + "linkingText": [ + "get the response data" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-network-ResponseData", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-ResponseData", + "title": "The network.ResponseData Type", + "number": "7.4.3.14" + }, + "definedIn": "prose" + }, + { + "id": "serialize-an-integer", + "href": "https://www.w3.org/TR/webdriver-bidi/#serialize-an-integer", + "linkingText": [ + "serialize an integer" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-network-SetCookieHeader", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-SetCookieHeader", + "title": "The network.SetCookieHeader Type", + "number": "7.4.3.15" + }, + "definedIn": "prose" + }, + { + "id": "serialize-set-cookie-header", + "href": "https://www.w3.org/TR/webdriver-bidi/#serialize-set-cookie-header", + "linkingText": [ + "serialize set-cookie header" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-network-SetCookieHeader", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-SetCookieHeader", + "title": "The network.SetCookieHeader Type", + "number": "7.4.3.15" + }, + "definedIn": "prose" + }, + { + "id": "unescape-url-pattern", + "href": "https://www.w3.org/TR/webdriver-bidi/#unescape-url-pattern", + "linkingText": [ + "unescape URL pattern" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-network-UrlPattern", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-UrlPattern", + "title": "The network.UrlPattern Type", + "number": "7.4.3.16" + }, + "definedIn": "prose" + }, + { + "id": "parse-url-pattern", + "href": "https://www.w3.org/TR/webdriver-bidi/#parse-url-pattern", + "linkingText": [ + "parse URL pattern" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-network-UrlPattern", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-UrlPattern", + "title": "The network.UrlPattern Type", + "number": "7.4.3.16" + }, + "definedIn": "prose" + }, + { + "id": "match-url-pattern", + "href": "https://www.w3.org/TR/webdriver-bidi/#match-url-pattern", + "linkingText": [ + "match URL pattern" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-network-UrlPattern", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-UrlPattern", + "title": "The network.UrlPattern Type", + "number": "7.4.3.16" + }, + "definedIn": "prose" + }, + { + "id": "commands-networkaddintercept", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-networkaddintercept", + "linkingText": [ + "network.addIntercept" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-network-addIntercept", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-network-addIntercept", + "title": "The network.addIntercept Command", + "number": "7.4.4.1" + }, + "definedIn": "prose" + }, + { + "id": "commands-networkcontinuerequest", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-networkcontinuerequest", + "linkingText": [ + "network.continueRequest" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-network-continueRequest", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-network-continueRequest", + "title": "The network.continueRequest Command", + "number": "7.4.4.2" + }, + "definedIn": "prose" + }, + { + "id": "commands-networkcontinueresponse", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-networkcontinueresponse", + "linkingText": [ + "network.continueResponse" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-network-continueResponse", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-network-continueResponse", + "title": "The network.continueResponse Command", + "number": "7.4.4.3" + }, + "definedIn": "prose" + }, + { + "id": "commands-networkcontinuewithauth", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-networkcontinuewithauth", + "linkingText": [ + "network.continueWithAuth" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-network-continueWithAuth", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-network-continueWithAuth", + "title": "The network.continueWithAuth Command", + "number": "7.4.4.4" + }, + "definedIn": "prose" + }, + { + "id": "commands-networkfailrequest", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-networkfailrequest", + "linkingText": [ + "network.failRequest" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-network-failRequest", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-network-failRequest", + "title": "The network.failRequest Command", + "number": "7.4.4.5" + }, + "definedIn": "prose" + }, + { + "id": "commands-networkprovideresponse", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-networkprovideresponse", + "linkingText": [ + "network.provideResponse" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-network-provideResponse", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-network-provideResponse", + "title": "The network.provideResponse Command", + "number": "7.4.4.6" + }, + "definedIn": "prose" + }, + { + "id": "commands-networkremoveintercept", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-networkremoveintercept", + "linkingText": [ + "network.removeIntercept" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-network-removeIntercept", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-network-removeIntercept", + "title": "The network.removeIntercept Command", + "number": "7.4.4.7" + }, + "definedIn": "prose" + }, + { + "id": "commands-networksetcachebehavior", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-networksetcachebehavior", + "linkingText": [ + "network.setCacheBehavior" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-network-setCacheBehavior", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-network-setCacheBehavior", + "title": "The network.setCacheBehavior Command", + "number": "7.4.4.8" + }, + "definedIn": "prose" + }, + { + "id": "webdriver-bidi-cache-behavior", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-cache-behavior", + "linkingText": [ + "WebDriver BiDi cache behavior" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "command-network-setCacheBehavior", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-network-setCacheBehavior", + "title": "The network.setCacheBehavior Command", + "number": "7.4.4.8" + }, + "definedIn": "prose" + }, + { + "id": "navigable-cache-behavior", + "href": "https://www.w3.org/TR/webdriver-bidi/#navigable-cache-behavior", + "linkingText": [ + "navigable cache behavior" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "command-network-setCacheBehavior", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-network-setCacheBehavior", + "title": "The network.setCacheBehavior Command", + "number": "7.4.4.8" + }, + "definedIn": "prose" + }, + { + "id": "webdriver-bidi-auth-required", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-auth-required", + "linkingText": [ + "WebDriver BiDi auth required" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "event-network-authRequired", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-network-authRequired", + "title": "The network.authRequired Event", + "number": "7.4.5.1" + }, + "definedIn": "prose" + }, + { + "id": "webdriver-bidi-before-request-sent", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-before-request-sent", + "linkingText": [ + "WebDriver BiDi before request sent" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "event-network-beforeSendRequest", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-network-beforeSendRequest", + "title": "The network.beforeRequestSent Event", + "number": "7.4.5.2" + }, + "definedIn": "prose" + }, + { + "id": "webdriver-bidi-fetch-error", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-fetch-error", + "linkingText": [ + "WebDriver BiDi fetch error" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "event-network-fetchError", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-network-fetchError", + "title": "The network.fetchError Event", + "number": "7.4.5.3" + }, + "definedIn": "prose" + }, + { + "id": "webdriver-bidi-response-completed", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-response-completed", + "linkingText": [ + "WebDriver BiDi response completed" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "event-network-responseCompleted", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-network-responseCompleted", + "title": "The network.responseCompleted Event", + "number": "7.4.5.4" + }, + "definedIn": "prose" + }, + { + "id": "webdriver-bidi-response-started", + "href": "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-response-started", + "linkingText": [ + "WebDriver BiDi response started" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "event-network-responseStarted", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-network-responseStarted", + "title": "The network.responseStarted Event", + "number": "7.4.5.5" + }, + "definedIn": "prose" + }, + { + "id": "modules-script", + "href": "https://www.w3.org/TR/webdriver-bidi/#modules-script", + "linkingText": [ + "script" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "modules" + ], + "access": "public", + "informative": false, + "heading": { + "id": "module-script", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-script", + "title": "The script Module", + "number": "7.5" + }, + "definedIn": "prose" + }, + { + "id": "preload-script", + "href": "https://www.w3.org/TR/webdriver-bidi/#preload-script", + "linkingText": [ + "Preload script" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "preload-scripts", + "href": "https://www.w3.org/TR/webdriver-bidi/#preload-scripts", + "title": "Preload Scripts", + "number": "7.5.2" + }, + "definedIn": "prose" + }, + { + "id": "preload-script-map", + "href": "https://www.w3.org/TR/webdriver-bidi/#preload-script-map", + "linkingText": [ + "preload script map" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "preload-scripts", + "href": "https://www.w3.org/TR/webdriver-bidi/#preload-scripts", + "title": "Preload Scripts", + "number": "7.5.2" + }, + "definedIn": "prose" + }, + { + "id": "run-webdriver-bidi-preload-scripts", + "href": "https://www.w3.org/TR/webdriver-bidi/#run-webdriver-bidi-preload-scripts", + "linkingText": [ + "run WebDriver BiDi preload scripts" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "preload-scripts", + "href": "https://www.w3.org/TR/webdriver-bidi/#preload-scripts", + "title": "Preload Scripts", + "number": "7.5.2" + }, + "definedIn": "prose" + }, + { + "id": "scriptchannel", + "href": "https://www.w3.org/TR/webdriver-bidi/#scriptchannel", + "linkingText": [ + "script.Channel" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-Channel", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-Channel", + "title": "The script.Channel Type", + "number": "7.5.3.1" + }, + "definedIn": "prose" + }, + { + "id": "create-a-channel", + "href": "https://www.w3.org/TR/webdriver-bidi/#create-a-channel", + "linkingText": [ + "create a channel" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-ChannelValue", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-ChannelValue", + "title": "The script.ChannelValue Type", + "number": "7.5.3.2" + }, + "definedIn": "prose" + }, + { + "id": "get-exception-details", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-exception-details", + "linkingText": [ + "get exception details" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-ExceptionDetails", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-ExceptionDetails", + "title": "The script.ExceptionDetails Type", + "number": "7.5.3.4" + }, + "definedIn": "prose" + }, + { + "id": "handle-object-map", + "href": "https://www.w3.org/TR/webdriver-bidi/#handle-object-map", + "linkingText": [ + "handle object map" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-Handle", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-Handle", + "title": "The script.Handle Type", + "number": "7.5.3.5" + }, + "definedIn": "prose" + }, + { + "id": "scriptlocalvalue", + "href": "https://www.w3.org/TR/webdriver-bidi/#scriptlocalvalue", + "linkingText": [ + "script.LocalValue" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "type-script-LocalValue", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-LocalValue", + "title": "The script.LocalValue Type", + "number": "7.5.3.7" + }, + "definedIn": "prose" + }, + { + "id": "deserialize-key-value-list", + "href": "https://www.w3.org/TR/webdriver-bidi/#deserialize-key-value-list", + "linkingText": [ + "deserialize key-value list" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-LocalValue", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-LocalValue", + "title": "The script.LocalValue Type", + "number": "7.5.3.7" + }, + "definedIn": "prose" + }, + { + "id": "deserialize-value-list", + "href": "https://www.w3.org/TR/webdriver-bidi/#deserialize-value-list", + "linkingText": [ + "deserialize value list" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-LocalValue", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-LocalValue", + "title": "The script.LocalValue Type", + "number": "7.5.3.7" + }, + "definedIn": "prose" + }, + { + "id": "deserialize-local-value", + "href": "https://www.w3.org/TR/webdriver-bidi/#deserialize-local-value", + "linkingText": [ + "deserialize local value" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-LocalValue", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-LocalValue", + "title": "The script.LocalValue Type", + "number": "7.5.3.7" + }, + "definedIn": "prose" + }, + { + "id": "realm-id", + "href": "https://www.w3.org/TR/webdriver-bidi/#realm-id", + "linkingText": [ + "realm id" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "type-script-Realm", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-Realm", + "title": "The script.Realm Type", + "number": "7.5.3.9" + }, + "definedIn": "prose" + }, + { + "id": "get-a-realm", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-a-realm", + "linkingText": [ + "get a realm" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-Realm", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-Realm", + "title": "The script.Realm Type", + "number": "7.5.3.9" + }, + "definedIn": "prose" + }, + { + "id": "scriptprimitiveprotocolvalue", + "href": "https://www.w3.org/TR/webdriver-bidi/#scriptprimitiveprotocolvalue", + "linkingText": [ + "script.PrimitiveProtocolValue" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-PrimitiveProtocolValue", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-PrimitiveProtocolValue", + "title": "The script.PrimitiveProtocolValue Type", + "number": "7.5.3.10" + }, + "definedIn": "prose" + }, + { + "id": "serialize-primitive-protocol-value", + "href": "https://www.w3.org/TR/webdriver-bidi/#serialize-primitive-protocol-value", + "linkingText": [ + "serialize primitive protocol value" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-PrimitiveProtocolValue", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-PrimitiveProtocolValue", + "title": "The script.PrimitiveProtocolValue Type", + "number": "7.5.3.10" + }, + "definedIn": "prose" + }, + { + "id": "deserialize-primitive-protocol-value", + "href": "https://www.w3.org/TR/webdriver-bidi/#deserialize-primitive-protocol-value", + "linkingText": [ + "deserialize primitive protocol value" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-PrimitiveProtocolValue", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-PrimitiveProtocolValue", + "title": "The script.PrimitiveProtocolValue Type", + "number": "7.5.3.10" + }, + "definedIn": "prose" + }, + { + "id": "get-the-navigable", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-navigable", + "linkingText": [ + "get the navigable" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-RealmInfo", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-RealmInfo", + "title": "The script.RealmInfo Type", + "number": "7.5.3.11" + }, + "definedIn": "prose" + }, + { + "id": "get-the-workers-owners", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-workers-owners", + "linkingText": [ + "get the worker’s owners" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-RealmInfo", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-RealmInfo", + "title": "The script.RealmInfo Type", + "number": "7.5.3.11" + }, + "definedIn": "prose" + }, + { + "id": "get-the-realm-info", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-realm-info", + "linkingText": [ + "get the realm info" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-RealmInfo", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-RealmInfo", + "title": "The script.RealmInfo Type", + "number": "7.5.3.11" + }, + "definedIn": "prose" + }, + { + "id": "scriptremotereference", + "href": "https://www.w3.org/TR/webdriver-bidi/#scriptremotereference", + "linkingText": [ + "script.RemoteReference" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-RemoteReference", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-RemoteReference", + "title": "The script.RemoteReference Type", + "number": "7.5.3.13" + }, + "definedIn": "prose" + }, + { + "id": "deserialize-remote-reference", + "href": "https://www.w3.org/TR/webdriver-bidi/#deserialize-remote-reference", + "linkingText": [ + "deserialize remote reference" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-RemoteReference", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-RemoteReference", + "title": "The script.RemoteReference Type", + "number": "7.5.3.13" + }, + "definedIn": "prose" + }, + { + "id": "deserialize-remote-object-reference", + "href": "https://www.w3.org/TR/webdriver-bidi/#deserialize-remote-object-reference", + "linkingText": [ + "deserialize remote object reference" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-RemoteReference", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-RemoteReference", + "title": "The script.RemoteReference Type", + "number": "7.5.3.13" + }, + "definedIn": "prose" + }, + { + "id": "deserialize-shared-reference", + "href": "https://www.w3.org/TR/webdriver-bidi/#deserialize-shared-reference", + "linkingText": [ + "deserialize shared reference" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-RemoteReference", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-RemoteReference", + "title": "The script.RemoteReference Type", + "number": "7.5.3.13" + }, + "definedIn": "prose" + }, + { + "id": "handle-for-an-object", + "href": "https://www.w3.org/TR/webdriver-bidi/#handle-for-an-object", + "linkingText": [ + "handle for an object" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-RemoteValue", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-RemoteValue", + "title": "The script.RemoteValue Type", + "number": "7.5.3.14" + }, + "definedIn": "prose" + }, + { + "id": "get-shared-id-for-a-node", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-shared-id-for-a-node", + "linkingText": [ + "get shared id for a node" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-RemoteValue", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-RemoteValue", + "title": "The script.RemoteValue Type", + "number": "7.5.3.14" + }, + "definedIn": "prose" + }, + { + "id": "set-internal-ids-if-needed", + "href": "https://www.w3.org/TR/webdriver-bidi/#set-internal-ids-if-needed", + "linkingText": [ + "set internal ids if needed" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-RemoteValue", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-RemoteValue", + "title": "The script.RemoteValue Type", + "number": "7.5.3.14" + }, + "definedIn": "prose" + }, + { + "id": "serialize-as-a-remote-value", + "href": "https://www.w3.org/TR/webdriver-bidi/#serialize-as-a-remote-value", + "linkingText": [ + "serialize as a remote value" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-RemoteValue", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-RemoteValue", + "title": "The script.RemoteValue Type", + "number": "7.5.3.14" + }, + "definedIn": "prose" + }, + { + "id": "serialize-an-array-like", + "href": "https://www.w3.org/TR/webdriver-bidi/#serialize-an-array-like", + "linkingText": [ + "serialize an Array-like" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-RemoteValue", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-RemoteValue", + "title": "The script.RemoteValue Type", + "number": "7.5.3.14" + }, + "definedIn": "prose" + }, + { + "id": "serialize-as-a-list", + "href": "https://www.w3.org/TR/webdriver-bidi/#serialize-as-a-list", + "linkingText": [ + "serialize as a list" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-RemoteValue", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-RemoteValue", + "title": "The script.RemoteValue Type", + "number": "7.5.3.14" + }, + "definedIn": "prose" + }, + { + "id": "serialize-as-a-mapping", + "href": "https://www.w3.org/TR/webdriver-bidi/#serialize-as-a-mapping", + "linkingText": [ + "serialize as a mapping" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-RemoteValue", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-RemoteValue", + "title": "The script.RemoteValue Type", + "number": "7.5.3.14" + }, + "definedIn": "prose" + }, + { + "id": "list-of-stack-frames", + "href": "https://www.w3.org/TR/webdriver-bidi/#list-of-stack-frames", + "linkingText": [ + "list of stack frames" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-StackTrace", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-StackTrace", + "title": "The script.StackTrace Type", + "number": "7.5.3.19" + }, + "definedIn": "prose" + }, + { + "id": "stack-frame", + "href": "https://www.w3.org/TR/webdriver-bidi/#stack-frame", + "linkingText": [ + "stack frame" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-StackTrace", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-StackTrace", + "title": "The script.StackTrace Type", + "number": "7.5.3.19" + }, + "definedIn": "prose" + }, + { + "id": "stackframe-script-url", + "href": "https://www.w3.org/TR/webdriver-bidi/#stackframe-script-url", + "linkingText": [ + "script url" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "stackframe" + ], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-StackTrace", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-StackTrace", + "title": "The script.StackTrace Type", + "number": "7.5.3.19" + }, + "definedIn": "dt" + }, + { + "id": "stackframe-function", + "href": "https://www.w3.org/TR/webdriver-bidi/#stackframe-function", + "linkingText": [ + "function" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "stackframe" + ], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-StackTrace", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-StackTrace", + "title": "The script.StackTrace Type", + "number": "7.5.3.19" + }, + "definedIn": "dt" + }, + { + "id": "stackframe-line-number", + "href": "https://www.w3.org/TR/webdriver-bidi/#stackframe-line-number", + "linkingText": [ + "line number" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "stackframe" + ], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-StackTrace", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-StackTrace", + "title": "The script.StackTrace Type", + "number": "7.5.3.19" + }, + "definedIn": "dt" + }, + { + "id": "stackframe-column-number", + "href": "https://www.w3.org/TR/webdriver-bidi/#stackframe-column-number", + "linkingText": [ + "column number" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "stackframe" + ], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-StackTrace", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-StackTrace", + "title": "The script.StackTrace Type", + "number": "7.5.3.19" + }, + "definedIn": "dt" + }, + { + "id": "construct-a-stack-trace", + "href": "https://www.w3.org/TR/webdriver-bidi/#construct-a-stack-trace", + "linkingText": [ + "construct a stack trace" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-StackTrace", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-StackTrace", + "title": "The script.StackTrace Type", + "number": "7.5.3.19" + }, + "definedIn": "prose" + }, + { + "id": "current-stack-trace", + "href": "https://www.w3.org/TR/webdriver-bidi/#current-stack-trace", + "linkingText": [ + "current stack trace" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-StackTrace", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-StackTrace", + "title": "The script.StackTrace Type", + "number": "7.5.3.19" + }, + "definedIn": "prose" + }, + { + "id": "stack-trace-for-an-exception", + "href": "https://www.w3.org/TR/webdriver-bidi/#stack-trace-for-an-exception", + "linkingText": [ + "stack trace for an exception" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-StackTrace", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-StackTrace", + "title": "The script.StackTrace Type", + "number": "7.5.3.19" + }, + "definedIn": "prose" + }, + { + "id": "get-the-source", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-source", + "linkingText": [ + "get the source" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-Source", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-Source", + "title": "The script.Source Type", + "number": "7.5.3.20" + }, + "definedIn": "prose" + }, + { + "id": "get-a-realm-from-a-navigable", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-a-realm-from-a-navigable", + "linkingText": [ + "get a realm from a navigable" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-Target", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-Target", + "title": "The script.Target Type", + "number": "7.5.3.21" + }, + "definedIn": "prose" + }, + { + "id": "get-a-realm-from-a-target", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-a-realm-from-a-target", + "linkingText": [ + "get a realm from a target" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-script-Target", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-Target", + "title": "The script.Target Type", + "number": "7.5.3.21" + }, + "definedIn": "prose" + }, + { + "id": "commands-scriptaddpreloadscript", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-scriptaddpreloadscript", + "linkingText": [ + "script.addPreloadScript" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-script-addPreloadScript", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-script-addPreloadScript", + "title": "The script.addPreloadScript Command", + "number": "7.5.4.1" + }, + "definedIn": "prose" + }, + { + "id": "commands-scriptdisown", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-scriptdisown", + "linkingText": [ + "script.disown" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-script-disown", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-script-disown", + "title": "The script.disown Command", + "number": "7.5.4.2" + }, + "definedIn": "prose" + }, + { + "id": "commands-scriptcallfunction", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-scriptcallfunction", + "linkingText": [ + "script.callFunction" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-script-callFunction", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-script-callFunction", + "title": "The script.callFunction Command", + "number": "7.5.4.3" + }, + "definedIn": "prose" + }, + { + "id": "deserialize-arguments", + "href": "https://www.w3.org/TR/webdriver-bidi/#deserialize-arguments", + "linkingText": [ + "deserialize arguments" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "command-script-callFunction", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-script-callFunction", + "title": "The script.callFunction Command", + "number": "7.5.4.3" + }, + "definedIn": "prose" + }, + { + "id": "evaluate-function-body", + "href": "https://www.w3.org/TR/webdriver-bidi/#evaluate-function-body", + "linkingText": [ + "evaluate function body" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "command-script-callFunction", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-script-callFunction", + "title": "The script.callFunction Command", + "number": "7.5.4.3" + }, + "definedIn": "prose" + }, + { + "id": "commands-scriptevaluate", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-scriptevaluate", + "linkingText": [ + "script.evaluate" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-script-evaluate", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-script-evaluate", + "title": "The script.evaluate Command", + "number": "7.5.4.4" + }, + "definedIn": "prose" + }, + { + "id": "commands-scriptgetrealms", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-scriptgetrealms", + "linkingText": [ + "script.getRealms" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-script-getRealms", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-script-getRealms", + "title": "The script.getRealms Command", + "number": "7.5.4.5" + }, + "definedIn": "prose" + }, + { + "id": "commands-scriptremovepreloadscript", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-scriptremovepreloadscript", + "linkingText": [ + "script.removePreloadScript" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-script-removePreloadScript", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-script-removePreloadScript", + "title": "The script.removePreloadScript Command", + "number": "7.5.4.6" + }, + "definedIn": "prose" + }, + { + "id": "emit-a-script-message", + "href": "https://www.w3.org/TR/webdriver-bidi/#emit-a-script-message", + "linkingText": [ + "emit a script message" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "event-script-message", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-script-message", + "title": "The script.message Event", + "number": "7.5.5.1" + }, + "definedIn": "prose" + }, + { + "id": "modules-storage", + "href": "https://www.w3.org/TR/webdriver-bidi/#modules-storage", + "linkingText": [ + "storage" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "modules" + ], + "access": "public", + "informative": false, + "heading": { + "id": "module-storage", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-storage", + "title": "The storage Module", + "number": "7.6" + }, + "definedIn": "prose" + }, + { + "id": "storage-partition", + "href": "https://www.w3.org/TR/webdriver-bidi/#storage-partition", + "linkingText": [ + "storage partition" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "module-storage", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-storage", + "title": "The storage Module", + "number": "7.6" + }, + "definedIn": "prose" + }, + { + "id": "storage-partition-key", + "href": "https://www.w3.org/TR/webdriver-bidi/#storage-partition-key", + "linkingText": [ + "storage partition key" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "module-storage", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-storage", + "title": "The storage Module", + "number": "7.6" + }, + "definedIn": "prose" + }, + { + "id": "table-of-standard-storage-partition-key-attributes", + "href": "https://www.w3.org/TR/webdriver-bidi/#table-of-standard-storage-partition-key-attributes", + "linkingText": [ + "table of standard storage partition key attributes" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-storage-PartitionKey", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-storage-PartitionKey", + "title": "The storage.PartitionKey Type", + "number": "7.6.2.1" + }, + "definedIn": "prose" + }, + { + "id": "extension-storage-partition-key-attributes", + "href": "https://www.w3.org/TR/webdriver-bidi/#extension-storage-partition-key-attributes", + "linkingText": [ + "extension storage partition key attributes" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-storage-PartitionKey", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-storage-PartitionKey", + "title": "The storage.PartitionKey Type", + "number": "7.6.2.1" + }, + "definedIn": "prose" + }, + { + "id": "default-values-for-storage-partition-key-attributes", + "href": "https://www.w3.org/TR/webdriver-bidi/#default-values-for-storage-partition-key-attributes", + "linkingText": [ + "default values for storage partition key attributes" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-storage-PartitionKey", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-storage-PartitionKey", + "title": "The storage.PartitionKey Type", + "number": "7.6.2.1" + }, + "definedIn": "prose" + }, + { + "id": "required-partition-key-attributes", + "href": "https://www.w3.org/TR/webdriver-bidi/#required-partition-key-attributes", + "linkingText": [ + "required partition key attributes" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-storage-PartitionKey", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-storage-PartitionKey", + "title": "The storage.PartitionKey Type", + "number": "7.6.2.1" + }, + "definedIn": "prose" + }, + { + "id": "deserialize-filter", + "href": "https://www.w3.org/TR/webdriver-bidi/#deserialize-filter", + "linkingText": [ + "deserialize filter" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-storage-PartitionKey", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-storage-PartitionKey", + "title": "The storage.PartitionKey Type", + "number": "7.6.2.1" + }, + "definedIn": "prose" + }, + { + "id": "expand-a-storage-partition-spec", + "href": "https://www.w3.org/TR/webdriver-bidi/#expand-a-storage-partition-spec", + "linkingText": [ + "expand a storage partition spec" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-storage-PartitionKey", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-storage-PartitionKey", + "title": "The storage.PartitionKey Type", + "number": "7.6.2.1" + }, + "definedIn": "prose" + }, + { + "id": "get-the-cookie-store", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-the-cookie-store", + "linkingText": [ + "get the cookie store" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-storage-PartitionKey", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-storage-PartitionKey", + "title": "The storage.PartitionKey Type", + "number": "7.6.2.1" + }, + "definedIn": "prose" + }, + { + "id": "match-cookie", + "href": "https://www.w3.org/TR/webdriver-bidi/#match-cookie", + "linkingText": [ + "match cookie" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-storage-PartitionKey", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-storage-PartitionKey", + "title": "The storage.PartitionKey Type", + "number": "7.6.2.1" + }, + "definedIn": "prose" + }, + { + "id": "get-matching-cookies", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-matching-cookies", + "linkingText": [ + "get matching cookies" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-storage-PartitionKey", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-storage-PartitionKey", + "title": "The storage.PartitionKey Type", + "number": "7.6.2.1" + }, + "definedIn": "prose" + }, + { + "id": "commands-storagegetcookies", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-storagegetcookies", + "linkingText": [ + "storage.getCookies" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-storage-getCookies", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-storage-getCookies", + "title": "The storage.getCookies Command", + "number": "7.6.3.1" + }, + "definedIn": "prose" + }, + { + "id": "commands-storagesetcookie", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-storagesetcookie", + "linkingText": [ + "storage.setCookie" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-storage-setCookie", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-storage-setCookie", + "title": "The storage.setCookie Command", + "number": "7.6.3.2" + }, + "definedIn": "prose" + }, + { + "id": "commands-storagedeletecookies", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-storagedeletecookies", + "linkingText": [ + "storage.deleteCookies" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-storage-deleteCookies", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-storage-deleteCookies", + "title": "The storage.deleteCookies Command", + "number": "7.6.3.3" + }, + "definedIn": "prose" + }, + { + "id": "modules-log", + "href": "https://www.w3.org/TR/webdriver-bidi/#modules-log", + "linkingText": [ + "log" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "modules" + ], + "access": "public", + "informative": false, + "heading": { + "id": "module-log", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-log", + "title": "The log Module", + "number": "7.7" + }, + "definedIn": "prose" + }, + { + "id": "log-event-buffer", + "href": "https://www.w3.org/TR/webdriver-bidi/#log-event-buffer", + "linkingText": [ + "log event buffer" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "module-log", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-log", + "title": "The log Module", + "number": "7.7" + }, + "definedIn": "prose" + }, + { + "id": "buffer-a-log-event", + "href": "https://www.w3.org/TR/webdriver-bidi/#buffer-a-log-event", + "linkingText": [ + "buffer a log event" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "module-log", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-log", + "title": "The log Module", + "number": "7.7" + }, + "definedIn": "prose" + }, + { + "id": "modules-input", + "href": "https://www.w3.org/TR/webdriver-bidi/#modules-input", + "linkingText": [ + "input" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "modules" + ], + "access": "public", + "informative": false, + "heading": { + "id": "module-input", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-input", + "title": "The input Module", + "number": "7.8" + }, + "definedIn": "prose" + }, + { + "id": "is-inputelementorigin", + "href": "https://www.w3.org/TR/webdriver-bidi/#is-inputelementorigin", + "linkingText": [ + "is input.ElementOrigin" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-input-origin", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-input-origin", + "title": "input.ElementOrigin", + "number": "7.8.2.1" + }, + "definedIn": "prose" + }, + { + "id": "get-element-from-inputelementorigin-steps", + "href": "https://www.w3.org/TR/webdriver-bidi/#get-element-from-inputelementorigin-steps", + "linkingText": [ + "get Element from input.ElementOrigin steps" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "type-input-origin", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-input-origin", + "title": "input.ElementOrigin", + "number": "7.8.2.1" + }, + "definedIn": "prose" + }, + { + "id": "commands-inputperformactions", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-inputperformactions", + "linkingText": [ + "input.performActions" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-input-performActions", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-input-performActions", + "title": "The input.performActions Command", + "number": "7.8.3.1" + }, + "definedIn": "prose" + }, + { + "id": "commands-inputreleaseactions", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-inputreleaseactions", + "linkingText": [ + "input.releaseActions" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-input-releaseActions", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-input-releaseActions", + "title": "The input.releaseActions Command", + "number": "7.8.3.2" + }, + "definedIn": "prose" + }, + { + "id": "commands-inputsetfiles", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands-inputsetfiles", + "linkingText": [ + "input.setFiles" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "commands" + ], + "access": "public", + "informative": false, + "heading": { + "id": "command-input-setFiles", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-input-setFiles", + "title": "The input.setFiles Command", + "number": "7.8.3.3" + }, + "definedIn": "prose" + }, + { + "id": "error-reporting-steps", + "href": "https://www.w3.org/TR/webdriver-bidi/#error-reporting-steps", + "linkingText": [ + "error reporting steps" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "patches-html", + "href": "https://www.w3.org/TR/webdriver-bidi/#patches-html", + "title": "HTML", + "number": "8.1" + }, + "definedIn": "prose" + }, + { + "id": "console-steps", + "href": "https://www.w3.org/TR/webdriver-bidi/#console-steps", + "linkingText": [ + "console steps" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "patches-console", + "href": "https://www.w3.org/TR/webdriver-bidi/#patches-console", + "title": "Console", + "number": "8.2" + }, + "definedIn": "prose" + } + ] +} \ No newline at end of file diff --git a/tr/events/webaudio-1.0.json b/tr/events/webaudio-1.0.json index 9dde0414f2af..cee613fe9609 100644 --- a/tr/events/webaudio-1.0.json +++ b/tr/events/webaudio-1.0.json @@ -1,27 +1,15 @@ { "spec": { - "title": "Web Audio API 1.1", - "url": "https://www.w3.org/TR/webaudio/" + "title": "Web Audio API", + "url": "https://www.w3.org/TR/webaudio-1.0/" }, "events": [ { "src": { "format": "fire an event phrasing", - "href": "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire" + "href": "https://www.w3.org/TR/webaudio-1.0/#ref-for-concept-event-fire" }, - "href": "https://www.w3.org/TR/webaudio/#eventdef-audiocontext-error", - "type": "error", - "targets": [ - "AudioContext" - ], - "interface": "Event" - }, - { - "src": { - "format": "fire an event phrasing", - "href": "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A0" - }, - "href": "https://www.w3.org/TR/webaudio/#eventdef-baseaudiocontext-statechange", + "href": "https://www.w3.org/TR/webaudio-1.0/#ref-for-concept-event-fire", "type": "statechange", "targets": [ "BaseAudioContext" @@ -31,33 +19,9 @@ { "src": { "format": "fire an event phrasing", - "href": "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A5" + "href": "https://www.w3.org/TR/webaudio-1.0/#ref-for-concept-event-fire%E2%91%A3" }, - "href": "https://www.w3.org/TR/webaudio/#eventdef-audiocontext-sinkchange", - "type": "sinkchange", - "targets": [ - "AudioContext" - ], - "interface": "Event" - }, - { - "src": { - "format": "fire an event phrasing", - "href": "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A7" - }, - "href": "https://www.w3.org/TR/webaudio/#eventdef-audiorendercapacity-update", - "type": "update", - "targets": [ - "AudioRenderCapacity" - ], - "interface": "AudioRenderCapacityEvent" - }, - { - "src": { - "format": "fire an event phrasing", - "href": "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A8" - }, - "href": "https://www.w3.org/TR/webaudio/#eventdef-offlineaudiocontext-complete", + "href": "https://www.w3.org/TR/webaudio-1.0/#ref-for-concept-event-fire%E2%91%A3", "type": "complete", "targets": [ "OfflineAudioContext" @@ -67,9 +31,9 @@ { "src": { "format": "fire an event phrasing", - "href": "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A0%E2%91%A0" + "href": "https://www.w3.org/TR/webaudio-1.0/#ref-for-concept-event-fire%E2%91%A5" }, - "href": "https://www.w3.org/TR/webaudio/#eventdef-audioworkletnode-processorerror", + "href": "https://www.w3.org/TR/webaudio-1.0/#ref-for-concept-event-fire%E2%91%A5", "type": "processorerror", "targets": [ "AudioWorkletNode" @@ -83,8 +47,7 @@ ], "src": { "format": "IDL eventHandler" - }, - "href": "https://www.w3.org/TR/webaudio/#eventdef-audioscheduledsourcenode-ended" + } }, { "type": "audioprocess", @@ -93,8 +56,7 @@ ], "src": { "format": "IDL eventHandler" - }, - "href": "https://www.w3.org/TR/webaudio/#eventdef-scriptprocessornode-audioprocess" + } } ] } \ No newline at end of file diff --git a/tr/headings/gpc.json b/tr/headings/gpc.json new file mode 100644 index 000000000000..183087dbcfab --- /dev/null +++ b/tr/headings/gpc.json @@ -0,0 +1,195 @@ +{ + "spec": { + "title": "Global Privacy Control (GPC)", + "url": "https://www.w3.org/TR/gpc/" + }, + "headings": [ + { + "id": "title", + "href": "https://www.w3.org/TR/gpc/#title", + "level": 1, + "title": "Global Privacy Control (GPC)" + }, + { + "id": "toc", + "href": "https://www.w3.org/TR/gpc/#toc", + "level": 2, + "title": "Table of Contents" + }, + { + "id": "introduction", + "href": "https://www.w3.org/TR/gpc/#introduction", + "level": 2, + "title": "Introduction", + "number": "1" + }, + { + "id": "definitions", + "href": "https://www.w3.org/TR/gpc/#definitions", + "level": 2, + "title": "Definitions", + "number": "2" + }, + { + "id": "expressing-a-do-not-sell-or-share-preference", + "href": "https://www.w3.org/TR/gpc/#expressing-a-do-not-sell-or-share-preference", + "level": 2, + "title": "Expressing a Do Not Sell Or Share Preference", + "number": "3" + }, + { + "id": "expression-format", + "href": "https://www.w3.org/TR/gpc/#expression-format", + "level": 3, + "title": "Expression Format", + "number": "3.1" + }, + { + "id": "preference-caching", + "href": "https://www.w3.org/TR/gpc/#preference-caching", + "level": 3, + "title": "Preference Caching", + "number": "3.2" + }, + { + "id": "the-sec-gpc-header-field-for-http-requests", + "href": "https://www.w3.org/TR/gpc/#the-sec-gpc-header-field-for-http-requests", + "level": 3, + "title": "The Sec-GPC Header Field for HTTP Requests", + "number": "3.3" + }, + { + "id": "extensibility-of-the-sec-gpc-field-value", + "href": "https://www.w3.org/TR/gpc/#extensibility-of-the-sec-gpc-field-value", + "level": 4, + "title": "Extensibility of the Sec-GPC Field Value", + "number": "3.3.1" + }, + { + "id": "javascript-property-to-detect-preference", + "href": "https://www.w3.org/TR/gpc/#javascript-property-to-detect-preference", + "level": 3, + "title": "JavaScript Property to Detect Preference", + "number": "3.4" + }, + { + "id": "gpc-support-resource", + "href": "https://www.w3.org/TR/gpc/#gpc-support-resource", + "level": 2, + "title": "GPC Support Resource", + "number": "4" + }, + { + "id": "gpc-support-representation", + "href": "https://www.w3.org/TR/gpc/#gpc-support-representation", + "level": 3, + "title": "GPC Support Representation", + "number": "4.1" + }, + { + "id": "legal-effects", + "href": "https://www.w3.org/TR/gpc/#legal-effects", + "level": 2, + "title": "Legal Effects", + "number": "5" + }, + { + "id": "calfornia-consumer-privacy-act-ccpa", + "href": "https://www.w3.org/TR/gpc/#calfornia-consumer-privacy-act-ccpa", + "level": 3, + "title": "Calfornia Consumer Privacy Act (CCPA)", + "number": "5.1" + }, + { + "id": "colorado-privacy-act-cpa", + "href": "https://www.w3.org/TR/gpc/#colorado-privacy-act-cpa", + "level": 3, + "title": "Colorado Privacy Act (CPA)", + "number": "5.2" + }, + { + "id": "connecticut-data-privacy-act-cdpa", + "href": "https://www.w3.org/TR/gpc/#connecticut-data-privacy-act-cdpa", + "level": 3, + "title": "Connecticut Data Privacy Act (CDPA)", + "number": "5.3" + }, + { + "id": "nevada-revised-statutes-chapter-603a-nrs-603a", + "href": "https://www.w3.org/TR/gpc/#nevada-revised-statutes-chapter-603a-nrs-603a", + "level": 3, + "title": "Nevada Revised Statutes Chapter 603A (NRS 603A)", + "number": "5.4" + }, + { + "id": "eu-general-data-protection-regulation-gdpr", + "href": "https://www.w3.org/TR/gpc/#eu-general-data-protection-regulation-gdpr", + "level": 3, + "title": "EU General Data Protection Regulation (GDPR)", + "number": "5.5" + }, + { + "id": "other-jurisdictions-and-privacy-rights", + "href": "https://www.w3.org/TR/gpc/#other-jurisdictions-and-privacy-rights", + "level": 3, + "title": "Other Jurisdictions and Privacy Rights", + "number": "5.6" + }, + { + "id": "user-interface-language", + "href": "https://www.w3.org/TR/gpc/#user-interface-language", + "level": 3, + "title": "User Interface Language", + "number": "5.7" + }, + { + "id": "privacy-considerations", + "href": "https://www.w3.org/TR/gpc/#privacy-considerations", + "level": 2, + "title": "Privacy Considerations", + "number": "6" + }, + { + "id": "conformance", + "href": "https://www.w3.org/TR/gpc/#conformance", + "level": 2, + "title": "Conformance", + "number": "7" + }, + { + "id": "implementation-considerations", + "href": "https://www.w3.org/TR/gpc/#implementation-considerations", + "level": 2, + "title": "Implementation Considerations", + "number": "A" + }, + { + "id": "acknowledgments", + "href": "https://www.w3.org/TR/gpc/#acknowledgments", + "level": 2, + "title": "Acknowledgments", + "number": "B" + }, + { + "id": "references", + "href": "https://www.w3.org/TR/gpc/#references", + "level": 2, + "title": "References", + "number": "C" + }, + { + "id": "normative-references", + "href": "https://www.w3.org/TR/gpc/#normative-references", + "level": 3, + "title": "Normative references", + "number": "C.1" + }, + { + "id": "informative-references", + "href": "https://www.w3.org/TR/gpc/#informative-references", + "level": 3, + "title": "Informative references", + "number": "C.2" + } + ] +} \ No newline at end of file diff --git a/tr/headings/vibration.json b/tr/headings/vibration.json index f1b4be57e935..752447148577 100644 --- a/tr/headings/vibration.json +++ b/tr/headings/vibration.json @@ -1,32 +1,14 @@ { "spec": { - "title": "Vibration API (Second Edition)", + "title": "Vibration API", "url": "https://www.w3.org/TR/vibration/" }, "headings": [ { - "id": "respecDocument", - "href": "https://www.w3.org/TR/vibration/#respecDocument", + "id": "title", + "href": "https://www.w3.org/TR/vibration/#title", "level": 1, - "title": "Vibration API (Second Edition)" - }, - { - "id": "w3c-recommendation-18-october-2016", - "href": "https://www.w3.org/TR/vibration/#w3c-recommendation-18-october-2016", - "level": 2, - "title": "W3C Recommendation 18 October 2016" - }, - { - "id": "abstract", - "href": "https://www.w3.org/TR/vibration/#abstract", - "level": 2, - "title": "Abstract" - }, - { - "id": "sotd", - "href": "https://www.w3.org/TR/vibration/#sotd", - "level": 2, - "title": "Status of This Document" + "title": "Vibration API" }, { "id": "toc", @@ -48,33 +30,26 @@ "title": "Conformance", "number": "2" }, - { - "id": "terminology", - "href": "https://www.w3.org/TR/vibration/#terminology", - "level": 2, - "title": "Terminology", - "number": "3" - }, { "id": "vibration-interface", "href": "https://www.w3.org/TR/vibration/#vibration-interface", "level": 2, "title": "Vibration Interface", - "number": "4" + "number": "3" }, { "id": "security-and-privacy-considerations", "href": "https://www.w3.org/TR/vibration/#security-and-privacy-considerations", "level": 2, "title": "Security and privacy considerations", - "number": "5" + "number": "4" }, { "id": "examples", "href": "https://www.w3.org/TR/vibration/#examples", "level": 2, "title": "Examples", - "number": "6" + "number": "5" }, { "id": "acknowledgements", @@ -83,26 +58,40 @@ "title": "Acknowledgements", "number": "A" }, + { + "id": "changes", + "href": "https://www.w3.org/TR/vibration/#changes", + "level": 2, + "title": "Changes", + "number": "B" + }, + { + "id": "idl-index", + "href": "https://www.w3.org/TR/vibration/#idl-index", + "level": 2, + "title": "IDL Index", + "number": "C" + }, { "id": "references", "href": "https://www.w3.org/TR/vibration/#references", "level": 2, "title": "References", - "number": "B" + "number": "D" }, { "id": "normative-references", "href": "https://www.w3.org/TR/vibration/#normative-references", "level": 3, "title": "Normative references", - "number": "B.1" + "number": "D.1" }, { "id": "informative-references", "href": "https://www.w3.org/TR/vibration/#informative-references", "level": 3, "title": "Informative references", - "number": "B.2" + "number": "D.2" } ] } \ No newline at end of file diff --git a/tr/headings/webaudio-1.0.json b/tr/headings/webaudio-1.0.json index c8f3e04cb88c..7878df4de818 100644 --- a/tr/headings/webaudio-1.0.json +++ b/tr/headings/webaudio-1.0.json @@ -1,1882 +1,1838 @@ { "spec": { - "title": "Web Audio API 1.1", - "url": "https://www.w3.org/TR/webaudio/" + "title": "Web Audio API", + "url": "https://www.w3.org/TR/webaudio-1.0/" }, "headings": [ { "id": "title", - "href": "https://www.w3.org/TR/webaudio/#title", + "href": "https://www.w3.org/TR/webaudio-1.0/#title", "level": 1, - "title": "Web Audio API 1.1" + "title": "Web Audio API" + }, + { + "id": "profile-and-date", + "href": "https://www.w3.org/TR/webaudio-1.0/#profile-and-date", + "level": 2, + "title": "W3C Recommendation, 17 June 2021" }, { "id": "abstract", - "href": "https://www.w3.org/TR/webaudio/#abstract", + "href": "https://www.w3.org/TR/webaudio-1.0/#abstract", "level": 2, "title": "Abstract" }, { "id": "sotd", - "href": "https://www.w3.org/TR/webaudio/#sotd", + "href": "https://www.w3.org/TR/webaudio-1.0/#sotd", "level": 2, "title": "Status of this document" }, { "id": "toc", - "href": "https://www.w3.org/TR/webaudio/#toc", + "href": "https://www.w3.org/TR/webaudio-1.0/#toc", "level": 2, "title": "Table of Contents" }, { "id": "introductory", - "href": "https://www.w3.org/TR/webaudio/#introductory", + "href": "https://www.w3.org/TR/webaudio-1.0/#introductory", "level": 2, "title": "Introduction" }, { "id": "Features", - "href": "https://www.w3.org/TR/webaudio/#Features", + "href": "https://www.w3.org/TR/webaudio-1.0/#Features", "level": 3, "title": "Features" }, { "id": "ModularRouting", - "href": "https://www.w3.org/TR/webaudio/#ModularRouting", + "href": "https://www.w3.org/TR/webaudio-1.0/#ModularRouting", "level": 4, "title": "Modular Routing" }, { "id": "APIOverview", - "href": "https://www.w3.org/TR/webaudio/#APIOverview", + "href": "https://www.w3.org/TR/webaudio-1.0/#APIOverview", "level": 3, "title": "API Overview" }, { "id": "audioapi", - "href": "https://www.w3.org/TR/webaudio/#audioapi", + "href": "https://www.w3.org/TR/webaudio-1.0/#audioapi", "level": 2, "title": "The Audio API", "number": "1" }, { "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext", "level": 3, "title": "The BaseAudioContext Interface", "number": "1.1" }, { "id": "BaseAudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext-attributes", "level": 4, "title": "Attributes", "number": "1.1.1" }, { "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", "level": 4, "title": "Methods", "number": "1.1.2" }, { "id": "callback-decodesuccesscallback-parameters", - "href": "https://www.w3.org/TR/webaudio/#callback-decodesuccesscallback-parameters", + "href": "https://www.w3.org/TR/webaudio-1.0/#callback-decodesuccesscallback-parameters", "level": 4, "title": "Callback DecodeSuccessCallback() Parameters", "number": "1.1.3" }, { "id": "callback-decodeerrorcallback-parameters", - "href": "https://www.w3.org/TR/webaudio/#callback-decodeerrorcallback-parameters", + "href": "https://www.w3.org/TR/webaudio-1.0/#callback-decodeerrorcallback-parameters", "level": 4, "title": "Callback DecodeErrorCallback() Parameters", "number": "1.1.4" }, { "id": "lifetime-AudioContext", - "href": "https://www.w3.org/TR/webaudio/#lifetime-AudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#lifetime-AudioContext", "level": 4, "title": "Lifetime", "number": "1.1.5" }, { "id": "lack-of-introspection-or-serialization-primitives", - "href": "https://www.w3.org/TR/webaudio/#lack-of-introspection-or-serialization-primitives", + "href": "https://www.w3.org/TR/webaudio-1.0/#lack-of-introspection-or-serialization-primitives", "level": 4, "title": "Lack of Introspection or Serialization Primitives", "number": "1.1.6" }, { "id": "system-resources-associated-with-baseaudiocontext-subclasses", - "href": "https://www.w3.org/TR/webaudio/#system-resources-associated-with-baseaudiocontext-subclasses", + "href": "https://www.w3.org/TR/webaudio-1.0/#system-resources-associated-with-baseaudiocontext-subclasses", "level": 4, "title": "System Resources Associated with BaseAudioContext Subclasses", "number": "1.1.7" }, { "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContext", "level": 3, "title": "The AudioContext Interface", "number": "1.2" }, { "id": "AudioContext-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContext-constructors", "level": 4, "title": "Constructors", "number": "1.2.1" }, { "id": "AudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContext-attributes", "level": 4, "title": "Attributes", "number": "1.2.2" }, { "id": "AudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContext-methods", "level": 4, "title": "Methods", "number": "1.2.3" }, - { - "id": "validating-sink-identifier", - "href": "https://www.w3.org/TR/webaudio/#validating-sink-identifier", - "level": 4, - "title": "Validating sinkId", - "number": "1.2.4" - }, { "id": "AudioContextOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioContextOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioContextOptions", "level": 4, "title": "AudioContextOptions", - "number": "1.2.5" + "number": "1.2.4" }, { "id": "dictionary-audiocontextoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiocontextoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audiocontextoptions-members", "level": 5, "title": "Dictionary AudioContextOptions Members", - "number": "1.2.5.1" - }, - { - "id": "AudioSinkOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioSinkOptions", - "level": 4, - "title": "AudioSinkOptions", - "number": "1.2.6" - }, - { - "id": "dictionary-audiosinkoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiosinkoptions-members", - "level": 5, - "title": "Dictionary AudioSinkOptions Members", - "number": "1.2.6.1" - }, - { - "id": "AudioSinkInfo", - "href": "https://www.w3.org/TR/webaudio/#AudioSinkInfo", - "level": 4, - "title": "AudioSinkInfo", - "number": "1.2.7" - }, - { - "id": "audiosinkinfo-attributes", - "href": "https://www.w3.org/TR/webaudio/#audiosinkinfo-attributes", - "level": 5, - "title": "Attributes", - "number": "1.2.7.1" + "number": "1.2.4.1" }, { "id": "AudioTimestamp", - "href": "https://www.w3.org/TR/webaudio/#AudioTimestamp", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioTimestamp", "level": 4, "title": "AudioTimestamp", - "number": "1.2.8" + "number": "1.2.5" }, { "id": "dictionary-audiotimestamp-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiotimestamp-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audiotimestamp-members", "level": 5, "title": "Dictionary AudioTimestamp Members", - "number": "1.2.8.1" - }, - { - "id": "AudioRenderCapacity", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacity", - "level": 4, - "title": "AudioRenderCapacity", - "number": "1.2.9" - }, - { - "id": "AudioRenderCapacity-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacity-attributes", - "level": 5, - "title": "Attributes", - "number": "1.2.9.1" - }, - { - "id": "AudioRenderCapacity-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacity-methods", - "level": 5, - "title": "Methods", - "number": "1.2.9.2" - }, - { - "id": "AudioRenderCapacityOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityOptions", - "level": 4, - "title": "AudioRenderCapacityOptions", - "number": "1.2.10" - }, - { - "id": "dictionary-AudioRenderCapacityOptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-AudioRenderCapacityOptions-members", - "level": 5, - "title": "Dictionary AudioRenderCapacityOptions Members", - "number": "1.2.10.1" - }, - { - "id": "AudioRenderCapacityEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent", - "level": 4, - "title": "AudioRenderCapacityEvent", - "number": "1.2.11" - }, - { - "id": "AudioRenderCapacityEvent-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent-attributes", - "level": 5, - "title": "Attributes", - "number": "1.2.11.1" + "number": "1.2.5.1" }, { "id": "OfflineAudioContext", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioContext", "level": 3, "title": "The OfflineAudioContext Interface", "number": "1.3" }, { "id": "OfflineAudioContext-constructors", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioContext-constructors", "level": 4, "title": "Constructors", "number": "1.3.1" }, { "id": "OfflineAudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioContext-attributes", "level": 4, "title": "Attributes", "number": "1.3.2" }, { "id": "OfflineAudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioContext-methods", "level": 4, "title": "Methods", "number": "1.3.3" }, { "id": "OfflineAudioContextOptions", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContextOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioContextOptions", "level": 4, "title": "OfflineAudioContextOptions", "number": "1.3.4" }, { "id": "dictionary-offlineaudiocontextoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-offlineaudiocontextoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-offlineaudiocontextoptions-members", "level": 5, "title": "Dictionary OfflineAudioContextOptions Members", "number": "1.3.4.1" }, { "id": "OfflineAudioCompletionEvent", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioCompletionEvent", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioCompletionEvent", "level": 4, "title": "The OfflineAudioCompletionEvent Interface", "number": "1.3.5" }, { "id": "OfflineAudioCompletionEvent-attributes", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioCompletionEvent-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioCompletionEvent-attributes", "level": 5, "title": "Attributes", "number": "1.3.5.1" }, { "id": "OfflineAudioCompletionEventInit", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioCompletionEventInit", + "href": "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioCompletionEventInit", "level": 5, "title": "OfflineAudioCompletionEventInit", "number": "1.3.5.2" }, { "id": "dictionary-offlineaudiocompletioneventinit-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-offlineaudiocompletioneventinit-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-offlineaudiocompletioneventinit-members", "level": 6, "title": "Dictionary OfflineAudioCompletionEventInit Members", "number": "1.3.5.2.1" }, { "id": "AudioBuffer", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer", "level": 3, "title": "The AudioBuffer Interface", "number": "1.4" }, { "id": "AudioBuffer-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer-constructors", "level": 4, "title": "Constructors", "number": "1.4.1" }, { "id": "AudioBuffer-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer-attributes", "level": 4, "title": "Attributes", "number": "1.4.2" }, { "id": "AudioBuffer-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer-methods", "level": 4, "title": "Methods", "number": "1.4.3" }, { "id": "AudioBufferOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferOptions", "level": 4, "title": "AudioBufferOptions", "number": "1.4.4" }, { "id": "dictionary-audiobufferoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiobufferoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audiobufferoptions-members", "level": 5, "title": "Dictionary AudioBufferOptions Members", "number": "1.4.4.1" }, { "id": "AudioNode", - "href": "https://www.w3.org/TR/webaudio/#AudioNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode", "level": 3, "title": "The AudioNode Interface", "number": "1.5" }, { "id": "AudioNode-creation", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-creation", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-creation", "level": 4, "title": "AudioNode Creation", "number": "1.5.1" }, { "id": "AudioNode-tail", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-tail", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-tail", "level": 4, "title": "AudioNode Tail-Time", "number": "1.5.2" }, { "id": "AudioNode-actively-processing", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-actively-processing", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-actively-processing", "level": 4, "title": "AudioNode Lifetime", "number": "1.5.3" }, { "id": "AudioNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-attributes", "level": 4, "title": "Attributes", "number": "1.5.4" }, { "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNode-methods", "level": 4, "title": "Methods", "number": "1.5.5" }, { "id": "AudioNodeOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioNodeOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioNodeOptions", "level": 4, "title": "AudioNodeOptions", "number": "1.5.6" }, { "id": "dictionary-audionodeoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audionodeoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audionodeoptions-members", "level": 5, "title": "Dictionary AudioNodeOptions Members", "number": "1.5.6.1" }, { "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam", "level": 3, "title": "The AudioParam Interface", "number": "1.6" }, { "id": "AudioParam-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam-attributes", "level": 4, "title": "Attributes", "number": "1.6.1" }, { "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParam-methods", "level": 4, "title": "Methods", "number": "1.6.2" }, { "id": "computation-of-value", - "href": "https://www.w3.org/TR/webaudio/#computation-of-value", + "href": "https://www.w3.org/TR/webaudio-1.0/#computation-of-value", "level": 4, "title": "Computation of Value", "number": "1.6.3" }, { "id": "example1-AudioParam", - "href": "https://www.w3.org/TR/webaudio/#example1-AudioParam", + "href": "https://www.w3.org/TR/webaudio-1.0/#example1-AudioParam", "level": 4, "title": "AudioParam Automation Example", "number": "1.6.4" }, { "id": "AudioScheduledSourceNode", - "href": "https://www.w3.org/TR/webaudio/#AudioScheduledSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioScheduledSourceNode", "level": 3, "title": "The AudioScheduledSourceNode Interface", "number": "1.7" }, { "id": "AudioScheduledSourceNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioScheduledSourceNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioScheduledSourceNode-attributes", "level": 4, "title": "Attributes", "number": "1.7.1" }, { "id": "AudioScheduledSourceNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioScheduledSourceNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioScheduledSourceNode-methods", "level": 4, "title": "Methods", "number": "1.7.2" }, { "id": "AnalyserNode", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AnalyserNode", "level": 3, "title": "The AnalyserNode Interface", "number": "1.8" }, { "id": "AnalyserNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#AnalyserNode-constructors", "level": 4, "title": "Constructors", "number": "1.8.1" }, { "id": "AnalyserNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AnalyserNode-attributes", "level": 4, "title": "Attributes", "number": "1.8.2" }, { "id": "AnalyserNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AnalyserNode-methods", "level": 4, "title": "Methods", "number": "1.8.3" }, { "id": "AnalyserOptions", - "href": "https://www.w3.org/TR/webaudio/#AnalyserOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#AnalyserOptions", "level": 4, "title": "AnalyserOptions", "number": "1.8.4" }, { "id": "dictionary-analyseroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-analyseroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-analyseroptions-members", "level": 5, "title": "Dictionary AnalyserOptions Members", "number": "1.8.4.1" }, { "id": "time-domain-down-mixing", - "href": "https://www.w3.org/TR/webaudio/#time-domain-down-mixing", + "href": "https://www.w3.org/TR/webaudio-1.0/#time-domain-down-mixing", "level": 4, "title": "Time-Domain Down-Mixing", "number": "1.8.5" }, { "id": "fft-windowing-and-smoothing-over-time", - "href": "https://www.w3.org/TR/webaudio/#fft-windowing-and-smoothing-over-time", + "href": "https://www.w3.org/TR/webaudio-1.0/#fft-windowing-and-smoothing-over-time", "level": 4, "title": "FFT Windowing and Smoothing over Time", "number": "1.8.6" }, { "id": "AudioBufferSourceNode", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceNode", "level": 3, "title": "The AudioBufferSourceNode Interface", "number": "1.9" }, { "id": "AudioBufferSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceNode-constructors", "level": 4, "title": "Constructors", "number": "1.9.1" }, { "id": "AudioBufferSourceNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceNode-attributes", "level": 4, "title": "Attributes", "number": "1.9.2" }, { "id": "AudioBufferSourceNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceNode-methods", "level": 4, "title": "Methods", "number": "1.9.3" }, { "id": "AudioBufferSourceOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceOptions", "level": 4, "title": "AudioBufferSourceOptions", "number": "1.9.4" }, { "id": "dictionary-audiobuffersourceoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiobuffersourceoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audiobuffersourceoptions-members", "level": 5, "title": "Dictionary AudioBufferSourceOptions Members", "number": "1.9.4.1" }, { "id": "looping-AudioBufferSourceNode", - "href": "https://www.w3.org/TR/webaudio/#looping-AudioBufferSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#looping-AudioBufferSourceNode", "level": 4, "title": "Looping", "number": "1.9.5" }, { "id": "playback-AudioBufferSourceNode", - "href": "https://www.w3.org/TR/webaudio/#playback-AudioBufferSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#playback-AudioBufferSourceNode", "level": 4, "title": "Playback of AudioBuffer Contents", "number": "1.9.6" }, { "id": "AudioDestinationNode", - "href": "https://www.w3.org/TR/webaudio/#AudioDestinationNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioDestinationNode", "level": 3, "title": "The AudioDestinationNode Interface", "number": "1.10" }, { "id": "AudioDestinationNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioDestinationNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioDestinationNode-attributes", "level": 4, "title": "Attributes", "number": "1.10.1" }, { "id": "AudioListener", - "href": "https://www.w3.org/TR/webaudio/#AudioListener", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener", "level": 3, "title": "The AudioListener Interface", "number": "1.11" }, { "id": "AudioListener-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener-attributes", "level": 4, "title": "Attributes", "number": "1.11.1" }, { "id": "AudioListener-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioListener-methods", "level": 4, "title": "Methods", "number": "1.11.2" }, { "id": "listenerprocessing", - "href": "https://www.w3.org/TR/webaudio/#listenerprocessing", + "href": "https://www.w3.org/TR/webaudio-1.0/#listenerprocessing", "level": 4, "title": "Processing", "number": "1.11.3" }, { "id": "AudioProcessingEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioProcessingEvent", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioProcessingEvent", "level": 3, "title": "The AudioProcessingEvent Interface - DEPRECATED", "number": "1.12" }, { "id": "AudioProcessingEvent-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioProcessingEvent-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioProcessingEvent-attributes", "level": 4, "title": "Attributes", "number": "1.12.1" }, { "id": "AudioProcessingEventInit", - "href": "https://www.w3.org/TR/webaudio/#AudioProcessingEventInit", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioProcessingEventInit", "level": 4, "title": "AudioProcessingEventInit", "number": "1.12.2" }, { "id": "dictionary-audioprocessingeventinit-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audioprocessingeventinit-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audioprocessingeventinit-members", "level": 5, "title": "Dictionary AudioProcessingEventInit Members", "number": "1.12.2.1" }, { "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode", "level": 3, "title": "The BiquadFilterNode Interface", "number": "1.13" }, { "id": "BiquadFilterNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode-constructors", "level": 4, "title": "Constructors", "number": "1.13.1" }, { "id": "BiquadFilterNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode-attributes", "level": 4, "title": "Attributes", "number": "1.13.2" }, { "id": "BiquadFilterNode-methods", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode-methods", "level": 4, "title": "Methods", "number": "1.13.3" }, { "id": "BiquadFilterOptions", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterOptions", "level": 4, "title": "BiquadFilterOptions", "number": "1.13.4" }, { "id": "dictionary-biquadfilteroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-biquadfilteroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-biquadfilteroptions-members", "level": 5, "title": "Dictionary BiquadFilterOptions Members", "number": "1.13.4.1" }, { "id": "filters-characteristics", - "href": "https://www.w3.org/TR/webaudio/#filters-characteristics", + "href": "https://www.w3.org/TR/webaudio-1.0/#filters-characteristics", "level": 4, "title": "Filters Characteristics", "number": "1.13.5" }, { "id": "ChannelMergerNode", - "href": "https://www.w3.org/TR/webaudio/#ChannelMergerNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#ChannelMergerNode", "level": 3, "title": "The ChannelMergerNode Interface", "number": "1.14" }, { "id": "ChannelMergerNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#ChannelMergerNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#ChannelMergerNode-constructors", "level": 4, "title": "Constructors", "number": "1.14.1" }, { "id": "ChannelMergerOptions", - "href": "https://www.w3.org/TR/webaudio/#ChannelMergerOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#ChannelMergerOptions", "level": 4, "title": "ChannelMergerOptions", "number": "1.14.2" }, { "id": "dictionary-channelmergeroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-channelmergeroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-channelmergeroptions-members", "level": 5, "title": "Dictionary ChannelMergerOptions Members", "number": "1.14.2.1" }, { "id": "ChannelSplitterNode", - "href": "https://www.w3.org/TR/webaudio/#ChannelSplitterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#ChannelSplitterNode", "level": 3, "title": "The ChannelSplitterNode Interface", "number": "1.15" }, { "id": "ChannelSplitterNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#ChannelSplitterNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#ChannelSplitterNode-constructors", "level": 4, "title": "Constructors", "number": "1.15.1" }, { "id": "ChannelSplitterOptions", - "href": "https://www.w3.org/TR/webaudio/#ChannelSplitterOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#ChannelSplitterOptions", "level": 4, "title": "ChannelSplitterOptions", "number": "1.15.2" }, { "id": "dictionary-channelsplitteroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-channelsplitteroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-channelsplitteroptions-members", "level": 5, "title": "Dictionary ChannelSplitterOptions Members", "number": "1.15.2.1" }, { "id": "ConstantSourceNode", - "href": "https://www.w3.org/TR/webaudio/#ConstantSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConstantSourceNode", "level": 3, "title": "The ConstantSourceNode Interface", "number": "1.16" }, { "id": "ConstantSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#ConstantSourceNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConstantSourceNode-constructors", "level": 4, "title": "Constructors", "number": "1.16.1" }, { "id": "ConstantSourceNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#ConstantSourceNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConstantSourceNode-attributes", "level": 4, "title": "Attributes", "number": "1.16.2" }, { "id": "ConstantSourceOptions", - "href": "https://www.w3.org/TR/webaudio/#ConstantSourceOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConstantSourceOptions", "level": 4, "title": "ConstantSourceOptions", "number": "1.16.3" }, { "id": "dictionary-constantsourceoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-constantsourceoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-constantsourceoptions-members", "level": 5, "title": "Dictionary ConstantSourceOptions Members", "number": "1.16.3.1" }, { "id": "ConvolverNode", - "href": "https://www.w3.org/TR/webaudio/#ConvolverNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConvolverNode", "level": 3, "title": "The ConvolverNode Interface", "number": "1.17" }, { "id": "ConvolverNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#ConvolverNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConvolverNode-constructors", "level": 4, "title": "Constructors", "number": "1.17.1" }, { "id": "ConvolverNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#ConvolverNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConvolverNode-attributes", "level": 4, "title": "Attributes", "number": "1.17.2" }, { "id": "ConvolverOptions", - "href": "https://www.w3.org/TR/webaudio/#ConvolverOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#ConvolverOptions", "level": 4, "title": "ConvolverOptions", "number": "1.17.3" }, { "id": "dictionary-convolveroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-convolveroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-convolveroptions-members", "level": 5, "title": "Dictionary ConvolverOptions Members", "number": "1.17.3.1" }, { "id": "Convolution-channel-configurations", - "href": "https://www.w3.org/TR/webaudio/#Convolution-channel-configurations", + "href": "https://www.w3.org/TR/webaudio-1.0/#Convolution-channel-configurations", "level": 4, "title": "Channel Configurations for Input, Impulse Response and Output", "number": "1.17.4" }, { "id": "DelayNode", - "href": "https://www.w3.org/TR/webaudio/#DelayNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#DelayNode", "level": 3, "title": "The DelayNode Interface", "number": "1.18" }, { "id": "DelayNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#DelayNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#DelayNode-constructors", "level": 4, "title": "Constructors", "number": "1.18.1" }, { "id": "DelayNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#DelayNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#DelayNode-attributes", "level": 4, "title": "Attributes", "number": "1.18.2" }, { "id": "DelayOptions", - "href": "https://www.w3.org/TR/webaudio/#DelayOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#DelayOptions", "level": 4, "title": "DelayOptions", "number": "1.18.3" }, { "id": "dictionary-delayoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-delayoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-delayoptions-members", "level": 5, "title": "Dictionary DelayOptions Members", "number": "1.18.3.1" }, { "id": "DelayNode-processing", - "href": "https://www.w3.org/TR/webaudio/#DelayNode-processing", + "href": "https://www.w3.org/TR/webaudio-1.0/#DelayNode-processing", "level": 4, "title": "Processing", "number": "1.18.4" }, { "id": "DynamicsCompressorNode", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorNode", "level": 3, "title": "The DynamicsCompressorNode Interface", "number": "1.19" }, { "id": "DynamicsCompressorNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorNode-constructors", "level": 4, "title": "Constructors", "number": "1.19.1" }, { "id": "DynamicsCompressorNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorNode-attributes", "level": 4, "title": "Attributes", "number": "1.19.2" }, { "id": "DynamicsCompressorOptions", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorOptions", "level": 4, "title": "DynamicsCompressorOptions", "number": "1.19.3" }, { "id": "dictionary-dynamicscompressoroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-dynamicscompressoroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-dynamicscompressoroptions-members", "level": 5, "title": "Dictionary DynamicsCompressorOptions Members", "number": "1.19.3.1" }, { "id": "DynamicsCompressorOptions-processing", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorOptions-processing", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorOptions-processing", "level": 4, "title": "Processing", "number": "1.19.4" }, { "id": "GainNode", - "href": "https://www.w3.org/TR/webaudio/#GainNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#GainNode", "level": 3, "title": "The GainNode Interface", "number": "1.20" }, { "id": "GainNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#GainNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#GainNode-constructors", "level": 4, "title": "Constructors", "number": "1.20.1" }, { "id": "GainNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#GainNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#GainNode-attributes", "level": 4, "title": "Attributes", "number": "1.20.2" }, { "id": "GainOptions", - "href": "https://www.w3.org/TR/webaudio/#GainOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#GainOptions", "level": 4, "title": "GainOptions", "number": "1.20.3" }, { "id": "dictionary-gainoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-gainoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-gainoptions-members", "level": 5, "title": "Dictionary GainOptions Members", "number": "1.20.3.1" }, { "id": "IIRFilterNode", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#IIRFilterNode", "level": 3, "title": "The IIRFilterNode Interface", "number": "1.21" }, { "id": "IIRFilterNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#IIRFilterNode-constructors", "level": 4, "title": "Constructors", "number": "1.21.1" }, { "id": "IIRFilterNode-methods", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#IIRFilterNode-methods", "level": 4, "title": "Methods", "number": "1.21.2" }, { "id": "IIRFilterOptions", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#IIRFilterOptions", "level": 4, "title": "IIRFilterOptions", "number": "1.21.3" }, { "id": "dictionary-iirfilteroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-iirfilteroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-iirfilteroptions-members", "level": 5, "title": "Dictionary IIRFilterOptions Members", "number": "1.21.3.1" }, { "id": "IIRFilterNode-filter-definition", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode-filter-definition", + "href": "https://www.w3.org/TR/webaudio-1.0/#IIRFilterNode-filter-definition", "level": 4, "title": "Filter Definition", "number": "1.21.4" }, { "id": "MediaElementAudioSourceNode", - "href": "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaElementAudioSourceNode", "level": 3, "title": "The MediaElementAudioSourceNode Interface", "number": "1.22" }, { "id": "MediaElementAudioSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaElementAudioSourceNode-constructors", "level": 4, "title": "Constructors", "number": "1.22.1" }, { "id": "MediaElementAudioSourceNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaElementAudioSourceNode-attributes", "level": 4, "title": "Attributes", "number": "1.22.2" }, { "id": "MediaElementAudioSourceOptions", - "href": "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaElementAudioSourceOptions", "level": 4, "title": "MediaElementAudioSourceOptions", "number": "1.22.3" }, { "id": "dictionary-mediaelementaudiosourceoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-mediaelementaudiosourceoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-mediaelementaudiosourceoptions-members", "level": 5, "title": "Dictionary MediaElementAudioSourceOptions Members", "number": "1.22.3.1" }, { "id": "MediaElementAudioSourceOptions-security", - "href": "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceOptions-security", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaElementAudioSourceOptions-security", "level": 4, "title": "Security with MediaElementAudioSourceNode and Cross-Origin Resources", "number": "1.22.4" }, { "id": "MediaStreamAudioDestinationNode", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioDestinationNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioDestinationNode", "level": 3, "title": "The MediaStreamAudioDestinationNode Interface", "number": "1.23" }, { "id": "MediaStreamAudioDestinationNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioDestinationNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioDestinationNode-constructors", "level": 4, "title": "Constructors", "number": "1.23.1" }, { "id": "MediaStreamAudioDestinationNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioDestinationNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioDestinationNode-attributes", "level": 4, "title": "Attributes", "number": "1.23.2" }, { "id": "MediaStreamAudioSourceNode", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioSourceNode", "level": 3, "title": "The MediaStreamAudioSourceNode Interface", "number": "1.24" }, { "id": "MediaStreamAudioSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioSourceNode-constructors", "level": 4, "title": "Constructors", "number": "1.24.1" }, { "id": "MediaStreamAudioSourceNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioSourceNode-attributes", "level": 4, "title": "Attributes", "number": "1.24.2" }, { "id": "MediaStreamAudioSourceOptions", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioSourceOptions", "level": 4, "title": "MediaStreamAudioSourceOptions", "number": "1.24.3" }, { "id": "dictionary-mediastreamaudiosourceoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-mediastreamaudiosourceoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-mediastreamaudiosourceoptions-members", "level": 5, "title": "Dictionary MediaStreamAudioSourceOptions Members", "number": "1.24.3.1" }, { "id": "MediaStreamTrackAudioSourceNode", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamTrackAudioSourceNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamTrackAudioSourceNode", "level": 3, "title": "The MediaStreamTrackAudioSourceNode Interface", "number": "1.25" }, { "id": "MediaStreamTrackAudioSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamTrackAudioSourceNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamTrackAudioSourceNode-constructors", "level": 4, "title": "Constructors", "number": "1.25.1" }, { "id": "MediaStreamTrackAudioSourceOptions", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamTrackAudioSourceOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#MediaStreamTrackAudioSourceOptions", "level": 4, "title": "MediaStreamTrackAudioSourceOptions", "number": "1.25.2" }, { "id": "dictionary-mediastreamtrackaudiosourceoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-mediastreamtrackaudiosourceoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-mediastreamtrackaudiosourceoptions-members", "level": 5, "title": "Dictionary MediaStreamTrackAudioSourceOptions Members", "number": "1.25.2.1" }, { "id": "OscillatorNode", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#OscillatorNode", "level": 3, "title": "The OscillatorNode Interface", "number": "1.26" }, { "id": "OscillatorNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#OscillatorNode-constructors", "level": 4, "title": "Constructors", "number": "1.26.1" }, { "id": "OscillatorNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#OscillatorNode-attributes", "level": 4, "title": "Attributes", "number": "1.26.2" }, { "id": "OscillatorNode-methods", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#OscillatorNode-methods", "level": 4, "title": "Methods", "number": "1.26.3" }, { "id": "OscillatorOptions", - "href": "https://www.w3.org/TR/webaudio/#OscillatorOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#OscillatorOptions", "level": 4, "title": "OscillatorOptions", "number": "1.26.4" }, { "id": "dictionary-oscillatoroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-oscillatoroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-oscillatoroptions-members", "level": 5, "title": "Dictionary OscillatorOptions Members", "number": "1.26.4.1" }, { "id": "basic-waveform-phase", - "href": "https://www.w3.org/TR/webaudio/#basic-waveform-phase", + "href": "https://www.w3.org/TR/webaudio-1.0/#basic-waveform-phase", "level": 4, "title": "Basic Waveform Phase", "number": "1.26.5" }, { "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode", "level": 3, "title": "The PannerNode Interface", "number": "1.27" }, { "id": "PannerNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode-constructors", "level": 4, "title": "Constructors", "number": "1.27.1" }, { "id": "PannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode-attributes", "level": 4, "title": "Attributes", "number": "1.27.2" }, { "id": "PannerNode-methods", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerNode-methods", "level": 4, "title": "Methods", "number": "1.27.3" }, { "id": "PannerOptions", - "href": "https://www.w3.org/TR/webaudio/#PannerOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#PannerOptions", "level": 4, "title": "PannerOptions", "number": "1.27.4" }, { "id": "dictionary-pannernode-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-pannernode-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-pannernode-members", "level": 5, "title": "Dictionary PannerOptions Members", "number": "1.27.4.1" }, { "id": "panner-channel-limitations", - "href": "https://www.w3.org/TR/webaudio/#panner-channel-limitations", + "href": "https://www.w3.org/TR/webaudio-1.0/#panner-channel-limitations", "level": 4, "title": "Channel Limitations", "number": "1.27.5" }, { "id": "PeriodicWave", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWave", + "href": "https://www.w3.org/TR/webaudio-1.0/#PeriodicWave", "level": 3, "title": "The PeriodicWave Interface", "number": "1.28" }, { "id": "PeriodicWave-constructors", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWave-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#PeriodicWave-constructors", "level": 4, "title": "Constructors", "number": "1.28.1" }, { "id": "PeriodicWaveConstraints", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWaveConstraints", + "href": "https://www.w3.org/TR/webaudio-1.0/#PeriodicWaveConstraints", "level": 4, "title": "PeriodicWaveConstraints", "number": "1.28.2" }, { "id": "dictionary-periodicwaveconstraints-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-periodicwaveconstraints-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-periodicwaveconstraints-members", "level": 5, "title": "Dictionary PeriodicWaveConstraints Members", "number": "1.28.2.1" }, { "id": "PeriodicWaveOptions", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWaveOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#PeriodicWaveOptions", "level": 4, "title": "PeriodicWaveOptions", "number": "1.28.3" }, { "id": "dictionary-periodicwaveoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-periodicwaveoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-periodicwaveoptions-members", "level": 5, "title": "Dictionary PeriodicWaveOptions Members", "number": "1.28.3.1" }, { "id": "waveform-generation", - "href": "https://www.w3.org/TR/webaudio/#waveform-generation", + "href": "https://www.w3.org/TR/webaudio-1.0/#waveform-generation", "level": 4, "title": "Waveform Generation", "number": "1.28.4" }, { "id": "waveform-normalization", - "href": "https://www.w3.org/TR/webaudio/#waveform-normalization", + "href": "https://www.w3.org/TR/webaudio-1.0/#waveform-normalization", "level": 4, "title": "Waveform Normalization", "number": "1.28.5" }, { "id": "oscillator-coefficients", - "href": "https://www.w3.org/TR/webaudio/#oscillator-coefficients", + "href": "https://www.w3.org/TR/webaudio-1.0/#oscillator-coefficients", "level": 4, "title": "Oscillator Coefficients", "number": "1.28.6" }, { "id": "ScriptProcessorNode", - "href": "https://www.w3.org/TR/webaudio/#ScriptProcessorNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#ScriptProcessorNode", "level": 3, "title": "The ScriptProcessorNode Interface - DEPRECATED", "number": "1.29" }, { "id": "ScriptProcessorNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#ScriptProcessorNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#ScriptProcessorNode-attributes", "level": 4, "title": "Attributes", "number": "1.29.1" }, { - "id": "stereopannernode", - "href": "https://www.w3.org/TR/webaudio/#stereopannernode", + "id": "StereoPannerNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#StereoPannerNode", "level": 3, "title": "The StereoPannerNode Interface", "number": "1.30" }, { "id": "StereoPannerNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#StereoPannerNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#StereoPannerNode-constructors", "level": 4, "title": "Constructors", "number": "1.30.1" }, { "id": "StereoPannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#StereoPannerNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#StereoPannerNode-attributes", "level": 4, "title": "Attributes", "number": "1.30.2" }, { "id": "StereoPannerOptions", - "href": "https://www.w3.org/TR/webaudio/#StereoPannerOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#StereoPannerOptions", "level": 4, "title": "StereoPannerOptions", "number": "1.30.3" }, { "id": "dictionary-stereopanneroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-stereopanneroptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-stereopanneroptions-members", "level": 5, "title": "Dictionary StereoPannerOptions Members", "number": "1.30.3.1" }, { "id": "StereoPanner-channel-limitations", - "href": "https://www.w3.org/TR/webaudio/#StereoPanner-channel-limitations", + "href": "https://www.w3.org/TR/webaudio-1.0/#StereoPanner-channel-limitations", "level": 4, "title": "Channel Limitations", "number": "1.30.4" }, { "id": "WaveShaperNode", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#WaveShaperNode", "level": 3, "title": "The WaveShaperNode Interface", "number": "1.31" }, { "id": "WaveShaperNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#WaveShaperNode-constructors", "level": 4, "title": "Constructors", "number": "1.31.1" }, { "id": "WaveShaperNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#WaveShaperNode-attributes", "level": 4, "title": "Attributes", "number": "1.31.2" }, { "id": "WaveShaperOptions", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#WaveShaperOptions", "level": 4, "title": "WaveShaperOptions", "number": "1.31.3" }, { "id": "dictionary-waveshaperoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-waveshaperoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-waveshaperoptions-members", "level": 5, "title": "Dictionary WaveShaperOptions Members", "number": "1.31.3.1" }, { "id": "AudioWorklet", - "href": "https://www.w3.org/TR/webaudio/#AudioWorklet", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorklet", "level": 3, "title": "The AudioWorklet Interface", "number": "1.32" }, - { - "id": "AudioWorklet-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioWorklet-attributes", - "level": 4, - "title": "Attributes", - "number": "1.32.1" - }, { "id": "AudioWorklet-concepts", - "href": "https://www.w3.org/TR/webaudio/#AudioWorklet-concepts", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorklet-concepts", "level": 4, "title": "Concepts", - "number": "1.32.2" + "number": "1.32.1" }, { "id": "AudioWorkletGlobalScope", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletGlobalScope", "level": 4, "title": "The AudioWorkletGlobalScope Interface", - "number": "1.32.3" + "number": "1.32.2" }, { "id": "AudioWorkletGlobalScope-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletGlobalScope-attributes", "level": 5, "title": "Attributes", - "number": "1.32.3.1" + "number": "1.32.2.1" }, { "id": "AudioWorkletGlobalScope-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope-methods", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletGlobalScope-methods", "level": 5, "title": "Methods", - "number": "1.32.3.2" + "number": "1.32.2.2" }, { "id": "AudioWorkletProcessor-instantiation", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor-instantiation", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletProcessor-instantiation", "level": 5, "title": "The instantiation of AudioWorkletProcessor", - "number": "1.32.3.3" + "number": "1.32.2.3" }, { "id": "AudioWorkletNode", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletNode", "level": 4, "title": "The AudioWorkletNode Interface", - "number": "1.32.4" + "number": "1.32.3" }, { "id": "AudioWorkletNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletNode-constructors", "level": 5, "title": "Constructors", - "number": "1.32.4.1" + "number": "1.32.3.1" }, { "id": "AudioWorkletNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletNode-attributes", "level": 5, "title": "Attributes", - "number": "1.32.4.2" + "number": "1.32.3.2" }, { "id": "AudioWorkletNodeOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNodeOptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletNodeOptions", "level": 5, "title": "AudioWorkletNodeOptions", - "number": "1.32.4.3" + "number": "1.32.3.3" }, { "id": "dictionary-audioworkletnodeoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audioworkletnodeoptions-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audioworkletnodeoptions-members", "level": 6, "title": "Dictionary AudioWorkletNodeOptions Members", - "number": "1.32.4.3.1" + "number": "1.32.3.3.1" }, { "id": "configuring-channels-with-audioworkletnodeoptions", - "href": "https://www.w3.org/TR/webaudio/#configuring-channels-with-audioworkletnodeoptions", + "href": "https://www.w3.org/TR/webaudio-1.0/#configuring-channels-with-audioworkletnodeoptions", "level": 6, "title": "Configuring Channels with AudioWorkletNodeOptions", - "number": "1.32.4.3.2" + "number": "1.32.3.3.2" }, { "id": "AudioWorkletProcessor", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletProcessor", "level": 4, "title": "The AudioWorkletProcessor Interface", - "number": "1.32.5" + "number": "1.32.4" }, { "id": "AudioWorketProcessor-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioWorketProcessor-constructors", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorketProcessor-constructors", "level": 5, "title": "Constructors", - "number": "1.32.5.1" + "number": "1.32.4.1" }, { "id": "AudioWorkletProcessor-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor-attributes", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletProcessor-attributes", "level": 5, "title": "Attributes", - "number": "1.32.5.2" + "number": "1.32.4.2" }, { "id": "callback-audioworketprocess-callback", - "href": "https://www.w3.org/TR/webaudio/#callback-audioworketprocess-callback", + "href": "https://www.w3.org/TR/webaudio-1.0/#callback-audioworketprocess-callback", "level": 5, "title": "Callback AudioWorkletProcessCallback", - "number": "1.32.5.3" + "number": "1.32.4.3" }, { "id": "audioworkletprocess-callback-parameters", - "href": "https://www.w3.org/TR/webaudio/#audioworkletprocess-callback-parameters", + "href": "https://www.w3.org/TR/webaudio-1.0/#audioworkletprocess-callback-parameters", "level": 6, "title": "Callback AudioWorkletProcessCallback Parameters", - "number": "1.32.5.3.1" + "number": "1.32.4.3.1" }, { "id": "AudioParamDescriptor", - "href": "https://www.w3.org/TR/webaudio/#AudioParamDescriptor", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioParamDescriptor", "level": 5, "title": "AudioParamDescriptor", - "number": "1.32.5.4" + "number": "1.32.4.4" }, { "id": "dictionary-audioparamdescriptor-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audioparamdescriptor-members", + "href": "https://www.w3.org/TR/webaudio-1.0/#dictionary-audioparamdescriptor-members", "level": 6, "title": "Dictionary AudioParamDescriptor Members", - "number": "1.32.5.4.1" + "number": "1.32.4.4.1" }, { "id": "AudioWorklet-Sequence", - "href": "https://www.w3.org/TR/webaudio/#AudioWorklet-Sequence", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorklet-Sequence", "level": 4, "title": "AudioWorklet Sequence of Events", - "number": "1.32.6" + "number": "1.32.5" }, { "id": "AudioWorklet-Examples", - "href": "https://www.w3.org/TR/webaudio/#AudioWorklet-Examples", + "href": "https://www.w3.org/TR/webaudio-1.0/#AudioWorklet-Examples", "level": 4, "title": "AudioWorklet Examples", - "number": "1.32.7" + "number": "1.32.6" }, { "id": "the-bitcrusher-node", - "href": "https://www.w3.org/TR/webaudio/#the-bitcrusher-node", + "href": "https://www.w3.org/TR/webaudio-1.0/#the-bitcrusher-node", "level": 5, "title": "The BitCrusher Node", - "number": "1.32.7.1" + "number": "1.32.6.1" }, { "id": "vu-meter-mode", - "href": "https://www.w3.org/TR/webaudio/#vu-meter-mode", + "href": "https://www.w3.org/TR/webaudio-1.0/#vu-meter-mode", "level": 5, "title": "VU Meter Node", - "number": "1.32.7.2" + "number": "1.32.6.2" }, { "id": "processing-model", - "href": "https://www.w3.org/TR/webaudio/#processing-model", + "href": "https://www.w3.org/TR/webaudio-1.0/#processing-model", "level": 2, "title": "Processing model", "number": "2" }, { "id": "processing-model-background", - "href": "https://www.w3.org/TR/webaudio/#processing-model-background", + "href": "https://www.w3.org/TR/webaudio-1.0/#processing-model-background", "level": 3, "title": "Background", "number": "2.1" }, { "id": "control-thread-and-rendering-thread", - "href": "https://www.w3.org/TR/webaudio/#control-thread-and-rendering-thread", + "href": "https://www.w3.org/TR/webaudio-1.0/#control-thread-and-rendering-thread", "level": 3, "title": "Control Thread and Rendering Thread", "number": "2.2" }, { "id": "asynchronous-operations", - "href": "https://www.w3.org/TR/webaudio/#asynchronous-operations", + "href": "https://www.w3.org/TR/webaudio-1.0/#asynchronous-operations", "level": 3, "title": "Asynchronous Operations", "number": "2.3" }, { "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", + "href": "https://www.w3.org/TR/webaudio-1.0/#rendering-loop", "level": 3, "title": "Rendering an Audio Graph", "number": "2.4" }, - { - "id": "error-handling-on-a-running-audio-context", - "href": "https://www.w3.org/TR/webaudio/#error-handling-on-a-running-audio-context", - "level": 3, - "title": "Handling an error from System Audio Resources on the AudioContext", - "number": "2.5" - }, { "id": "unloading-a-document", - "href": "https://www.w3.org/TR/webaudio/#unloading-a-document", + "href": "https://www.w3.org/TR/webaudio-1.0/#unloading-a-document", "level": 3, "title": "Unloading a document", - "number": "2.6" + "number": "2.5" }, { "id": "DynamicLifetime", - "href": "https://www.w3.org/TR/webaudio/#DynamicLifetime", + "href": "https://www.w3.org/TR/webaudio-1.0/#DynamicLifetime", "level": 2, "title": "Dynamic Lifetime", "number": "3" }, { "id": "dynamic-lifetime-background", - "href": "https://www.w3.org/TR/webaudio/#dynamic-lifetime-background", + "href": "https://www.w3.org/TR/webaudio-1.0/#dynamic-lifetime-background", "level": 3, "title": "Background", "number": "3.1" }, { "id": "dynamic-lifetime-example", - "href": "https://www.w3.org/TR/webaudio/#dynamic-lifetime-example", + "href": "https://www.w3.org/TR/webaudio-1.0/#dynamic-lifetime-example", "level": 3, "title": "Example", "number": "3.2" }, { "id": "channel-up-mixing-and-down-mixing", - "href": "https://www.w3.org/TR/webaudio/#channel-up-mixing-and-down-mixing", + "href": "https://www.w3.org/TR/webaudio-1.0/#channel-up-mixing-and-down-mixing", "level": 2, "title": "Channel Up-Mixing and Down-Mixing", "number": "4" }, { "id": "ChannelLayouts", - "href": "https://www.w3.org/TR/webaudio/#ChannelLayouts", + "href": "https://www.w3.org/TR/webaudio-1.0/#ChannelLayouts", "level": 3, "title": "Speaker Channel Layouts", "number": "4.1" }, { "id": "ChannelOrdering", - "href": "https://www.w3.org/TR/webaudio/#ChannelOrdering", + "href": "https://www.w3.org/TR/webaudio-1.0/#ChannelOrdering", "level": 3, "title": "Channel Ordering", "number": "4.2" }, { "id": "channels-tail-time", - "href": "https://www.w3.org/TR/webaudio/#channels-tail-time", + "href": "https://www.w3.org/TR/webaudio-1.0/#channels-tail-time", "level": 3, "title": "Implication of tail-time on input and output channel count", "number": "4.3" }, { "id": "UpMix-sub", - "href": "https://www.w3.org/TR/webaudio/#UpMix-sub", + "href": "https://www.w3.org/TR/webaudio-1.0/#UpMix-sub", "level": 3, "title": "Up Mixing Speaker Layouts", "number": "4.4" }, { "id": "down-mix", - "href": "https://www.w3.org/TR/webaudio/#down-mix", + "href": "https://www.w3.org/TR/webaudio-1.0/#down-mix", "level": 3, "title": "Down Mixing Speaker Layouts", "number": "4.5" }, { "id": "ChannelRules-section", - "href": "https://www.w3.org/TR/webaudio/#ChannelRules-section", + "href": "https://www.w3.org/TR/webaudio-1.0/#ChannelRules-section", "level": 3, "title": "Channel Rules Examples", "number": "4.6" }, { "id": "audio-signal-values", - "href": "https://www.w3.org/TR/webaudio/#audio-signal-values", + "href": "https://www.w3.org/TR/webaudio-1.0/#audio-signal-values", "level": 2, "title": "Audio Signal Values", "number": "5" }, { "id": "audio-sample-format", - "href": "https://www.w3.org/TR/webaudio/#audio-sample-format", + "href": "https://www.w3.org/TR/webaudio-1.0/#audio-sample-format", "level": 3, "title": "Audio sample format", "number": "5.1" }, { "id": "audio-values-rendering", - "href": "https://www.w3.org/TR/webaudio/#audio-values-rendering", + "href": "https://www.w3.org/TR/webaudio-1.0/#audio-values-rendering", "level": 3, "title": "Rendering", "number": "5.2" }, { "id": "Spatialization", - "href": "https://www.w3.org/TR/webaudio/#Spatialization", + "href": "https://www.w3.org/TR/webaudio-1.0/#Spatialization", "level": 2, "title": "Spatialization/Panning", "number": "6" }, { "id": "Spatialization-background", - "href": "https://www.w3.org/TR/webaudio/#Spatialization-background", + "href": "https://www.w3.org/TR/webaudio-1.0/#Spatialization-background", "level": 3, "title": "Background", "number": "6.1" }, { "id": "azimuth-elevation", - "href": "https://www.w3.org/TR/webaudio/#azimuth-elevation", + "href": "https://www.w3.org/TR/webaudio-1.0/#azimuth-elevation", "level": 3, "title": "Azimuth and Elevation", "number": "6.2" }, { "id": "Spatialization-panning-algorithm", - "href": "https://www.w3.org/TR/webaudio/#Spatialization-panning-algorithm", + "href": "https://www.w3.org/TR/webaudio-1.0/#Spatialization-panning-algorithm", "level": 3, "title": "Panning Algorithm", "number": "6.3" }, { "id": "Spatialization-equal-power-panning", - "href": "https://www.w3.org/TR/webaudio/#Spatialization-equal-power-panning", + "href": "https://www.w3.org/TR/webaudio-1.0/#Spatialization-equal-power-panning", "level": 4, "title": "PannerNode \"equalpower\" Panning", "number": "6.3.1" }, { "id": "Spatialization-hrtf-panning", - "href": "https://www.w3.org/TR/webaudio/#Spatialization-hrtf-panning", + "href": "https://www.w3.org/TR/webaudio-1.0/#Spatialization-hrtf-panning", "level": 4, "title": "PannerNode \"HRTF\" Panning (Stereo Only)", "number": "6.3.2" }, { "id": "stereopanner-algorithm", - "href": "https://www.w3.org/TR/webaudio/#stereopanner-algorithm", + "href": "https://www.w3.org/TR/webaudio-1.0/#stereopanner-algorithm", "level": 4, "title": "StereoPannerNode Panning", "number": "6.3.3" }, { "id": "Spatialization-distance-effects", - "href": "https://www.w3.org/TR/webaudio/#Spatialization-distance-effects", + "href": "https://www.w3.org/TR/webaudio-1.0/#Spatialization-distance-effects", "level": 3, "title": "Distance Effects", "number": "6.4" }, { "id": "Spatialization-sound-cones", - "href": "https://www.w3.org/TR/webaudio/#Spatialization-sound-cones", + "href": "https://www.w3.org/TR/webaudio-1.0/#Spatialization-sound-cones", "level": 3, "title": "Sound Cones", "number": "6.5" }, { "id": "Performance", - "href": "https://www.w3.org/TR/webaudio/#Performance", + "href": "https://www.w3.org/TR/webaudio-1.0/#Performance", "level": 2, "title": "Performance Considerations", "number": "7" }, { "id": "latency", - "href": "https://www.w3.org/TR/webaudio/#latency", + "href": "https://www.w3.org/TR/webaudio-1.0/#latency", "level": 3, "title": "Latency", "number": "7.1" }, { "id": "audio-buffer-copying", - "href": "https://www.w3.org/TR/webaudio/#audio-buffer-copying", + "href": "https://www.w3.org/TR/webaudio-1.0/#audio-buffer-copying", "level": 3, "title": "Audio Buffer Copying", "number": "7.2" }, { "id": "audioparam-transitions", - "href": "https://www.w3.org/TR/webaudio/#audioparam-transitions", + "href": "https://www.w3.org/TR/webaudio-1.0/#audioparam-transitions", "level": 3, "title": "AudioParam Transitions", "number": "7.3" }, { "id": "audio-glitching", - "href": "https://www.w3.org/TR/webaudio/#audio-glitching", + "href": "https://www.w3.org/TR/webaudio-1.0/#audio-glitching", "level": 3, "title": "Audio Glitching", "number": "7.4" }, { "id": "priv-sec", - "href": "https://www.w3.org/TR/webaudio/#priv-sec", + "href": "https://www.w3.org/TR/webaudio-1.0/#priv-sec", "level": 2, "title": "Security and Privacy Considerations", "number": "8" }, { "id": "requirements", - "href": "https://www.w3.org/TR/webaudio/#requirements", + "href": "https://www.w3.org/TR/webaudio-1.0/#requirements", "level": 2, "title": "Requirements and Use Cases", "number": "9" }, { "id": "common-definitions", - "href": "https://www.w3.org/TR/webaudio/#common-definitions", + "href": "https://www.w3.org/TR/webaudio-1.0/#common-definitions", "level": 2, "title": "10. Common Definitions for Specification Code" }, { "id": "changes", - "href": "https://www.w3.org/TR/webaudio/#changes", + "href": "https://www.w3.org/TR/webaudio-1.0/#changes", "level": 2, "title": "11. Change Log" }, + { + "id": "changes-2021-05-06", + "href": "https://www.w3.org/TR/webaudio-1.0/#changes-2021-05-06", + "level": 3, + "title": "Since Proposed Recommendation of 6 May 2021", + "number": "11.1" + }, + { + "id": "changes-2021-01-14", + "href": "https://www.w3.org/TR/webaudio-1.0/#changes-2021-01-14", + "level": 3, + "title": "Since Candidate Recommendation Snapshot of 14 January 2021", + "number": "11.2" + }, + { + "id": "changes-2020-06-11", + "href": "https://www.w3.org/TR/webaudio-1.0/#changes-2020-06-11", + "level": 3, + "title": "Since Candidate Recommendation of 11 June 2020", + "number": "11.3" + }, + { + "id": "changestart1", + "href": "https://www.w3.org/TR/webaudio-1.0/#changestart1", + "level": 3, + "title": "Since Candidate Recommendation of 18 September 2018", + "number": "11.4" + }, + { + "id": "changestart2", + "href": "https://www.w3.org/TR/webaudio-1.0/#changestart2", + "level": 3, + "title": "Since Working Draft of 19 June 2018", + "number": "11.5" + }, + { + "id": "changestart3", + "href": "https://www.w3.org/TR/webaudio-1.0/#changestart3", + "level": 3, + "title": "Since Working Draft of 08 December 2015", + "number": "11.6" + }, { "id": "acks", - "href": "https://www.w3.org/TR/webaudio/#acks", + "href": "https://www.w3.org/TR/webaudio-1.0/#acks", "level": 2, "title": "12. Acknowledgements" }, { - "id": "w3c-conformance", - "href": "https://www.w3.org/TR/webaudio/#w3c-conformance", + "id": "conformance", + "href": "https://www.w3.org/TR/webaudio-1.0/#conformance", "level": 2, "title": "Conformance" }, { - "id": "w3c-conventions", - "href": "https://www.w3.org/TR/webaudio/#w3c-conventions", + "id": "conventions", + "href": "https://www.w3.org/TR/webaudio-1.0/#conventions", "level": 3, "title": "Document conventions" }, { - "id": "w3c-conformant-algorithms", - "href": "https://www.w3.org/TR/webaudio/#w3c-conformant-algorithms", + "id": "conformant-algorithms", + "href": "https://www.w3.org/TR/webaudio-1.0/#conformant-algorithms", "level": 3, "title": "Conformant Algorithms" }, + { + "id": "conformance-classes", + "href": "https://www.w3.org/TR/webaudio-1.0/#conformance-classes", + "level": 3, + "title": "Conformance Classes" + }, { "id": "index", - "href": "https://www.w3.org/TR/webaudio/#index", + "href": "https://www.w3.org/TR/webaudio-1.0/#index", "level": 2, "title": "Index" }, { "id": "index-defined-here", - "href": "https://www.w3.org/TR/webaudio/#index-defined-here", + "href": "https://www.w3.org/TR/webaudio-1.0/#index-defined-here", "level": 3, "title": "Terms defined by this specification" }, { "id": "index-defined-elsewhere", - "href": "https://www.w3.org/TR/webaudio/#index-defined-elsewhere", + "href": "https://www.w3.org/TR/webaudio-1.0/#index-defined-elsewhere", "level": 3, "title": "Terms defined by reference" }, { "id": "references", - "href": "https://www.w3.org/TR/webaudio/#references", + "href": "https://www.w3.org/TR/webaudio-1.0/#references", "level": 2, "title": "References" }, { "id": "normative", - "href": "https://www.w3.org/TR/webaudio/#normative", + "href": "https://www.w3.org/TR/webaudio-1.0/#normative", "level": 3, "title": "Normative References" }, { "id": "informative", - "href": "https://www.w3.org/TR/webaudio/#informative", + "href": "https://www.w3.org/TR/webaudio-1.0/#informative", "level": 3, "title": "Informative References" }, { "id": "idl-index", - "href": "https://www.w3.org/TR/webaudio/#idl-index", + "href": "https://www.w3.org/TR/webaudio-1.0/#idl-index", "level": 2, "title": "IDL Index" } diff --git a/tr/headings/webdriver-bidi.json b/tr/headings/webdriver-bidi.json new file mode 100644 index 000000000000..9da5ad911aa5 --- /dev/null +++ b/tr/headings/webdriver-bidi.json @@ -0,0 +1,1355 @@ +{ + "spec": { + "title": "WebDriver BiDi", + "url": "https://www.w3.org/TR/webdriver-bidi/" + }, + "headings": [ + { + "id": "title", + "href": "https://www.w3.org/TR/webdriver-bidi/#title", + "level": 1, + "title": "WebDriver BiDi" + }, + { + "id": "abstract", + "href": "https://www.w3.org/TR/webdriver-bidi/#abstract", + "level": 2, + "title": "Abstract" + }, + { + "id": "sotd", + "href": "https://www.w3.org/TR/webdriver-bidi/#sotd", + "level": 2, + "title": "Status of this document" + }, + { + "id": "toc", + "href": "https://www.w3.org/TR/webdriver-bidi/#toc", + "level": 2, + "title": "Table of Contents" + }, + { + "id": "intro", + "href": "https://www.w3.org/TR/webdriver-bidi/#intro", + "level": 2, + "title": "Introduction", + "number": "1" + }, + { + "id": "infrastructure", + "href": "https://www.w3.org/TR/webdriver-bidi/#infrastructure", + "level": 2, + "title": "Infrastructure", + "number": "2" + }, + { + "id": "protocol", + "href": "https://www.w3.org/TR/webdriver-bidi/#protocol", + "level": 2, + "title": "Protocol", + "number": "3" + }, + { + "id": "protocol-definition", + "href": "https://www.w3.org/TR/webdriver-bidi/#protocol-definition", + "level": 3, + "title": "Definition", + "number": "3.1" + }, + { + "id": "session", + "href": "https://www.w3.org/TR/webdriver-bidi/#session", + "level": 3, + "title": "Session", + "number": "3.2" + }, + { + "id": "protocol-modules", + "href": "https://www.w3.org/TR/webdriver-bidi/#protocol-modules", + "level": 3, + "title": "Modules", + "number": "3.3" + }, + { + "id": "commands", + "href": "https://www.w3.org/TR/webdriver-bidi/#commands", + "level": 3, + "title": "Commands", + "number": "3.4" + }, + { + "id": "errors", + "href": "https://www.w3.org/TR/webdriver-bidi/#errors", + "level": 3, + "title": "Errors", + "number": "3.5" + }, + { + "id": "events", + "href": "https://www.w3.org/TR/webdriver-bidi/#events", + "level": 3, + "title": "Events", + "number": "3.6" + }, + { + "id": "transport", + "href": "https://www.w3.org/TR/webdriver-bidi/#transport", + "level": 2, + "title": "Transport", + "number": "4" + }, + { + "id": "establishing", + "href": "https://www.w3.org/TR/webdriver-bidi/#establishing", + "level": 3, + "title": "Establishing a Connection", + "number": "4.1" + }, + { + "id": "sandbox", + "href": "https://www.w3.org/TR/webdriver-bidi/#sandbox", + "level": 2, + "title": "Sandboxed Script Execution", + "number": "5" + }, + { + "id": "sandbox-realm", + "href": "https://www.w3.org/TR/webdriver-bidi/#sandbox-realm", + "level": 3, + "title": "Sandbox Realms", + "number": "5.1" + }, + { + "id": "sandbox-proxy", + "href": "https://www.w3.org/TR/webdriver-bidi/#sandbox-proxy", + "level": 3, + "title": "Sandbox Proxy Objects", + "number": "5.2" + }, + { + "id": "sandbox-sandboxwindowproxy", + "href": "https://www.w3.org/TR/webdriver-bidi/#sandbox-sandboxwindowproxy", + "level": 3, + "title": "SandboxWindowProxy", + "number": "5.3" + }, + { + "id": "user-contexts", + "href": "https://www.w3.org/TR/webdriver-bidi/#user-contexts", + "level": 2, + "title": "User Contexts", + "number": "6" + }, + { + "id": "modules", + "href": "https://www.w3.org/TR/webdriver-bidi/#modules", + "level": 2, + "title": "Modules", + "number": "7" + }, + { + "id": "module-session", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-session", + "level": 3, + "title": "The session Module", + "number": "7.1" + }, + { + "id": "module-session-definition", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-session-definition", + "level": 4, + "title": "Definition", + "number": "7.1.1" + }, + { + "id": "module-session-types", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-session-types", + "level": 4, + "title": "Types", + "number": "7.1.2" + }, + { + "id": "type-session-CapabilitiesRequest", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-session-CapabilitiesRequest", + "level": 5, + "title": "The session.CapabilitiesRequest Type", + "number": "7.1.2.1" + }, + { + "id": "type-session-CapabilityRequest", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-session-CapabilityRequest", + "level": 5, + "title": "The session.CapabilityRequest Type", + "number": "7.1.2.2" + }, + { + "id": "type-session-ProxyConfiguration", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-session-ProxyConfiguration", + "level": 5, + "title": "The session.ProxyConfiguration Type", + "number": "7.1.2.3" + }, + { + "id": "type-session-UserPromptHandler", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-session-UserPromptHandler", + "level": 5, + "title": "The session.UserPromptHandler Type", + "number": "7.1.2.4" + }, + { + "id": "type-session-UserPromptHandlerType", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-session-UserPromptHandlerType", + "level": 5, + "title": "The session.UserPromptHandlerType Type", + "number": "7.1.2.5" + }, + { + "id": "type-session-SubscriptionRequest", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-session-SubscriptionRequest", + "level": 5, + "title": "The session.SubscriptionRequest Type", + "number": "7.1.2.6" + }, + { + "id": "module-session-commands", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-session-commands", + "level": 4, + "title": "Commands", + "number": "7.1.3" + }, + { + "id": "command-session-status", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-session-status", + "level": 5, + "title": "The session.status Command", + "number": "7.1.3.1" + }, + { + "id": "command-session-new", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-session-new", + "level": 5, + "title": "The session.new Command", + "number": "7.1.3.2" + }, + { + "id": "command-session-end", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-session-end", + "level": 5, + "title": "The session.end Command", + "number": "7.1.3.3" + }, + { + "id": "command-session-subscribe", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-session-subscribe", + "level": 5, + "title": "The session.subscribe Command", + "number": "7.1.3.4" + }, + { + "id": "command-session-unsubscribe", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-session-unsubscribe", + "level": 5, + "title": "The session.unsubscribe Command", + "number": "7.1.3.5" + }, + { + "id": "module-browser", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-browser", + "level": 3, + "title": "The browser Module", + "number": "7.2" + }, + { + "id": "module-browser-definition", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-browser-definition", + "level": 4, + "title": "Definition", + "number": "7.2.1" + }, + { + "id": "module-browser-window", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-browser-window", + "level": 4, + "title": "Windows", + "number": "7.2.2" + }, + { + "id": "module-browser-types", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-browser-types", + "level": 4, + "title": "Types", + "number": "7.2.3" + }, + { + "id": "type-browser-ClientWindow", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-browser-ClientWindow", + "level": 5, + "title": "The browser.ClientWindow Type", + "number": "7.2.3.1" + }, + { + "id": "type-browser-ClientWindowInfo", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-browser-ClientWindowInfo", + "level": 5, + "title": "The browser.ClientWindowInfo Type", + "number": "7.2.3.2" + }, + { + "id": "type-browser-UserContext", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-browser-UserContext", + "level": 5, + "title": "The browser.UserContext Type", + "number": "7.2.3.3" + }, + { + "id": "type-browser-UserContextInfo", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-browser-UserContextInfo", + "level": 5, + "title": "The browser.UserContextInfo Type", + "number": "7.2.3.4" + }, + { + "id": "module-browser-commands", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-browser-commands", + "level": 4, + "title": "Commands", + "number": "7.2.4" + }, + { + "id": "command-browser-close", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browser-close", + "level": 5, + "title": "The browser.close Command", + "number": "7.2.4.1" + }, + { + "id": "command-browser-createUserContext", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browser-createUserContext", + "level": 5, + "title": "The browser.createUserContext Command", + "number": "7.2.4.2" + }, + { + "id": "command-browser-getClientWindows", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browser-getClientWindows", + "level": 5, + "title": "The browser.getClientWindows Command", + "number": "7.2.4.3" + }, + { + "id": "command-browser-getUserContexts", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browser-getUserContexts", + "level": 5, + "title": "The browser.getUserContexts Command", + "number": "7.2.4.4" + }, + { + "id": "command-browser-removeUserContext", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browser-removeUserContext", + "level": 5, + "title": "The browser.removeUserContext Command", + "number": "7.2.4.5" + }, + { + "id": "command-browser-setClientWindowState", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browser-setClientWindowState", + "level": 5, + "title": "The browser.setClientWindowState Command", + "number": "7.2.4.6" + }, + { + "id": "module-browsingContext", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-browsingContext", + "level": 3, + "title": "The browsingContext Module", + "number": "7.3" + }, + { + "id": "module-browsingContext-definition", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-browsingContext-definition", + "level": 4, + "title": "Definition", + "number": "7.3.1" + }, + { + "id": "module-browsingcontext-types", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-browsingcontext-types", + "level": 4, + "title": "Types", + "number": "7.3.2" + }, + { + "id": "type-browsingContext-Browsingcontext", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-browsingContext-Browsingcontext", + "level": 5, + "title": "The browsingContext.BrowsingContext Type", + "number": "7.3.2.1" + }, + { + "id": "type-browsingContext-Info", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-browsingContext-Info", + "level": 5, + "title": "The browsingContext.Info Type", + "number": "7.3.2.2" + }, + { + "id": "type-browsingContext-Locator", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-browsingContext-Locator", + "level": 5, + "title": "The browsingContext.Locator Type", + "number": "7.3.2.3" + }, + { + "id": "type-browsingContext-Navigation", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-browsingContext-Navigation", + "level": 5, + "title": "The browsingContext.Navigation Type", + "number": "7.3.2.4" + }, + { + "id": "type-browsingContext-NavigationInfo", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-browsingContext-NavigationInfo", + "level": 5, + "title": "The browsingContext.NavigationInfo Type", + "number": "7.3.2.5" + }, + { + "id": "type-browsingContext-ReadinessState", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-browsingContext-ReadinessState", + "level": 5, + "title": "The browsingContext.ReadinessState Type", + "number": "7.3.2.6" + }, + { + "id": "type-browsingContext-UserPromptType", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-browsingContext-UserPromptType", + "level": 5, + "title": "The browsingContext.UserPromptType Type", + "number": "7.3.2.7" + }, + { + "id": "module-browsingContext-commands", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-browsingContext-commands", + "level": 4, + "title": "Commands", + "number": "7.3.3" + }, + { + "id": "command-browsingContext-activate", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-activate", + "level": 5, + "title": "The browsingContext.activate Command", + "number": "7.3.3.1" + }, + { + "id": "command-browsingContext-captureScreenshot", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-captureScreenshot", + "level": 5, + "title": "The browsingContext.captureScreenshot Command", + "number": "7.3.3.2" + }, + { + "id": "command-browsingContext-close", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-close", + "level": 5, + "title": "The browsingContext.close Command", + "number": "7.3.3.3" + }, + { + "id": "command-browsingContext-create", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-create", + "level": 5, + "title": "The browsingContext.create Command", + "number": "7.3.3.4" + }, + { + "id": "command-browsingContext-getTree", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-getTree", + "level": 5, + "title": "The browsingContext.getTree Command", + "number": "7.3.3.5" + }, + { + "id": "command-browsingContext-handleUserPrompt", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-handleUserPrompt", + "level": 5, + "title": "The browsingContext.handleUserPrompt Command", + "number": "7.3.3.6" + }, + { + "id": "command-browsingContext-locateNodes", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-locateNodes", + "level": 5, + "title": "The browsingContext.locateNodes Command", + "number": "7.3.3.7" + }, + { + "id": "command-browsingContext-navigate", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-navigate", + "level": 5, + "title": "The browsingContext.navigate Command", + "number": "7.3.3.8" + }, + { + "id": "command-browsingContext-print", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-print", + "level": 5, + "title": "The browsingContext.print Command", + "number": "7.3.3.9" + }, + { + "id": "command-browsingContext-reload", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-reload", + "level": 5, + "title": "The browsingContext.reload Command", + "number": "7.3.3.10" + }, + { + "id": "command-browsingContext-setViewport", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-setViewport", + "level": 5, + "title": "The browsingContext.setViewport Command", + "number": "7.3.3.11" + }, + { + "id": "command-browsingContext-traverseHistory", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-traverseHistory", + "level": 5, + "title": "The browsingContext.traverseHistory Command", + "number": "7.3.3.12" + }, + { + "id": "module-contexts-events", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-contexts-events", + "level": 4, + "title": "Events", + "number": "7.3.4" + }, + { + "id": "event-browsingContext-contextCreated", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-contextCreated", + "level": 5, + "title": "The browsingContext.contextCreated Event", + "number": "7.3.4.1" + }, + { + "id": "event-browsingContext-contextDestroyed", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-contextDestroyed", + "level": 5, + "title": "The browsingContext.contextDestroyed Event", + "number": "7.3.4.2" + }, + { + "id": "event-browsingContext-navigationStarted", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-navigationStarted", + "level": 5, + "title": "The browsingContext.navigationStarted Event", + "number": "7.3.4.3" + }, + { + "id": "event-browsingContext-fragmentNavigated", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-fragmentNavigated", + "level": 5, + "title": "The browsingContext.fragmentNavigated Event", + "number": "7.3.4.4" + }, + { + "id": "event-browsingContext-historyUpdated", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-historyUpdated", + "level": 5, + "title": "The browsingContext.historyUpdated Event", + "number": "7.3.4.5" + }, + { + "id": "event-browsingContext-domContentLoaded", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-domContentLoaded", + "level": 5, + "title": "The browsingContext.domContentLoaded Event", + "number": "7.3.4.6" + }, + { + "id": "event-browsingContext-load", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-load", + "level": 5, + "title": "The browsingContext.load Event", + "number": "7.3.4.7" + }, + { + "id": "event-browsingContext-downoadWillBegin", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-downoadWillBegin", + "level": 5, + "title": "The browsingContext.downloadWillBegin Event", + "number": "7.3.4.8" + }, + { + "id": "event-browsingContext-navigationAborted", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-navigationAborted", + "level": 5, + "title": "The browsingContext.navigationAborted Event", + "number": "7.3.4.9" + }, + { + "id": "event-browsingContext-navigationFailed", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-navigationFailed", + "level": 5, + "title": "The browsingContext.navigationFailed Event", + "number": "7.3.4.10" + }, + { + "id": "event-browsingContext-userPromptClosed", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-userPromptClosed", + "level": 5, + "title": "The browsingContext.userPromptClosed Event", + "number": "7.3.4.11" + }, + { + "id": "event-browsingContext-userPromptOpened", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-userPromptOpened", + "level": 5, + "title": "The browsingContext.userPromptOpened Event", + "number": "7.3.4.12" + }, + { + "id": "module-network", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-network", + "level": 3, + "title": "The network Module", + "number": "7.4" + }, + { + "id": "module-network-definition", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-network-definition", + "level": 4, + "title": "Definition", + "number": "7.4.1" + }, + { + "id": "network-intercepts", + "href": "https://www.w3.org/TR/webdriver-bidi/#network-intercepts", + "level": 4, + "title": "Network Intercepts", + "number": "7.4.2" + }, + { + "id": "module-network-types", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-network-types", + "level": 4, + "title": "Types", + "number": "7.4.3" + }, + { + "id": "type-network-AuthChallenge", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-AuthChallenge", + "level": 5, + "title": "The network.AuthChallenge Type", + "number": "7.4.3.1" + }, + { + "id": "type-network-AuthCredentials", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-AuthCredentials", + "level": 5, + "title": "The network.AuthCredentials Type", + "number": "7.4.3.2" + }, + { + "id": "type-network-BaseParameters", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-BaseParameters", + "level": 5, + "title": "The network.BaseParameters Type", + "number": "7.4.3.3" + }, + { + "id": "type-network-BytesValue", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-BytesValue", + "level": 5, + "title": "The network.BytesValue Type", + "number": "7.4.3.4" + }, + { + "id": "type-network-Cookie", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-Cookie", + "level": 5, + "title": "The network.Cookie Type", + "number": "7.4.3.5" + }, + { + "id": "type-network-CookieHeader", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-CookieHeader", + "level": 5, + "title": "The network.CookieHeader Type", + "number": "7.4.3.6" + }, + { + "id": "type-network-FetchTimingInfo", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-FetchTimingInfo", + "level": 5, + "title": "The network.FetchTimingInfo Type", + "number": "7.4.3.7" + }, + { + "id": "type-network-Header", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-Header", + "level": 5, + "title": "The network.Header Type", + "number": "7.4.3.8" + }, + { + "id": "type-network-Initiator", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-Initiator", + "level": 5, + "title": "The network.Initiator Type", + "number": "7.4.3.9" + }, + { + "id": "type-network-Intercept", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-Intercept", + "level": 5, + "title": "The network.Intercept Type", + "number": "7.4.3.10" + }, + { + "id": "type-network-Request", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-Request", + "level": 5, + "title": "The network.Request Type", + "number": "7.4.3.11" + }, + { + "id": "type-network-RequestData", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-RequestData", + "level": 5, + "title": "The network.RequestData Type", + "number": "7.4.3.12" + }, + { + "id": "type-network-ResponseContent", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-ResponseContent", + "level": 5, + "title": "The network.ResponseContent Type", + "number": "7.4.3.13" + }, + { + "id": "type-network-ResponseData", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-ResponseData", + "level": 5, + "title": "The network.ResponseData Type", + "number": "7.4.3.14" + }, + { + "id": "type-network-SetCookieHeader", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-SetCookieHeader", + "level": 5, + "title": "The network.SetCookieHeader Type", + "number": "7.4.3.15" + }, + { + "id": "type-network-UrlPattern", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-network-UrlPattern", + "level": 5, + "title": "The network.UrlPattern Type", + "number": "7.4.3.16" + }, + { + "id": "module-network-commands", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-network-commands", + "level": 4, + "title": "Commands", + "number": "7.4.4" + }, + { + "id": "command-network-addIntercept", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-network-addIntercept", + "level": 5, + "title": "The network.addIntercept Command", + "number": "7.4.4.1" + }, + { + "id": "command-network-continueRequest", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-network-continueRequest", + "level": 5, + "title": "The network.continueRequest Command", + "number": "7.4.4.2" + }, + { + "id": "command-network-continueResponse", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-network-continueResponse", + "level": 5, + "title": "The network.continueResponse Command", + "number": "7.4.4.3" + }, + { + "id": "command-network-continueWithAuth", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-network-continueWithAuth", + "level": 5, + "title": "The network.continueWithAuth Command", + "number": "7.4.4.4" + }, + { + "id": "command-network-failRequest", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-network-failRequest", + "level": 5, + "title": "The network.failRequest Command", + "number": "7.4.4.5" + }, + { + "id": "command-network-provideResponse", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-network-provideResponse", + "level": 5, + "title": "The network.provideResponse Command", + "number": "7.4.4.6" + }, + { + "id": "command-network-removeIntercept", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-network-removeIntercept", + "level": 5, + "title": "The network.removeIntercept Command", + "number": "7.4.4.7" + }, + { + "id": "command-network-setCacheBehavior", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-network-setCacheBehavior", + "level": 5, + "title": "The network.setCacheBehavior Command", + "number": "7.4.4.8" + }, + { + "id": "module-network-event", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-network-event", + "level": 4, + "title": "Events", + "number": "7.4.5" + }, + { + "id": "event-network-authRequired", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-network-authRequired", + "level": 5, + "title": "The network.authRequired Event", + "number": "7.4.5.1" + }, + { + "id": "event-network-beforeSendRequest", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-network-beforeSendRequest", + "level": 5, + "title": "The network.beforeRequestSent Event", + "number": "7.4.5.2" + }, + { + "id": "event-network-fetchError", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-network-fetchError", + "level": 5, + "title": "The network.fetchError Event", + "number": "7.4.5.3" + }, + { + "id": "event-network-responseCompleted", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-network-responseCompleted", + "level": 5, + "title": "The network.responseCompleted Event", + "number": "7.4.5.4" + }, + { + "id": "event-network-responseStarted", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-network-responseStarted", + "level": 5, + "title": "The network.responseStarted Event", + "number": "7.4.5.5" + }, + { + "id": "module-script", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-script", + "level": 3, + "title": "The script Module", + "number": "7.5" + }, + { + "id": "module-script-definition", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-script-definition", + "level": 4, + "title": "Definition", + "number": "7.5.1" + }, + { + "id": "preload-scripts", + "href": "https://www.w3.org/TR/webdriver-bidi/#preload-scripts", + "level": 4, + "title": "Preload Scripts", + "number": "7.5.2" + }, + { + "id": "module-script-types", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-script-types", + "level": 4, + "title": "Types", + "number": "7.5.3" + }, + { + "id": "type-script-Channel", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-Channel", + "level": 5, + "title": "The script.Channel Type", + "number": "7.5.3.1" + }, + { + "id": "type-script-ChannelValue", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-ChannelValue", + "level": 5, + "title": "The script.ChannelValue Type", + "number": "7.5.3.2" + }, + { + "id": "type-script-EvaluateResult", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-EvaluateResult", + "level": 5, + "title": "The script.EvaluateResult Type", + "number": "7.5.3.3" + }, + { + "id": "type-script-ExceptionDetails", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-ExceptionDetails", + "level": 5, + "title": "The script.ExceptionDetails Type", + "number": "7.5.3.4" + }, + { + "id": "type-script-Handle", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-Handle", + "level": 5, + "title": "The script.Handle Type", + "number": "7.5.3.5" + }, + { + "id": "type-script-InternalId", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-InternalId", + "level": 5, + "title": "The script.InternalId Type", + "number": "7.5.3.6" + }, + { + "id": "type-script-LocalValue", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-LocalValue", + "level": 5, + "title": "The script.LocalValue Type", + "number": "7.5.3.7" + }, + { + "id": "type-script-PreloadScript", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-PreloadScript", + "level": 5, + "title": "The script.PreloadScript Type", + "number": "7.5.3.8" + }, + { + "id": "type-script-Realm", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-Realm", + "level": 5, + "title": "The script.Realm Type", + "number": "7.5.3.9" + }, + { + "id": "type-script-PrimitiveProtocolValue", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-PrimitiveProtocolValue", + "level": 5, + "title": "The script.PrimitiveProtocolValue Type", + "number": "7.5.3.10" + }, + { + "id": "type-script-RealmInfo", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-RealmInfo", + "level": 5, + "title": "The script.RealmInfo Type", + "number": "7.5.3.11" + }, + { + "id": "type-script-RealmType", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-RealmType", + "level": 5, + "title": "The script.RealmType Type", + "number": "7.5.3.12" + }, + { + "id": "type-script-RemoteReference", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-RemoteReference", + "level": 5, + "title": "The script.RemoteReference Type", + "number": "7.5.3.13" + }, + { + "id": "type-script-RemoteValue", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-RemoteValue", + "level": 5, + "title": "The script.RemoteValue Type", + "number": "7.5.3.14" + }, + { + "id": "type-script-ResultOwnership", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-ResultOwnership", + "level": 5, + "title": "The script.ResultOwnership Type", + "number": "7.5.3.15" + }, + { + "id": "type-script-SerializationOptions", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-SerializationOptions", + "level": 5, + "title": "The script.SerializationOptions Type", + "number": "7.5.3.16" + }, + { + "id": "type-script-SharedId", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-SharedId", + "level": 5, + "title": "The script.SharedId Type", + "number": "7.5.3.17" + }, + { + "id": "type-script-StackFrame", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-StackFrame", + "level": 5, + "title": "The script.StackFrame Type", + "number": "7.5.3.18" + }, + { + "id": "type-script-StackTrace", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-StackTrace", + "level": 5, + "title": "The script.StackTrace Type", + "number": "7.5.3.19" + }, + { + "id": "type-script-Source", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-Source", + "level": 5, + "title": "The script.Source Type", + "number": "7.5.3.20" + }, + { + "id": "type-script-Target", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-script-Target", + "level": 5, + "title": "The script.Target Type", + "number": "7.5.3.21" + }, + { + "id": "module-script-commands", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-script-commands", + "level": 4, + "title": "Commands", + "number": "7.5.4" + }, + { + "id": "command-script-addPreloadScript", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-script-addPreloadScript", + "level": 5, + "title": "The script.addPreloadScript Command", + "number": "7.5.4.1" + }, + { + "id": "command-script-disown", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-script-disown", + "level": 5, + "title": "The script.disown Command", + "number": "7.5.4.2" + }, + { + "id": "command-script-callFunction", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-script-callFunction", + "level": 5, + "title": "The script.callFunction Command", + "number": "7.5.4.3" + }, + { + "id": "command-script-evaluate", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-script-evaluate", + "level": 5, + "title": "The script.evaluate Command", + "number": "7.5.4.4" + }, + { + "id": "command-script-getRealms", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-script-getRealms", + "level": 5, + "title": "The script.getRealms Command", + "number": "7.5.4.5" + }, + { + "id": "command-script-removePreloadScript", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-script-removePreloadScript", + "level": 5, + "title": "The script.removePreloadScript Command", + "number": "7.5.4.6" + }, + { + "id": "module-script-events", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-script-events", + "level": 4, + "title": "Events", + "number": "7.5.5" + }, + { + "id": "event-script-message", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-script-message", + "level": 5, + "title": "The script.message Event", + "number": "7.5.5.1" + }, + { + "id": "event-script-realmCreated", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-script-realmCreated", + "level": 5, + "title": "The script.realmCreated Event", + "number": "7.5.5.2" + }, + { + "id": "event-script-realmDestroyed", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-script-realmDestroyed", + "level": 5, + "title": "The script.realmDestroyed Event", + "number": "7.5.5.3" + }, + { + "id": "module-storage", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-storage", + "level": 3, + "title": "The storage Module", + "number": "7.6" + }, + { + "id": "module-storage-definition", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-storage-definition", + "level": 4, + "title": "Definition", + "number": "7.6.1" + }, + { + "id": "module-storage-types", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-storage-types", + "level": 4, + "title": "Types", + "number": "7.6.2" + }, + { + "id": "type-storage-PartitionKey", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-storage-PartitionKey", + "level": 5, + "title": "The storage.PartitionKey Type", + "number": "7.6.2.1" + }, + { + "id": "module-storage-commands", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-storage-commands", + "level": 4, + "title": "Commands", + "number": "7.6.3" + }, + { + "id": "command-storage-getCookies", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-storage-getCookies", + "level": 5, + "title": "The storage.getCookies Command", + "number": "7.6.3.1" + }, + { + "id": "command-storage-setCookie", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-storage-setCookie", + "level": 5, + "title": "The storage.setCookie Command", + "number": "7.6.3.2" + }, + { + "id": "command-storage-deleteCookies", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-storage-deleteCookies", + "level": 5, + "title": "The storage.deleteCookies Command", + "number": "7.6.3.3" + }, + { + "id": "module-log", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-log", + "level": 3, + "title": "The log Module", + "number": "7.7" + }, + { + "id": "module-log-definition", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-log-definition", + "level": 4, + "title": "Definition", + "number": "7.7.1" + }, + { + "id": "module-log-types", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-log-types", + "level": 4, + "title": "Types", + "number": "7.7.2" + }, + { + "id": "types-log-logentry", + "href": "https://www.w3.org/TR/webdriver-bidi/#types-log-logentry", + "level": 5, + "title": "log.LogEntry", + "number": "7.7.2.1" + }, + { + "id": "module-log-events", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-log-events", + "level": 4, + "title": "Events", + "number": "7.7.3" + }, + { + "id": "event-log-entryAdded", + "href": "https://www.w3.org/TR/webdriver-bidi/#event-log-entryAdded", + "level": 5, + "title": "The log.entryAdded Event", + "number": "7.7.3.1" + }, + { + "id": "module-input", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-input", + "level": 3, + "title": "The input Module", + "number": "7.8" + }, + { + "id": "module-input-definition", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-input-definition", + "level": 4, + "title": "Definition", + "number": "7.8.1" + }, + { + "id": "module-input-types", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-input-types", + "level": 4, + "title": "Types", + "number": "7.8.2" + }, + { + "id": "type-input-origin", + "href": "https://www.w3.org/TR/webdriver-bidi/#type-input-origin", + "level": 5, + "title": "input.ElementOrigin", + "number": "7.8.2.1" + }, + { + "id": "module-input-commands", + "href": "https://www.w3.org/TR/webdriver-bidi/#module-input-commands", + "level": 4, + "title": "Commands", + "number": "7.8.3" + }, + { + "id": "command-input-performActions", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-input-performActions", + "level": 5, + "title": "The input.performActions Command", + "number": "7.8.3.1" + }, + { + "id": "command-input-releaseActions", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-input-releaseActions", + "level": 5, + "title": "The input.releaseActions Command", + "number": "7.8.3.2" + }, + { + "id": "command-input-setFiles", + "href": "https://www.w3.org/TR/webdriver-bidi/#command-input-setFiles", + "level": 5, + "title": "The input.setFiles Command", + "number": "7.8.3.3" + }, + { + "id": "patches", + "href": "https://www.w3.org/TR/webdriver-bidi/#patches", + "level": 2, + "title": "Patches to Other Specifications", + "number": "8" + }, + { + "id": "patches-html", + "href": "https://www.w3.org/TR/webdriver-bidi/#patches-html", + "level": 3, + "title": "HTML", + "number": "8.1" + }, + { + "id": "patches-console", + "href": "https://www.w3.org/TR/webdriver-bidi/#patches-console", + "level": 3, + "title": "Console", + "number": "8.2" + }, + { + "id": "patchs-css", + "href": "https://www.w3.org/TR/webdriver-bidi/#patchs-css", + "level": 3, + "title": "CSS", + "number": "8.3" + }, + { + "id": "patchs-determine-the-device-pixel-ratio", + "href": "https://www.w3.org/TR/webdriver-bidi/#patchs-determine-the-device-pixel-ratio", + "level": 4, + "title": "Determine the device pixel ratio", + "number": "8.3.1" + }, + { + "id": "appendices", + "href": "https://www.w3.org/TR/webdriver-bidi/#appendices", + "level": 2, + "title": "Appendices", + "number": "9" + }, + { + "id": "external-specifications", + "href": "https://www.w3.org/TR/webdriver-bidi/#external-specifications", + "level": 3, + "title": "External specifications", + "number": "9.1" + }, + { + "id": "index", + "href": "https://www.w3.org/TR/webdriver-bidi/#index", + "level": 2, + "title": "Index" + }, + { + "id": "index-defined-here", + "href": "https://www.w3.org/TR/webdriver-bidi/#index-defined-here", + "level": 3, + "title": "Terms defined by this specification" + }, + { + "id": "index-defined-elsewhere", + "href": "https://www.w3.org/TR/webdriver-bidi/#index-defined-elsewhere", + "level": 3, + "title": "Terms defined by reference" + }, + { + "id": "references", + "href": "https://www.w3.org/TR/webdriver-bidi/#references", + "level": 2, + "title": "References" + }, + { + "id": "normative", + "href": "https://www.w3.org/TR/webdriver-bidi/#normative", + "level": 3, + "title": "Normative References" + }, + { + "id": "informative", + "href": "https://www.w3.org/TR/webdriver-bidi/#informative", + "level": 3, + "title": "Informative References" + }, + { + "id": "issues-index", + "href": "https://www.w3.org/TR/webdriver-bidi/#issues-index", + "level": 2, + "title": "Issues Index" + } + ] +} \ No newline at end of file diff --git a/tr/idl/gpc.idl b/tr/idl/gpc.idl new file mode 100644 index 000000000000..d9b178614703 --- /dev/null +++ b/tr/idl/gpc.idl @@ -0,0 +1,10 @@ +// GENERATED CONTENT - DO NOT EDIT +// Content was automatically extracted by Reffy into webref +// (https://github.com/w3c/webref) +// Source: Global Privacy Control (GPC) (https://www.w3.org/TR/gpc/) + +interface mixin GlobalPrivacyControl { + readonly attribute boolean globalPrivacyControl; +}; +Navigator includes GlobalPrivacyControl; +WorkerNavigator includes GlobalPrivacyControl; diff --git a/tr/idl/vibration.idl b/tr/idl/vibration.idl index d4d9b112ad90..1e0a456177f0 100644 --- a/tr/idl/vibration.idl +++ b/tr/idl/vibration.idl @@ -1,10 +1,10 @@ // GENERATED CONTENT - DO NOT EDIT // Content was automatically extracted by Reffy into webref // (https://github.com/w3c/webref) -// Source: Vibration API (Second Edition) (https://www.w3.org/TR/vibration/) +// Source: Vibration API (https://www.w3.org/TR/vibration/) typedef (unsigned long or sequence) VibratePattern; partial interface Navigator { - boolean vibrate(VibratePattern pattern); + boolean vibrate (VibratePattern pattern); }; diff --git a/tr/ids/gpc.json b/tr/ids/gpc.json new file mode 100644 index 000000000000..35d22f644922 --- /dev/null +++ b/tr/ids/gpc.json @@ -0,0 +1,143 @@ +{ + "spec": { + "title": "Global Privacy Control (GPC)", + "url": "https://www.w3.org/TR/gpc/" + }, + "ids": [ + "https://www.w3.org/TR/gpc/#initialUserConfig", + "https://www.w3.org/TR/gpc/#toc-nav", + "https://www.w3.org/TR/gpc/#toc-jump", + "https://www.w3.org/TR/gpc/#toc-toggle", + "https://www.w3.org/TR/gpc/#title", + "https://www.w3.org/TR/gpc/#w3c-state", + "https://www.w3.org/TR/gpc/#abstract", + "https://www.w3.org/TR/gpc/#sotd", + "https://www.w3.org/TR/gpc/#w3c_process_revision", + "https://www.w3.org/TR/gpc/#toc", + "https://www.w3.org/TR/gpc/#table-of-contents", + "https://www.w3.org/TR/gpc/#introduction", + "https://www.w3.org/TR/gpc/#x1-introduction", + "https://www.w3.org/TR/gpc/#definitions", + "https://www.w3.org/TR/gpc/#x2-definitions", + "https://www.w3.org/TR/gpc/#dfn-do-not-sell-or-share-interaction", + "https://www.w3.org/TR/gpc/#dfn-preference", + "https://www.w3.org/TR/gpc/#ref-for-dfn-preference-1", + "https://www.w3.org/TR/gpc/#ref-for-dfn-do-not-sell-or-share-interaction-1", + "https://www.w3.org/TR/gpc/#expressing-a-do-not-sell-or-share-preference", + "https://www.w3.org/TR/gpc/#x3-expressing-a-do-not-sell-or-share-preference", + "https://www.w3.org/TR/gpc/#expression-format", + "https://www.w3.org/TR/gpc/#x3-1-expression-format", + "https://www.w3.org/TR/gpc/#ref-for-dfn-preference-2", + "https://www.w3.org/TR/gpc/#ref-for-dfn-preference-3", + "https://www.w3.org/TR/gpc/#ref-for-dfn-preference-4", + "https://www.w3.org/TR/gpc/#ref-for-dfn-preference-5", + "https://www.w3.org/TR/gpc/#ref-for-dfn-preference-6", + "https://www.w3.org/TR/gpc/#ref-for-dfn-preference-7", + "https://www.w3.org/TR/gpc/#ref-for-dfn-preference-8", + "https://www.w3.org/TR/gpc/#ref-for-dfn-preference-9", + "https://www.w3.org/TR/gpc/#preference-caching", + "https://www.w3.org/TR/gpc/#x3-2-preference-caching", + "https://www.w3.org/TR/gpc/#ref-for-dfn-preference-10", + "https://www.w3.org/TR/gpc/#ref-for-dfn-preference-11", + "https://www.w3.org/TR/gpc/#dfn-gpcatnavigation", + "https://www.w3.org/TR/gpc/#ref-for-dfn-gpcatnavigation-1", + "https://www.w3.org/TR/gpc/#ref-for-dfn-preference-12", + "https://www.w3.org/TR/gpc/#ref-for-dfn-preference-13", + "https://www.w3.org/TR/gpc/#ref-for-dfn-preference-14", + "https://www.w3.org/TR/gpc/#ref-for-dfn-preference-15", + "https://www.w3.org/TR/gpc/#ref-for-dfn-preference-16", + "https://www.w3.org/TR/gpc/#the-sec-gpc-header-field-for-http-requests", + "https://www.w3.org/TR/gpc/#x3-3-the-sec-gpc-header-field-for-http-requests", + "https://www.w3.org/TR/gpc/#dfn-sec-gpc", + "https://www.w3.org/TR/gpc/#ref-for-dfn-preference-17", + "https://www.w3.org/TR/gpc/#ref-for-dfn-do-not-sell-or-share-interaction-2", + "https://www.w3.org/TR/gpc/#ref-for-dfn-sec-gpc-1", + "https://www.w3.org/TR/gpc/#ref-for-dfn-sec-gpc-2", + "https://www.w3.org/TR/gpc/#ref-for-dfn-sec-gpc-3", + "https://www.w3.org/TR/gpc/#ref-for-dfn-sec-gpc-4", + "https://www.w3.org/TR/gpc/#ref-for-dfn-sec-gpc-5", + "https://www.w3.org/TR/gpc/#ref-for-dfn-sec-gpc-6", + "https://www.w3.org/TR/gpc/#ref-for-dfn-sec-gpc-7", + "https://www.w3.org/TR/gpc/#ref-for-dfn-sec-gpc-8", + "https://www.w3.org/TR/gpc/#ref-for-dfn-sec-gpc-9", + "https://www.w3.org/TR/gpc/#ref-for-dfn-preference-18", + "https://www.w3.org/TR/gpc/#ref-for-dfn-sec-gpc-10", + "https://www.w3.org/TR/gpc/#example-example-gpc-request", + "https://www.w3.org/TR/gpc/#extensibility-of-the-sec-gpc-field-value", + "https://www.w3.org/TR/gpc/#x3-3-1-extensibility-of-the-sec-gpc-field-value", + "https://www.w3.org/TR/gpc/#ref-for-dfn-sec-gpc-11", + "https://www.w3.org/TR/gpc/#javascript-property-to-detect-preference", + "https://www.w3.org/TR/gpc/#x3-4-javascript-property-to-detect-preference", + "https://www.w3.org/TR/gpc/#ref-for-dom-globalprivacycontrol-globalprivacycontrol-1", + "https://www.w3.org/TR/gpc/#ref-for-dfn-sec-gpc-12", + "https://www.w3.org/TR/gpc/#webidl-2062116596", + "https://www.w3.org/TR/gpc/#idl-def-globalprivacycontrol", + "https://www.w3.org/TR/gpc/#dom-globalprivacycontrol", + "https://www.w3.org/TR/gpc/#idl-def-globalprivacycontrol-globalprivacycontrol", + "https://www.w3.org/TR/gpc/#dom-globalprivacycontrol-globalprivacycontrol", + "https://www.w3.org/TR/gpc/#ref-for-dom-globalprivacycontrol-1", + "https://www.w3.org/TR/gpc/#ref-for-dom-globalprivacycontrol-2", + "https://www.w3.org/TR/gpc/#ref-for-dom-globalprivacycontrol-globalprivacycontrol-2", + "https://www.w3.org/TR/gpc/#ref-for-dom-globalprivacycontrol-globalprivacycontrol-3", + "https://www.w3.org/TR/gpc/#example-checking-gpc-in-script", + "https://www.w3.org/TR/gpc/#gpc-support-resource", + "https://www.w3.org/TR/gpc/#x4-gpc-support-resource", + "https://www.w3.org/TR/gpc/#gpc-support-representation", + "https://www.w3.org/TR/gpc/#x4-1-gpc-support-representation", + "https://www.w3.org/TR/gpc/#example-example-org-abides-by-gpc", + "https://www.w3.org/TR/gpc/#legal-effects", + "https://www.w3.org/TR/gpc/#x5-legal-effects", + "https://www.w3.org/TR/gpc/#calfornia-consumer-privacy-act-ccpa", + "https://www.w3.org/TR/gpc/#x5-1-calfornia-consumer-privacy-act-ccpa", + "https://www.w3.org/TR/gpc/#colorado-privacy-act-cpa", + "https://www.w3.org/TR/gpc/#x5-2-colorado-privacy-act-cpa", + "https://www.w3.org/TR/gpc/#connecticut-data-privacy-act-cdpa", + "https://www.w3.org/TR/gpc/#x5-3-connecticut-data-privacy-act-cdpa", + "https://www.w3.org/TR/gpc/#nevada-revised-statutes-chapter-603a-nrs-603a", + "https://www.w3.org/TR/gpc/#x5-4-nevada-revised-statutes-chapter-603a-nrs-603a", + "https://www.w3.org/TR/gpc/#eu-general-data-protection-regulation-gdpr", + "https://www.w3.org/TR/gpc/#x5-5-eu-general-data-protection-regulation-gdpr", + "https://www.w3.org/TR/gpc/#other-jurisdictions-and-privacy-rights", + "https://www.w3.org/TR/gpc/#x5-6-other-jurisdictions-and-privacy-rights", + "https://www.w3.org/TR/gpc/#user-interface-language", + "https://www.w3.org/TR/gpc/#x5-7-user-interface-language", + "https://www.w3.org/TR/gpc/#ref-for-dfn-preference-19", + "https://www.w3.org/TR/gpc/#privacy-considerations", + "https://www.w3.org/TR/gpc/#privacy", + "https://www.w3.org/TR/gpc/#conformance", + "https://www.w3.org/TR/gpc/#x7-conformance", + "https://www.w3.org/TR/gpc/#implementation-considerations", + "https://www.w3.org/TR/gpc/#a-implementation-considerations", + "https://www.w3.org/TR/gpc/#ref-for-dfn-do-not-sell-or-share-interaction-3", + "https://www.w3.org/TR/gpc/#ref-for-dfn-preference-20", + "https://www.w3.org/TR/gpc/#ref-for-dfn-do-not-sell-or-share-interaction-4", + "https://www.w3.org/TR/gpc/#ref-for-dfn-do-not-sell-or-share-interaction-5", + "https://www.w3.org/TR/gpc/#ref-for-dfn-preference-21", + "https://www.w3.org/TR/gpc/#ref-for-dfn-preference-22", + "https://www.w3.org/TR/gpc/#acknowledgments", + "https://www.w3.org/TR/gpc/#b-acknowledgments", + "https://www.w3.org/TR/gpc/#references", + "https://www.w3.org/TR/gpc/#c-references", + "https://www.w3.org/TR/gpc/#normative-references", + "https://www.w3.org/TR/gpc/#c-1-normative-references", + "https://www.w3.org/TR/gpc/#bib-abnf", + "https://www.w3.org/TR/gpc/#bib-html", + "https://www.w3.org/TR/gpc/#bib-rfc2119", + "https://www.w3.org/TR/gpc/#bib-rfc3339", + "https://www.w3.org/TR/gpc/#bib-rfc8174", + "https://www.w3.org/TR/gpc/#bib-rfc8259", + "https://www.w3.org/TR/gpc/#bib-rfc8615", + "https://www.w3.org/TR/gpc/#bib-webidl", + "https://www.w3.org/TR/gpc/#informative-references", + "https://www.w3.org/TR/gpc/#c-2-informative-references", + "https://www.w3.org/TR/gpc/#bib-ccpa-ag-final-statement", + "https://www.w3.org/TR/gpc/#bib-ccpa-regulations", + "https://www.w3.org/TR/gpc/#bib-colorado-regulations", + "https://www.w3.org/TR/gpc/#bib-cppa-regulations", + "https://www.w3.org/TR/gpc/#bib-eprivacy-directive", + "https://www.w3.org/TR/gpc/#bib-gdpr", + "https://www.w3.org/TR/gpc/#bib-privacy-principles", + "https://www.w3.org/TR/gpc/#bib-sb220", + "https://www.w3.org/TR/gpc/#back-to-top" + ] +} \ No newline at end of file diff --git a/tr/ids/vibration.json b/tr/ids/vibration.json index 82349a1de3b4..58340c2eb90e 100644 --- a/tr/ids/vibration.json +++ b/tr/ids/vibration.json @@ -1,65 +1,90 @@ { "spec": { - "title": "Vibration API (Second Edition)", + "title": "Vibration API", "url": "https://www.w3.org/TR/vibration/" }, "ids": [ "https://www.w3.org/TR/vibration/#initialUserConfig", - "https://www.w3.org/TR/vibration/#respecDocument", "https://www.w3.org/TR/vibration/#toc-nav", "https://www.w3.org/TR/vibration/#toc-jump", "https://www.w3.org/TR/vibration/#toc-toggle", - "https://www.w3.org/TR/vibration/#respecHeader", "https://www.w3.org/TR/vibration/#title", - "https://www.w3.org/TR/vibration/#w3c-recommendation-18-october-2016", + "https://www.w3.org/TR/vibration/#w3c-state", "https://www.w3.org/TR/vibration/#abstract", - "https://www.w3.org/TR/vibration/#h-abstract", "https://www.w3.org/TR/vibration/#sotd", - "https://www.w3.org/TR/vibration/#h-sotd", - "https://www.w3.org/TR/vibration/#sotd_patent", "https://www.w3.org/TR/vibration/#w3c_process_revision", "https://www.w3.org/TR/vibration/#toc", "https://www.w3.org/TR/vibration/#table-of-contents", "https://www.w3.org/TR/vibration/#introduction", - "https://www.w3.org/TR/vibration/#h-introduction", + "https://www.w3.org/TR/vibration/#x1-introduction", "https://www.w3.org/TR/vibration/#conformance", - "https://www.w3.org/TR/vibration/#h-conformance", - "https://www.w3.org/TR/vibration/#respecRFC2119", + "https://www.w3.org/TR/vibration/#x2-conformance", "https://www.w3.org/TR/vibration/#ua", - "https://www.w3.org/TR/vibration/#terminology", - "https://www.w3.org/TR/vibration/#h-terminology", - "https://www.w3.org/TR/vibration/#dfn-top-level-browsing-context", - "https://www.w3.org/TR/vibration/#dfn-spin-the-event-loop", "https://www.w3.org/TR/vibration/#vibration-interface", - "https://www.w3.org/TR/vibration/#h-vibration-interface", + "https://www.w3.org/TR/vibration/#x3-vibration-interface", + "https://www.w3.org/TR/vibration/#webidl-488357042", "https://www.w3.org/TR/vibration/#idl-def-vibratepattern", + "https://www.w3.org/TR/vibration/#ref-for-dom-vibratepattern-1", "https://www.w3.org/TR/vibration/#idl-def-navigator-partial-1", - "https://www.w3.org/TR/vibration/#idl-def-navigator-vibrate(vibratepattern)", + "https://www.w3.org/TR/vibration/#idl-def-navigator-vibrate-pattern", + "https://www.w3.org/TR/vibration/#ref-for-dom-navigator-vibrate-1", + "https://www.w3.org/TR/vibration/#ref-for-dom-vibratepattern-2", + "https://www.w3.org/TR/vibration/#dom-navigator-vibrate", + "https://www.w3.org/TR/vibration/#ref-for-dfn-processing-vibration-patterns-1", + "https://www.w3.org/TR/vibration/#dfn-vibration-pattern", + "https://www.w3.org/TR/vibration/#dom-vibratepattern", "https://www.w3.org/TR/vibration/#dfn-processing-vibration-patterns", - "https://www.w3.org/TR/vibration/#h-note1", + "https://www.w3.org/TR/vibration/#ref-for-dom-navigator-vibrate-2", + "https://www.w3.org/TR/vibration/#ref-for-dfn-validate-and-normalize-1", + "https://www.w3.org/TR/vibration/#issue-container-generatedID", + "https://www.w3.org/TR/vibration/#h-note", + "https://www.w3.org/TR/vibration/#ref-for-dfn-perform-vibration-1", "https://www.w3.org/TR/vibration/#dfn-validate-and-normalize", - "https://www.w3.org/TR/vibration/#h-note2", - "https://www.w3.org/TR/vibration/#h-note3", + "https://www.w3.org/TR/vibration/#ref-for-dfn-vibration-pattern-1", "https://www.w3.org/TR/vibration/#remove-last-entry", + "https://www.w3.org/TR/vibration/#h-note-0", "https://www.w3.org/TR/vibration/#dfn-perform-vibration", - "https://www.w3.org/TR/vibration/#h-note4", + "https://www.w3.org/TR/vibration/#ref-for-dfn-vibration-pattern-2", + "https://www.w3.org/TR/vibration/#issue-container-generatedID-0", + "https://www.w3.org/TR/vibration/#h-note-1", + "https://www.w3.org/TR/vibration/#ref-for-dfn-perform-vibration-2", + "https://www.w3.org/TR/vibration/#ref-for-dfn-perform-vibration-3", + "https://www.w3.org/TR/vibration/#ref-for-ua-1", + "https://www.w3.org/TR/vibration/#ref-for-dfn-processing-vibration-patterns-2", "https://www.w3.org/TR/vibration/#security-and-privacy-considerations", - "https://www.w3.org/TR/vibration/#h-security-and-privacy-considerations", + "https://www.w3.org/TR/vibration/#x4-security-and-privacy-considerations", + "https://www.w3.org/TR/vibration/#ref-for-ua-2", + "https://www.w3.org/TR/vibration/#ref-for-ua-3", "https://www.w3.org/TR/vibration/#examples", - "https://www.w3.org/TR/vibration/#h-examples", + "https://www.w3.org/TR/vibration/#x5-examples", + "https://www.w3.org/TR/vibration/#example-1", + "https://www.w3.org/TR/vibration/#example-2", + "https://www.w3.org/TR/vibration/#example-3", "https://www.w3.org/TR/vibration/#acknowledgements", - "https://www.w3.org/TR/vibration/#h-acknowledgements", + "https://www.w3.org/TR/vibration/#a-acknowledgements", + "https://www.w3.org/TR/vibration/#changes", + "https://www.w3.org/TR/vibration/#b-changes", + "https://www.w3.org/TR/vibration/#ref-for-dfn-perform-vibration-4", + "https://www.w3.org/TR/vibration/#ref-for-dfn-vibration-pattern-3", + "https://www.w3.org/TR/vibration/#ref-for-dfn-perform-vibration-5", + "https://www.w3.org/TR/vibration/#idl-index", + "https://www.w3.org/TR/vibration/#c-idl-index", + "https://www.w3.org/TR/vibration/#actual-idl-index", + "https://www.w3.org/TR/vibration/#ref-for-dom-vibratepattern-3", + "https://www.w3.org/TR/vibration/#ref-for-dom-navigator-vibrate-3", + "https://www.w3.org/TR/vibration/#ref-for-dom-vibratepattern-4", "https://www.w3.org/TR/vibration/#references", - "https://www.w3.org/TR/vibration/#h-references", + "https://www.w3.org/TR/vibration/#d-references", "https://www.w3.org/TR/vibration/#normative-references", - "https://www.w3.org/TR/vibration/#h-normative-references", - "https://www.w3.org/TR/vibration/#bib-HTML5", - "https://www.w3.org/TR/vibration/#bib-PAGE-VISIBILITY-2", - "https://www.w3.org/TR/vibration/#bib-RFC2119", - "https://www.w3.org/TR/vibration/#bib-WEBIDL-1", + "https://www.w3.org/TR/vibration/#d-1-normative-references", + "https://www.w3.org/TR/vibration/#bib-dom", + "https://www.w3.org/TR/vibration/#bib-html", + "https://www.w3.org/TR/vibration/#bib-rfc2119", + "https://www.w3.org/TR/vibration/#bib-rfc8174", + "https://www.w3.org/TR/vibration/#bib-webidl-1", "https://www.w3.org/TR/vibration/#informative-references", - "https://www.w3.org/TR/vibration/#h-informative-references", - "https://www.w3.org/TR/vibration/#bib-NOTIFICATIONS", + "https://www.w3.org/TR/vibration/#d-2-informative-references", + "https://www.w3.org/TR/vibration/#bib-notifications", "https://www.w3.org/TR/vibration/#back-to-top" ] } \ No newline at end of file diff --git a/tr/ids/webaudio-1.0.json b/tr/ids/webaudio-1.0.json index f4d9f3303ec3..0794615ba0dc 100644 --- a/tr/ids/webaudio-1.0.json +++ b/tr/ids/webaudio-1.0.json @@ -1,11121 +1,10477 @@ { "spec": { - "title": "Web Audio API 1.1", - "url": "https://www.w3.org/TR/webaudio/" + "title": "Web Audio API", + "url": "https://www.w3.org/TR/webaudio-1.0/" }, "ids": [ - "https://www.w3.org/TR/webaudio/#MathJax_Hidden", - "https://www.w3.org/TR/webaudio/#MathJax_Message", - "https://www.w3.org/TR/webaudio/#toc-nav", - "https://www.w3.org/TR/webaudio/#toc-jump", - "https://www.w3.org/TR/webaudio/#toc-toggle", - "https://www.w3.org/TR/webaudio/#toc-theme-toggle", - "https://www.w3.org/TR/webaudio/#title", - "https://www.w3.org/TR/webaudio/#w3c-state", - "https://www.w3.org/TR/webaudio/#abstract", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode", - "https://www.w3.org/TR/webaudio/#sotd", - "https://www.w3.org/TR/webaudio/#w3c_process_revision", - "https://www.w3.org/TR/webaudio/#toc", - "https://www.w3.org/TR/webaudio/#contents", - "https://www.w3.org/TR/webaudio/#introductory", - "https://www.w3.org/TR/webaudio/#ref-for-audio", - "https://www.w3.org/TR/webaudio/#Features", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam", - "https://www.w3.org/TR/webaudio/#ref-for-audio%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-video", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceNode", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediadevices-getusermedia", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioDestinationNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode", - "https://www.w3.org/TR/webaudio/#ModularRouting", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#inputs", - "https://www.w3.org/TR/webaudio/#outputs", - "https://www.w3.org/TR/webaudio/#source-node", - "https://www.w3.org/TR/webaudio/#destination-node", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode", - "https://www.w3.org/TR/webaudio/#example-05baec05", - "https://www.w3.org/TR/webaudio/#example-86265d42", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A7%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#example-6d1537ab", - "https://www.w3.org/TR/webaudio/#APIOverview", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-GainNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-audio%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-video%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioDestinationNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-stereopannernode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioProcessingEvent", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#audioapi", - "https://www.w3.org/TR/webaudio/#BaseAudioContext", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-pending-promises-slot", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-rendering-thread-state-slot", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-control-thread-state-slot", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-audiocontextstate", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-render-quantum-size-slot", - "https://www.w3.org/TR/webaudio/#enumdef-audiocontextstate", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-suspended", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-running", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-closed", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-audiocontextstate%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiocontextstate-suspended", - "https://www.w3.org/TR/webaudio/#dom-audiocontextstate-running", - "https://www.w3.org/TR/webaudio/#dom-audiocontextstate-closed", - "https://www.w3.org/TR/webaudio/#enumdef-audiocontextrendersizecategory", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextrendersizecategory-default", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextrendersizecategory-hardware", - "https://www.w3.org/TR/webaudio/#dom-audiocontextrendersizecategory-default", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum-size", - "https://www.w3.org/TR/webaudio/#dom-audiocontextrendersizecategory-hardware", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum-size%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-callback-decodeerrorcallback-parameters", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMException", - "https://www.w3.org/TR/webaudio/#dom-decodeerrorcallback-error", - "https://www.w3.org/TR/webaudio/#ref-for-callback-decodesuccesscallback-parameters", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-decodesuccesscallback-decodeddata", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-eventtarget", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-destination", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-listener", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-audiocontextstate%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-state", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-renderquantumsize", - "https://www.w3.org/TR/webaudio/#ref-for-SameObject", - "https://www.w3.org/TR/webaudio/#ref-for-SecureContext", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-audioworklet", - "https://www.w3.org/TR/webaudio/#ref-for-eventhandler", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-onstatechange", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createanalyser", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createbiquadfilter", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createbuffer", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbuffer-numberofchannels-length-samplerate-numberofchannels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbuffer-numberofchannels-length-samplerate-length", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbuffer-numberofchannels-length-samplerate-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createbuffersource", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createchannelmerger", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createchannelmerger-numberofinputs-numberofinputs", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createchannelsplitter", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createchannelsplitter-numberofoutputs-numberofoutputs", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createconstantsource", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createconvolver", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createdelay", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createdelay-maxdelaytime-maxdelaytime", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createdynamicscompressor", - "https://www.w3.org/TR/webaudio/#ref-for-GainNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-creategain", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createiirfilter", - "https://www.w3.org/TR/webaudio/#ref-for-idl-sequence", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createiirfilter-feedforward-feedback-feedforward", - "https://www.w3.org/TR/webaudio/#ref-for-idl-sequence%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createiirfilter-feedforward-feedback-feedback", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createoscillator", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createpanner", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createperiodicwave", - "https://www.w3.org/TR/webaudio/#ref-for-idl-sequence%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createperiodicwave-real-imag-constraints-real", - "https://www.w3.org/TR/webaudio/#ref-for-idl-sequence%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createperiodicwave-real-imag-constraints-imag", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveConstraints", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createperiodicwave-real-imag-constraints-constraints", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-buffersize", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels", - "https://www.w3.org/TR/webaudio/#ref-for-stereopannernode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createstereopanner", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createwaveshaper", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-decodeaudiodata", - "https://www.w3.org/TR/webaudio/#ref-for-idl-ArrayBuffer", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata", - "https://www.w3.org/TR/webaudio/#ref-for-callback-decodesuccesscallback-parameters%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-successcallback", - "https://www.w3.org/TR/webaudio/#ref-for-callback-decodeerrorcallback-parameters%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-errorcallback", - "https://www.w3.org/TR/webaudio/#BaseAudioContext-attributes", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-audioworklet", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-currenttime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-running%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum", - "https://www.w3.org/TR/webaudio/#ref-for-atomically", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-destination", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-destination%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-listener", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-onstatechange", - "https://www.w3.org/TR/webaudio/#ref-for-eventhandler%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-event-handlers", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A7", - "https://www.w3.org/TR/webaudio/#eventdef-baseaudiocontext-statechange", - "https://www.w3.org/TR/webaudio/#ref-for-event", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-offlineaudiocontext-complete", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#--nyquist-frequency", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-state", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-audiocontextstate%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-control-thread-state-slot", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-renderquantumsize", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-render-quantum-size-slot", - "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createanalyser", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbiquadfilter", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbuffer", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createbuffer%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbuffer-numberofchannels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbuffer-length", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbuffer-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-linear-pcm", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbuffersource", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createchannelmerger", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createchannelmerger-numberofinputs-numberofinputs%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createchannelmerger%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createchannelmerger-numberofinputs-numberofinputs", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createchannelsplitter", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createchannelsplitter-numberofoutputs-numberofoutputs%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createchannelsplitter%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createchannelsplitter-numberofoutputs-numberofoutputs", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createconstantsource", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createconvolver", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createdelay", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createdelay%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createdelay-maxdelaytime-maxdelaytime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createdynamicscompressor", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-creategain", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-GainNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-GainNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createiirfilter", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createiirfilter%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createiirfilter-feedforward", - "https://www.w3.org/TR/webaudio/#ref-for-idl-sequence%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createiirfilter-feedback", - "https://www.w3.org/TR/webaudio/#ref-for-idl-sequence%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createoscillator", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createpanner", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createperiodicwave", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createperiodicwave-real", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createperiodicwave-imag", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveOptions", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createperiodicwave-real%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createperiodicwave-imag%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveconstraints-disablenormalization", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveconstraints-disablenormalization%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createperiodicwave%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createperiodicwave-real", - "https://www.w3.org/TR/webaudio/#ref-for-idl-sequence%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-real", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createperiodicwave-imag", - "https://www.w3.org/TR/webaudio/#ref-for-idl-sequence%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-imag", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createperiodicwave-constraints", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveConstraints%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createscriptprocessor", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-buffersize%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-buffersize", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-scriptprocessornode-buffersize", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-scriptprocessornode-audioprocess", - "https://www.w3.org/TR/webaudio/#ref-for-dom-scriptprocessornode-buffersize%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createstereopanner", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-stereopannernode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-stereopannernode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createwaveshaper", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decodeaudiodata", - "https://www.w3.org/TR/webaudio/#ref-for-idl-ArrayBuffer%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-ArrayBuffer%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-audio%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-decodeaudiodata%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-this", - "https://www.w3.org/TR/webaudio/#ref-for-concept-relevant-global", - "https://www.w3.org/TR/webaudio/#ref-for-concept-document-window", - "https://www.w3.org/TR/webaudio/#ref-for-fully-active", - "https://www.w3.org/TR/webaudio/#ref-for-a-promise-rejected-with", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMException%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata", - "https://www.w3.org/TR/webaudio/#ref-for-buffersource-detached", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-pending-promises-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dfn-detach", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-ArrayBuffer%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-datacloneerror", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-pending-promises-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#6d54a0c50", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-decodeaudiodata-errorcallback", - "https://www.w3.org/TR/webaudio/#ref-for-control-thread", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decoding-thread", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-decoding-thread", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-linear-pcm%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-linear-pcm%E2%91%A1", - "https://www.w3.org/TR/webaudio/#6d54a0c51", - "https://www.w3.org/TR/webaudio/#ref-for-encodingerror", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-pending-promises-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-decodeaudiodata-errorcallback%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-decodeaudiodata-errorcallback%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-linear-pcm%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata%E2%91%A3", - "https://www.w3.org/TR/webaudio/#6d54a0c52", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-decodeaudiodata-successcallback", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-decodeaudiodata-successcallback%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-decodeaudiodata%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decodeaudiodata-audiodata", - "https://www.w3.org/TR/webaudio/#ref-for-idl-ArrayBuffer%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decodeaudiodata-successcallback", - "https://www.w3.org/TR/webaudio/#ref-for-callback-decodesuccesscallback-parameters%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decodeaudiodata-errorcallback", - "https://www.w3.org/TR/webaudio/#ref-for-callback-decodeerrorcallback-parameters%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A5", - "https://www.w3.org/TR/webaudio/#callback-decodesuccesscallback-parameters", - "https://www.w3.org/TR/webaudio/#ref-for-callback-decodesuccesscallback-parameters%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-callback-decodesuccesscallback-parameters%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-decodesuccesscallback-decodeddata", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A6", - "https://www.w3.org/TR/webaudio/#callback-decodeerrorcallback-parameters", - "https://www.w3.org/TR/webaudio/#ref-for-callback-decodeerrorcallback-parameters%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-callback-decodeerrorcallback-parameters%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-decodeerrorcallback-error", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMException%E2%91%A1", - "https://www.w3.org/TR/webaudio/#lifetime-AudioContext", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A2", - "https://www.w3.org/TR/webaudio/#lack-of-introspection-or-serialization-primitives", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-source-nodes", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A3", - "https://www.w3.org/TR/webaudio/#system-resources-associated-with-baseaudiocontext-subclasses", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#acquiring", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-suspend", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-close", - "https://www.w3.org/TR/webaudio/#releasing", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-resume", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#AudioContext", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#enumdef-audiocontextlatencycategory", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextlatencycategory-balanced", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextlatencycategory-interactive", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextlatencycategory-playback", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-audiocontextlatencycategory", - "https://www.w3.org/TR/webaudio/#dom-audiocontextlatencycategory-balanced", - "https://www.w3.org/TR/webaudio/#dom-audiocontextlatencycategory-interactive", - "https://www.w3.org/TR/webaudio/#dom-audiocontextlatencycategory-playback", - "https://www.w3.org/TR/webaudio/#enumdef-audiosinktype", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiosinktype-none", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-audiosinktype", - "https://www.w3.org/TR/webaudio/#dom-audiosinktype-none", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-audiocontext", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContextOptions", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-constructor-contextoptions-contextoptions", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-baselatency", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-outputlatency", - "https://www.w3.org/TR/webaudio/#ref-for-SecureContext%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkInfo", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sinkid", - "https://www.w3.org/TR/webaudio/#ref-for-SecureContext%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-audiorendercapacity", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-rendercapacity", - "https://www.w3.org/TR/webaudio/#ref-for-eventhandler%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-onsinkchange", - "https://www.w3.org/TR/webaudio/#ref-for-eventhandler%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-onerror", - "https://www.w3.org/TR/webaudio/#ref-for-AudioTimestamp", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-getoutputtimestamp", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-resume%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-suspend%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-close%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-SecureContext%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-setsinkid", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkOptions", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-setsinkid-sinkid-sinkid", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-createmediaelementsource", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediaelementsource-mediaelement-mediaelement", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-createmediastreamsource", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediastreamsource-mediastream-mediastream", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-createmediastreamtracksource", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediastreamtracksource-mediastreamtrack-mediastreamtrack", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioDestinationNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-createmediastreamdestination", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#allowed-to-start", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-suspended%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-running%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-concept-relevant-global%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-sticky-activation", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-suspended-by-user-slot", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-sink-id-slot", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkInfo%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-pending-resume-promises-slot", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-resume%E2%91%A1", - "https://www.w3.org/TR/webaudio/#AudioContext-constructors", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-audiocontext", - "https://www.w3.org/TR/webaudio/#ref-for-current-settings-object", - "https://www.w3.org/TR/webaudio/#ref-for-concept-relevant-global%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-concept-document-window%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-fully-active%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot", - "https://www.w3.org/TR/webaudio/#ref-for-messagechannel", - "https://www.w3.org/TR/webaudio/#ref-for-dom-messagechannel-port1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-messagechannel-port2", - "https://www.w3.org/TR/webaudio/#ref-for-structuredserializewithtransfer", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-audioworklet%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworklet-port", - "https://www.w3.org/TR/webaudio/#ref-for-queuing", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextoptions-sinkid", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextoptions-sinkid%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkInfo%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiosinkoptions-type", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiosinkinfo-type", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMException%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkInfo%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiosinkoptions-type%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextoptions-latencyhint", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextoptions-latencyhint%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextoptions-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextoptions-samplerate%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-allowed-to-start", - "https://www.w3.org/TR/webaudio/#ref-for-control-message", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-current-settings-object%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-concept-relevant-global%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-concept-document-window%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-acquiring", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-queue-a-media-element-task", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-audiocontext-error", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-this%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-queue-a-media-element-task%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-state%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-running%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-baseaudiocontext-statechange", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#setting-the-messageport-on-the-scope", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-messageport", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-structureddeserialize", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletglobalscope-port", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-audiocontext%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-constructor-contextoptions-contextoptions", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContextOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#AudioContext-attributes", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-baselatency", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-1-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4", - "https://www.w3.org/TR/webaudio/#MathJax-Span-5", - "https://www.w3.org/TR/webaudio/#MathJax-Span-6", - "https://www.w3.org/TR/webaudio/#MathJax-Span-7", - "https://www.w3.org/TR/webaudio/#MathJax-Span-8", - "https://www.w3.org/TR/webaudio/#MathJax-Span-9", - "https://www.w3.org/TR/webaudio/#MathJax-Span-10", - "https://www.w3.org/TR/webaudio/#MathJax-Span-11", - "https://www.w3.org/TR/webaudio/#MathJax-Span-12", - "https://www.w3.org/TR/webaudio/#MathJax-Span-13", - "https://www.w3.org/TR/webaudio/#MathJax-Span-14", - "https://www.w3.org/TR/webaudio/#MathJax-Span-15", - "https://www.w3.org/TR/webaudio/#MathJax-Span-16", - "https://www.w3.org/TR/webaudio/#MathJax-Span-17", - "https://www.w3.org/TR/webaudio/#MathJax-Element-1", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-outputlatency", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-outputlatency%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-outputlatency%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-rendercapacity", - "https://www.w3.org/TR/webaudio/#ref-for-audiorendercapacity%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-audiorendercapacity%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-sinkid", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-onsinkchange", - "https://www.w3.org/TR/webaudio/#ref-for-eventhandler%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-event-handlers%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-setsinkid", - "https://www.w3.org/TR/webaudio/#eventdef-audiocontext-sinkchange", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-baseaudiocontext-statechange%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-onerror", - "https://www.w3.org/TR/webaudio/#ref-for-eventhandler%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-event-handlers%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-event%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#eventdef-audiocontext-error", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-running%E2%91%A3", - "https://www.w3.org/TR/webaudio/#AudioContext-methods", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-close", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-releasing", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-this%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-concept-relevant-global%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-concept-document-window%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-fully-active%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-a-promise-rejected-with%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMException%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-queuing%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-releasing%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A3", - "https://www.w3.org/TR/webaudio/#6d54a0c53", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-state%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-closed%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-state%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-closed%E2%91%A1", - "https://www.w3.org/TR/webaudio/#6d54a0c54", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-baseaudiocontext-statechange%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediaelementsource", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-createmediaelementsource%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediaelementsource-mediaelement", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediastreamdestination", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioDestinationNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioDestinationNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediastreamsource", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-createmediastreamsource%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediastreamsource-mediastream", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediastreamtracksource", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-createmediastreamtracksource%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediastreamtracksource-mediastreamtrack", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-getoutputtimestamp", - "https://www.w3.org/TR/webaudio/#ref-for-AudioTimestamp%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiotimestamp-contexttime", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiotimestamp-performancetime", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-getoutputtimestamp%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioTimestamp%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiotimestamp-contexttime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-getoutputtimestamp%E2%91%A1", - "https://www.w3.org/TR/webaudio/#example-a967f6fb", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-getoutputtimestamp%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiotimestamp-contexttime%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-getoutputtimestamp%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-outputlatency%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioTimestamp%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-resume", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-this%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-concept-relevant-global%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-concept-document-window%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-fully-active%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-a-promise-rejected-with%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMException%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-suspended-by-user-slot", - "https://www.w3.org/TR/webaudio/#ref-for-allowed-to-start%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-pending-promises-slot%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-pending-resume-promises-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-queuing%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webaudio/#context-resume", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-acquiring%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webaudio/#6d54a0c55", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-pending-resume-promises-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-pending-resume-promises-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-pending-promises-slot%E2%91%A3", - "https://www.w3.org/TR/webaudio/#6d54a0c56", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-pending-resume-promises-slot%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-pending-resume-promises-slot%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-pending-promises-slot%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-state%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-running%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-state%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-running%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-queue-a-media-element-task%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-baseaudiocontext-statechange%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-suspend", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-releasing%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-this%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-concept-relevant-global%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-concept-document-window%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-fully-active%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-a-promise-rejected-with%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMException%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-pending-promises-slot%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-suspended-by-user-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-queuing%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-releasing%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webaudio/#6d54a0c57", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-state%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-suspended%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-state%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-suspended%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-queue-a-media-element-task%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-baseaudiocontext-statechange%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-setsinkid-domstring-or-audiosinkoptions-sinkid", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-setsinkid%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A5", - "https://www.w3.org/TR/webaudio/#6d54a0c58", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkInfo%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiosinkoptions-type%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiosinkinfo-type%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#6d54a0c59", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-releasing%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A5%E2%91%A6", - "https://www.w3.org/TR/webaudio/#6d54a0c510", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-state%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-suspended%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-state%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-suspended%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-baseaudiocontext-statechange%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A6%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-acquiring%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-invalidaccesserror", - "https://www.w3.org/TR/webaudio/#6d54a0c511", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkInfo%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiosinkoptions-type%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkOptions%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkInfo%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiosinkinfo-type%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiosinkoptions-type%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-audiocontext-sinkchange", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/webaudio/#6d54a0c512", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-state%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-running%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-state%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A6%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-running%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-baseaudiocontext-statechange%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A6%E2%91%A4", - "https://www.w3.org/TR/webaudio/#validating-sink-identifier", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sinkid%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sinkid%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-concept-document-window%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMException%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-notallowederror", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediadevices-enumeratedevices", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMException%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-notfounderror", - "https://www.w3.org/TR/webaudio/#AudioContextOptions", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContextOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContextOptions%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContextOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A6%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContextOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-audiocontextlatencycategory%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextoptions-latencyhint%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextoptions-samplerate%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkOptions%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextoptions-sinkid%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-audiocontextrendersizecategory", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextoptions-rendersizehint", - "https://www.w3.org/TR/webaudio/#dictionary-audiocontextoptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContextOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audiocontextoptions-latencyhint", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-audiocontextlatencycategory%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-baselatency%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiocontextoptions-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextoptions-samplerate%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A6%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-audiocontextoptions-sinkid", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sinkid%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audiocontextoptions-rendersizehint", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum-size%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum-size%E2%91%A2", - "https://www.w3.org/TR/webaudio/#AudioSinkOptions", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkOptions%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkOptions%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkOptions%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sinkid%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkOptions%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-audiosinktype%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiosinkoptions-type%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dictionary-audiosinkoptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkOptions%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiosinkoptions-type", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-audiosinktype%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-audiosinktype%E2%91%A2", - "https://www.w3.org/TR/webaudio/#AudioSinkInfo", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkInfo%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkInfo%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkInfo%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sinkid%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkInfo%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-audiosinktype%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiosinkinfo-type%E2%91%A2", - "https://www.w3.org/TR/webaudio/#audiosinkinfo-attributes", - "https://www.w3.org/TR/webaudio/#dom-audiosinkinfo-type", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-audiosinktype%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-audiosinktype%E2%91%A5", - "https://www.w3.org/TR/webaudio/#AudioTimestamp", - "https://www.w3.org/TR/webaudio/#ref-for-AudioTimestamp%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioTimestamp%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioTimestamp%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiotimestamp-contexttime%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-domhighrestimestamp", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiotimestamp-performancetime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dictionary-audiotimestamp-members", - "https://www.w3.org/TR/webaudio/#ref-for-AudioTimestamp%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audiotimestamp-contexttime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiotimestamp-performancetime", - "https://www.w3.org/TR/webaudio/#ref-for-dom-domhighrestimestamp%E2%91%A0", - "https://www.w3.org/TR/webaudio/#AudioRenderCapacity", - "https://www.w3.org/TR/webaudio/#ref-for-audiorendercapacity%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioRenderCapacity", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A2", - "https://www.w3.org/TR/webaudio/#audiorendercapacity", - "https://www.w3.org/TR/webaudio/#ref-for-eventtarget%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiorendercapacity-start", - "https://www.w3.org/TR/webaudio/#ref-for-dictdef-audiorendercapacityoptions", - "https://www.w3.org/TR/webaudio/#dom-audiorendercapacity-start-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiorendercapacity-stop", - "https://www.w3.org/TR/webaudio/#ref-for-eventhandler%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiorendercapacity-onupdate", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-load-value", - "https://www.w3.org/TR/webaudio/#ref-for-system-level-audio-callback", - "https://www.w3.org/TR/webaudio/#AudioRenderCapacity-attributes", - "https://www.w3.org/TR/webaudio/#dom-audiorendercapacity-onupdate", - "https://www.w3.org/TR/webaudio/#ref-for-eventhandler%E2%91%A6", - "https://www.w3.org/TR/webaudio/#eventdef-audiorendercapacity-update", - "https://www.w3.org/TR/webaudio/#ref-for-audiorendercapacityevent", - "https://www.w3.org/TR/webaudio/#AudioRenderCapacity-methods", - "https://www.w3.org/TR/webaudio/#dom-audiorendercapacity-start", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-audiorendercapacity-update", - "https://www.w3.org/TR/webaudio/#ref-for-audiorendercapacity%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-audiorendercapacityevent%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dictdef-audiorendercapacityoptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiorendercapacity-stop", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-audiorendercapacity-update%E2%91%A0", - "https://www.w3.org/TR/webaudio/#AudioRenderCapacityOptions", - "https://www.w3.org/TR/webaudio/#ref-for-dictdef-audiorendercapacityoptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioRenderCapacityOptions", - "https://www.w3.org/TR/webaudio/#ref-for-dictdef-audiorendercapacityoptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-audiorendercapacity%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dictdef-audiorendercapacityoptions", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiorendercapacityoptions-updateinterval", - "https://www.w3.org/TR/webaudio/#dictionary-AudioRenderCapacityOptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-dictdef-audiorendercapacityoptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityoptions-updateinterval", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-audiorendercapacityevent%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-load-value%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-system-level-audio-callback%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-system-level-audio-callback%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-system-level-audio-callback%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A7", - "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent", - "https://www.w3.org/TR/webaudio/#ref-for-audiorendercapacityevent%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioRenderCapacityEvent", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A3", - "https://www.w3.org/TR/webaudio/#audiorendercapacityevent", - "https://www.w3.org/TR/webaudio/#ref-for-event%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityevent-audiorendercapacityevent", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityevent-audiorendercapacityevent-type-eventinitdict-type", - "https://www.w3.org/TR/webaudio/#ref-for-dictdef-audiorendercapacityeventinit", - "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityevent-audiorendercapacityevent-type-eventinitdict-eventinitdict", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiorendercapacityevent-timestamp", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiorendercapacityevent-averageload", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiorendercapacityevent-peakload", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiorendercapacityevent-underrunratio", - "https://www.w3.org/TR/webaudio/#dictdef-audiorendercapacityeventinit", - "https://www.w3.org/TR/webaudio/#ref-for-dictdef-eventinit", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityeventinit-timestamp", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityeventinit-averageload", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityeventinit-peakload", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityeventinit-underrunratio", - "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent-attributes", - "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityevent-timestamp", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A7%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityevent-averageload", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityevent-peakload", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityevent-underrunratio", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-load-value%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-system-level-audio-callback%E2%91%A3", - "https://www.w3.org/TR/webaudio/#MathJax-Element-2-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-18", - "https://www.w3.org/TR/webaudio/#MathJax-Span-19", - "https://www.w3.org/TR/webaudio/#MathJax-Span-20", - "https://www.w3.org/TR/webaudio/#MathJax-Element-2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-3-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-21", - "https://www.w3.org/TR/webaudio/#MathJax-Span-22", - "https://www.w3.org/TR/webaudio/#MathJax-Span-23", - "https://www.w3.org/TR/webaudio/#MathJax-Element-3", - "https://www.w3.org/TR/webaudio/#ref-for-system-level-audio-callback%E2%91%A4", - "https://www.w3.org/TR/webaudio/#MathJax-Element-4-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-24", - "https://www.w3.org/TR/webaudio/#MathJax-Span-25", - "https://www.w3.org/TR/webaudio/#MathJax-Span-26", - "https://www.w3.org/TR/webaudio/#MathJax-Element-4", - "https://www.w3.org/TR/webaudio/#MathJax-Element-5-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-27", - "https://www.w3.org/TR/webaudio/#MathJax-Span-28", - "https://www.w3.org/TR/webaudio/#MathJax-Span-29", - "https://www.w3.org/TR/webaudio/#MathJax-Span-30", - "https://www.w3.org/TR/webaudio/#MathJax-Span-31", - "https://www.w3.org/TR/webaudio/#MathJax-Span-32", - "https://www.w3.org/TR/webaudio/#MathJax-Span-33", - "https://www.w3.org/TR/webaudio/#MathJax-Element-5", - "https://www.w3.org/TR/webaudio/#OfflineAudioContext", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-offlineaudiocontext", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContextOptions", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-constructor-contextoptions-contextoptions", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-offlineaudiocontext-numberofchannels-length-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-numberofchannels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-length", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-startrendering", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-resume", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-suspend", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-suspend-suspendtime-suspendtime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-length", - "https://www.w3.org/TR/webaudio/#ref-for-eventhandler%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-oncomplete", - "https://www.w3.org/TR/webaudio/#OfflineAudioContext-constructors", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-offlineaudiocontext", - "https://www.w3.org/TR/webaudio/#ref-for-current-settings-object%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-concept-relevant-global%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-concept-document-window%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-fully-active%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-render-quantum-size-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontextoptions-rendersizehint", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-render-quantum-size-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-render-quantum-size-slot%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount", - "https://www.w3.org/TR/webaudio/#ref-for-messagechannel%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-messagechannel-port1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-messagechannel-port2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-structuredserializewithtransfer%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-audioworklet%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworklet-port%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-queuing%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-offlineaudiocontext%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-constructor-contextoptions-contextoptions", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-offlineaudiocontext-numberofchannels-length-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-offlineaudiocontext-numberofchannels-length-samplerate%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-numberofchannels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createbuffer%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-length", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-linear-pcm%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createbuffer%E2%91%A2", - "https://www.w3.org/TR/webaudio/#OfflineAudioContext-attributes", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-length", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-oncomplete", - "https://www.w3.org/TR/webaudio/#ref-for-eventhandler%E2%91%A8", - "https://www.w3.org/TR/webaudio/#eventdef-offlineaudiocontext-complete", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioCompletionEvent", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A8", - "https://www.w3.org/TR/webaudio/#OfflineAudioContext-methods", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-startrendering", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-rendering-started-slot", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-control-thread%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-this%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-concept-relevant-global%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-concept-document-window%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-fully-active%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-a-promise-rejected-with%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMException%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-rendering-started-slot", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-rendering-started-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-rendered-buffer-slot", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-begin-offline-rendering", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-pending-promises-slot%E2%91%A6", - "https://www.w3.org/TR/webaudio/#begin-offline-rendering", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-rendered-buffer-slot", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-suspend%E2%91%A0", - "https://www.w3.org/TR/webaudio/#6d54a0c513", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-startrendering%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-rendered-buffer-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-queue-a-media-element-task%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-offlineaudiocontext-complete%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioCompletionEvent%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-rendered-buffer-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-resume", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-this%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-concept-relevant-global%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-concept-document-window%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-fully-active%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-a-promise-rejected-with%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMException%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-rendering-started-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-queuing%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#6d54a0c514", - "https://www.w3.org/TR/webaudio/#6d54a0c515", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-state%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-running%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-state%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-running%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-queue-a-media-element-task%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-baseaudiocontext-statechange%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-suspend", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-suspend%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-suspend-suspendtime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#OfflineAudioContextOptions", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContextOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContextOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContextOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontextoptions-numberofchannels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontextoptions-length", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontextoptions-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-audiocontextrendersizecategory%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontextoptions-rendersizehint%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dictionary-offlineaudiocontextoptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContextOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontextoptions-length", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontextoptions-numberofchannels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontextoptions-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontextoptions-rendersizehint", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum-size%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#OfflineAudioCompletionEvent", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioCompletionEvent%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioCompletionEvent%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-event%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioCompletionEvent%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-event%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocompletionevent-offlineaudiocompletionevent", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocompletionevent-offlineaudiocompletionevent-type-eventinitdict-type", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioCompletionEventInit", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocompletionevent-offlineaudiocompletionevent-type-eventinitdict-eventinitdict", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocompletionevent-renderedbuffer", - "https://www.w3.org/TR/webaudio/#OfflineAudioCompletionEvent-attributes", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocompletionevent-renderedbuffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#OfflineAudioCompletionEventInit", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioCompletionEventInit%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioCompletionEventInit%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioCompletionEventInit%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dictdef-eventinit%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocompletioneventinit-renderedbuffer", - "https://www.w3.org/TR/webaudio/#dictionary-offlineaudiocompletioneventinit-members", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioCompletionEventInit%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocompletioneventinit-renderedbuffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocompletionevent-renderedbuffer%E2%91%A0", - "https://www.w3.org/TR/webaudio/#AudioBuffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A7%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-linear-pcm%E2%91%A4", - "https://www.w3.org/TR/webaudio/#MathJax-Element-6-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-34", - "https://www.w3.org/TR/webaudio/#MathJax-Span-35", - "https://www.w3.org/TR/webaudio/#MathJax-Span-36", - "https://www.w3.org/TR/webaudio/#MathJax-Span-37", - "https://www.w3.org/TR/webaudio/#MathJax-Span-38", - "https://www.w3.org/TR/webaudio/#MathJax-Span-39", - "https://www.w3.org/TR/webaudio/#MathJax-Span-40", - "https://www.w3.org/TR/webaudio/#MathJax-Span-41", - "https://www.w3.org/TR/webaudio/#MathJax-Element-6", - "https://www.w3.org/TR/webaudio/#ref-for-audio%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A7%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-number-of-channels-slot", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-length-slot", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-sample-rate-slot", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-internal-data-slot", - "https://www.w3.org/TR/webaudio/#ref-for-sec-data-blocks", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-audiobuffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferOptions", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-audiobuffer-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-length", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-duration", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-numberofchannels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-getchanneldata", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-getchanneldata-channel-channel", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copyfromchannel", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copyfromchannel-destination-channelnumber-bufferoffset-destination", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copyfromchannel-destination-channelnumber-bufferoffset-channelnumber", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copyfromchannel-destination-channelnumber-bufferoffset-bufferoffset", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copytochannel", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copytochannel-source-channelnumber-bufferoffset-source", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copytochannel-source-channelnumber-bufferoffset-channelnumber", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copytochannel-source-channelnumber-bufferoffset-bufferoffset", - "https://www.w3.org/TR/webaudio/#AudioBuffer-constructors", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-audiobuffer", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobufferoptions-numberofchannels", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobufferoptions-length", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobufferoptions-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-number-of-channels-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-length-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-sample-rate-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-internal-data-slot", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-length-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-number-of-channels-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-audiobuffer%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#AudioBuffer-attributes", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-duration", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-sample-rate-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-length-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-length-slot%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-sample-rate-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-length", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-length-slot%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-numberofchannels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-number-of-channels-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-sample-rate-slot%E2%91%A2", - "https://www.w3.org/TR/webaudio/#AudioBuffer-methods", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copyfromchannel", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copyfromchannel%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-7-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-42", - "https://www.w3.org/TR/webaudio/#MathJax-Span-43", - "https://www.w3.org/TR/webaudio/#MathJax-Span-44", - "https://www.w3.org/TR/webaudio/#MathJax-Span-45", - "https://www.w3.org/TR/webaudio/#MathJax-Span-46", - "https://www.w3.org/TR/webaudio/#MathJax-Element-7", - "https://www.w3.org/TR/webaudio/#MathJax-Element-8-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-47", - "https://www.w3.org/TR/webaudio/#MathJax-Span-48", - "https://www.w3.org/TR/webaudio/#MathJax-Span-49", - "https://www.w3.org/TR/webaudio/#MathJax-Span-50", - "https://www.w3.org/TR/webaudio/#MathJax-Span-51", - "https://www.w3.org/TR/webaudio/#MathJax-Element-8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copyfromchannel-destination", - "https://www.w3.org/TR/webaudio/#MathJax-Element-9-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-52", - "https://www.w3.org/TR/webaudio/#MathJax-Span-53", - "https://www.w3.org/TR/webaudio/#MathJax-Span-54", - "https://www.w3.org/TR/webaudio/#MathJax-Element-9", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copyfromchannel-bufferoffset", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copyfromchannel-destination%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-10-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-55", - "https://www.w3.org/TR/webaudio/#MathJax-Span-56", - "https://www.w3.org/TR/webaudio/#MathJax-Span-57", - "https://www.w3.org/TR/webaudio/#MathJax-Span-58", - "https://www.w3.org/TR/webaudio/#MathJax-Span-59", - "https://www.w3.org/TR/webaudio/#MathJax-Span-60", - "https://www.w3.org/TR/webaudio/#MathJax-Span-61", - "https://www.w3.org/TR/webaudio/#MathJax-Span-62", - "https://www.w3.org/TR/webaudio/#MathJax-Span-63", - "https://www.w3.org/TR/webaudio/#MathJax-Span-64", - "https://www.w3.org/TR/webaudio/#MathJax-Span-65", - "https://www.w3.org/TR/webaudio/#MathJax-Span-66", - "https://www.w3.org/TR/webaudio/#MathJax-Span-67", - "https://www.w3.org/TR/webaudio/#MathJax-Span-68", - "https://www.w3.org/TR/webaudio/#MathJax-Span-69", - "https://www.w3.org/TR/webaudio/#MathJax-Span-70", - "https://www.w3.org/TR/webaudio/#MathJax-Span-71", - "https://www.w3.org/TR/webaudio/#MathJax-Span-72", - "https://www.w3.org/TR/webaudio/#MathJax-Span-73", - "https://www.w3.org/TR/webaudio/#MathJax-Element-10", - "https://www.w3.org/TR/webaudio/#MathJax-Element-11-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-74", - "https://www.w3.org/TR/webaudio/#MathJax-Span-75", - "https://www.w3.org/TR/webaudio/#MathJax-Span-76", - "https://www.w3.org/TR/webaudio/#MathJax-Span-77", - "https://www.w3.org/TR/webaudio/#MathJax-Span-78", - "https://www.w3.org/TR/webaudio/#MathJax-Element-11", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copyfromchannel-destination%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copyfromchannel%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copyfromchannel-destination", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copyfromchannel-channelnumber", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copyfromchannel-bufferoffset", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copyfromchannel-destination%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copytochannel", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copytochannel%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-unknownerror", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copytochannel-source", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#MathJax-Element-12-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-79", - "https://www.w3.org/TR/webaudio/#MathJax-Span-80", - "https://www.w3.org/TR/webaudio/#MathJax-Span-81", - "https://www.w3.org/TR/webaudio/#MathJax-Span-82", - "https://www.w3.org/TR/webaudio/#MathJax-Span-83", - "https://www.w3.org/TR/webaudio/#MathJax-Element-12", - "https://www.w3.org/TR/webaudio/#MathJax-Element-13-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-84", - "https://www.w3.org/TR/webaudio/#MathJax-Span-85", - "https://www.w3.org/TR/webaudio/#MathJax-Span-86", - "https://www.w3.org/TR/webaudio/#MathJax-Span-87", - "https://www.w3.org/TR/webaudio/#MathJax-Span-88", - "https://www.w3.org/TR/webaudio/#MathJax-Element-13", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copytochannel-source%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-14-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-89", - "https://www.w3.org/TR/webaudio/#MathJax-Span-90", - "https://www.w3.org/TR/webaudio/#MathJax-Span-91", - "https://www.w3.org/TR/webaudio/#MathJax-Element-14", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copytochannel-bufferoffset", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copytochannel-source%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-15-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-92", - "https://www.w3.org/TR/webaudio/#MathJax-Span-93", - "https://www.w3.org/TR/webaudio/#MathJax-Span-94", - "https://www.w3.org/TR/webaudio/#MathJax-Span-95", - "https://www.w3.org/TR/webaudio/#MathJax-Span-96", - "https://www.w3.org/TR/webaudio/#MathJax-Span-97", - "https://www.w3.org/TR/webaudio/#MathJax-Span-98", - "https://www.w3.org/TR/webaudio/#MathJax-Span-99", - "https://www.w3.org/TR/webaudio/#MathJax-Span-100", - "https://www.w3.org/TR/webaudio/#MathJax-Span-101", - "https://www.w3.org/TR/webaudio/#MathJax-Span-102", - "https://www.w3.org/TR/webaudio/#MathJax-Span-103", - "https://www.w3.org/TR/webaudio/#MathJax-Span-104", - "https://www.w3.org/TR/webaudio/#MathJax-Span-105", - "https://www.w3.org/TR/webaudio/#MathJax-Span-106", - "https://www.w3.org/TR/webaudio/#MathJax-Span-107", - "https://www.w3.org/TR/webaudio/#MathJax-Span-108", - "https://www.w3.org/TR/webaudio/#MathJax-Span-109", - "https://www.w3.org/TR/webaudio/#MathJax-Span-110", - "https://www.w3.org/TR/webaudio/#MathJax-Element-15", - "https://www.w3.org/TR/webaudio/#MathJax-Element-16-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-111", - "https://www.w3.org/TR/webaudio/#MathJax-Span-112", - "https://www.w3.org/TR/webaudio/#MathJax-Span-113", - "https://www.w3.org/TR/webaudio/#MathJax-Span-114", - "https://www.w3.org/TR/webaudio/#MathJax-Span-115", - "https://www.w3.org/TR/webaudio/#MathJax-Element-16", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copytochannel%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copytochannel-source", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copytochannel-channelnumber", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copytochannel-bufferoffset", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copytochannel-source%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-getchanneldata", - "https://www.w3.org/TR/webaudio/#ref-for-acquire-the-content", - "https://www.w3.org/TR/webaudio/#ref-for-arraybufferview-write", - "https://www.w3.org/TR/webaudio/#ref-for-dfn-get-buffer-source-copy", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-internal-data-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-unknownerror%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-internal-data-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-getchanneldata%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-getchanneldata-channel", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-number-of-channels-slot%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copytochannel%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copyfromchannel%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copyfromchannel%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-getchanneldata%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-acquire-the-content%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#acquire-the-content", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-ArrayBuffer%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-buffersource-detached%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dfn-detach%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-ArrayBuffer%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-getchanneldata%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createbuffer%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-internal-data-slot%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-ArrayBuffer%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-idl-ArrayBuffer%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-getchanneldata%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-acquire-the-content%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-start", - "https://www.w3.org/TR/webaudio/#ref-for-acquire-the-content%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-start%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-acquire-the-content%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-acquire-the-content%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioProcessingEvent%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-acquire-the-content%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioprocessingevent-outputbuffer", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copytochannel%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-acquire-the-content%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#AudioBufferOptions", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferOptions%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobufferoptions-length%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobufferoptions-samplerate%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobufferoptions-numberofchannels%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobufferoptions-length%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobufferoptions-samplerate%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dictionary-audiobufferoptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferOptions%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createbuffer%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audiobufferoptions-length", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createbuffer-length", - "https://www.w3.org/TR/webaudio/#dom-audiobufferoptions-numberofchannels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createbuffer-numberofchannels", - "https://www.w3.org/TR/webaudio/#dom-audiobufferoptions-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createbuffer-samplerate", - "https://www.w3.org/TR/webaudio/#AudioNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A7%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-inputs", - "https://www.w3.org/TR/webaudio/#ref-for-outputs", - "https://www.w3.org/TR/webaudio/#ref-for-source-node", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webaudio/#connection", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webaudio/#input", - "https://www.w3.org/TR/webaudio/#ref-for-connection", - "https://www.w3.org/TR/webaudio/#ref-for-input", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A7%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A7%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-eventtarget%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-connect", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-connect-destinationnode-output-input-destinationnode", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-connect-destinationnode-output-input-output", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-connect-destinationnode-output-input-input", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-connect-destinationparam-output", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-connect-destinationparam-output-destinationparam", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-connect-destinationparam-output-output", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-output", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-output-output", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationnode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationnode-destinationnode", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationnode-output", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationnode-output-destinationnode", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationnode-output-output", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationnode-output-input", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationnode-output-input-destinationnode", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationnode-output-input-output", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationnode-output-input-input", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationparam", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationparam-destinationparam", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationparam-output", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationparam-output-destinationparam", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationparam-output-output", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-context", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-channelcountmode", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-channelinterpretation", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation", - "https://www.w3.org/TR/webaudio/#AudioNode-creation", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webaudio/#factory-method", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A7%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webaudio/#associated", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-associated", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-associated-option-object", - "https://www.w3.org/TR/webaudio/#ref-for-associated-interface", - "https://www.w3.org/TR/webaudio/#audionode-constructor-init", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A6", - "https://www.w3.org/TR/webaudio/#associated-interface", - "https://www.w3.org/TR/webaudio/#associated-option-object", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-eventtarget%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-eventtarget%E2%91%A3", - "https://www.w3.org/TR/webaudio/#enumdef-channelcountmode", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-clamped-max", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-explicit", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-channelcountmode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A1", - "https://www.w3.org/TR/webaudio/#computednumberofchannels", - "https://www.w3.org/TR/webaudio/#ref-for-computednumberofchannels", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-channelcountmode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-channelcountmode-max", - "https://www.w3.org/TR/webaudio/#ref-for-computednumberofchannels%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-channelcountmode-clamped-max", - "https://www.w3.org/TR/webaudio/#ref-for-computednumberofchannels%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-channelcountmode-explicit", - "https://www.w3.org/TR/webaudio/#ref-for-computednumberofchannels%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A5", - "https://www.w3.org/TR/webaudio/#enumdef-channelinterpretation", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-discrete", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-channelinterpretation%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-channelinterpretation-speakers", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-discrete%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-channelinterpretation-discrete", - "https://www.w3.org/TR/webaudio/#AudioNode-tail", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webaudio/#tail-time", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webaudio/#AudioNode-actively-processing", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A5%E2%91%A6", - "https://www.w3.org/TR/webaudio/#actively-processing", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing", - "https://www.w3.org/TR/webaudio/#ref-for-playing", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediaelementaudiosourcenode-mediaelement", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A6", - "https://www.w3.org/TR/webaudio/#MathJax-Element-17-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-116", - "https://www.w3.org/TR/webaudio/#MathJax-Span-117", - "https://www.w3.org/TR/webaudio/#MathJax-Span-118", - "https://www.w3.org/TR/webaudio/#MathJax-Span-119", - "https://www.w3.org/TR/webaudio/#MathJax-Span-120", - "https://www.w3.org/TR/webaudio/#MathJax-Span-121", - "https://www.w3.org/TR/webaudio/#MathJax-Span-122", - "https://www.w3.org/TR/webaudio/#MathJax-Span-123", - "https://www.w3.org/TR/webaudio/#MathJax-Element-17", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocessor-callable-process-slot", - "https://www.w3.org/TR/webaudio/#ref-for-active-source", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A6%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#AudioNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-audionode-channelcount", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#audionode-channelcount-constraints", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A7%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A7%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiodestinationnode-maxchannelcount", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-stereopannernode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audionode-channelcountmode", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-channelcountmode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A1", - "https://www.w3.org/TR/webaudio/#audionode-channelcountmode-constraints", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-destination%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-explicit%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-explicit%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-explicit%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-stereopannernode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-audionode-channelinterpretation", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-channelinterpretation%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A0", - "https://www.w3.org/TR/webaudio/#audionode-channelinterpretation-constraints", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-discrete%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audionode-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A6%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audionode-numberofinputs", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A6%E2%91%A4", - "https://www.w3.org/TR/webaudio/#audionode-source-nodes", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A6%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audionode-numberofoutputs", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A6%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#AudioNode-methods", - "https://www.w3.org/TR/webaudio/#dom-audionode-connect", - "https://www.w3.org/TR/webaudio/#example-bbcc3e9e", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A7%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-connect%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audionode-connect-destinationnode-output-input-destinationnode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A7%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A7%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-invalidaccesserror%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A7%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A8%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A7%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A7%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audionode-connect-destinationnode-output-input-output", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A7%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A7%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-audionode-connect-destinationnode-output-input-input", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A7%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A7%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A8%E2%93%AA", - "https://www.w3.org/TR/webaudio/#cycle", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A8%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A8%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A8%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A8%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audionode-connect-destinationparam-output", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A8%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-a-rate", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A8%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A8%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A8%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A8%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-explicit%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#example-8779522d", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-connect-destinationparam-output%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audionode-connect-destinationparam-output-destinationparam", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-connect-destinationparam-output-destinationparam%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%93%AA%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%93%AA%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-invalidaccesserror%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audionode-connect-destinationparam-output-output", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%93%AA%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%93%AA%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-output", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%93%AA%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%93%AA%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-output%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-output-output", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%93%AA%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%93%AA%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%93%AA%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationnode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode-destinationnode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%93%AA%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-invalidaccesserror%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode-output", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationnode-output%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode-output-destinationnode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-invalidaccesserror%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode-output-output", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode-output-input", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationnode-output-input%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode-output-input-destinationnode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-invalidaccesserror%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode-output-input-output", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode-output-input-input", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationparam", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationparam%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationparam-destinationparam", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-invalidaccesserror%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationparam-output", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationparam-output%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationparam-output-destinationparam", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-invalidaccesserror%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationparam-output-output", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#AudioNodeOptions", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionodeoptions-channelcount", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-channelcountmode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionodeoptions-channelcountmode", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-channelinterpretation%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionodeoptions-channelinterpretation", - "https://www.w3.org/TR/webaudio/#dictionary-audionodeoptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audionodeoptions-channelcount", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-audionodeoptions-channelcountmode", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-channelcountmode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audionodeoptions-channelinterpretation", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-channelinterpretation%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A4", - "https://www.w3.org/TR/webaudio/#AudioParam", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A8%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-a-rate%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-k-rate", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A8", - "https://www.w3.org/TR/webaudio/#k-rate", - "https://www.w3.org/TR/webaudio/#a-rate", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-k-rate", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue", - "https://www.w3.org/TR/webaudio/#simple-nominal-range", - "https://www.w3.org/TR/webaudio/#MathJax-Element-18-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-124", - "https://www.w3.org/TR/webaudio/#MathJax-Span-125", - "https://www.w3.org/TR/webaudio/#MathJax-Span-126", - "https://www.w3.org/TR/webaudio/#MathJax-Span-127", - "https://www.w3.org/TR/webaudio/#MathJax-Span-128", - "https://www.w3.org/TR/webaudio/#MathJax-Span-129", - "https://www.w3.org/TR/webaudio/#MathJax-Span-130", - "https://www.w3.org/TR/webaudio/#MathJax-Span-131", - "https://www.w3.org/TR/webaudio/#MathJax-Span-132", - "https://www.w3.org/TR/webaudio/#MathJax-Span-133", - "https://www.w3.org/TR/webaudio/#MathJax-Span-134", - "https://www.w3.org/TR/webaudio/#MathJax-Span-135", - "https://www.w3.org/TR/webaudio/#MathJax-Span-136", - "https://www.w3.org/TR/webaudio/#MathJax-Span-137", - "https://www.w3.org/TR/webaudio/#MathJax-Span-138", - "https://www.w3.org/TR/webaudio/#MathJax-Span-139", - "https://www.w3.org/TR/webaudio/#MathJax-Span-140", - "https://www.w3.org/TR/webaudio/#MathJax-Span-141", - "https://www.w3.org/TR/webaudio/#MathJax-Span-142", - "https://www.w3.org/TR/webaudio/#MathJax-Span-143", - "https://www.w3.org/TR/webaudio/#MathJax-Span-144", - "https://www.w3.org/TR/webaudio/#MathJax-Span-145", - "https://www.w3.org/TR/webaudio/#MathJax-Span-146", - "https://www.w3.org/TR/webaudio/#MathJax-Span-147", - "https://www.w3.org/TR/webaudio/#MathJax-Span-148", - "https://www.w3.org/TR/webaudio/#MathJax-Element-18", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A1", - "https://www.w3.org/TR/webaudio/#most-positive-single-float", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A1", - "https://www.w3.org/TR/webaudio/#most-negative-single-float", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dfn-automation-event", - "https://www.w3.org/TR/webaudio/#automation-event-time", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A8%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A8%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dfn-automation-method", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvalueattime", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-linearramptovalueattime", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-exponentialramptovalueattime", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-settargetattime", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvaluecurveattime", - "https://www.w3.org/TR/webaudio/#ref-for-automation-event-time", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-19-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-149", - "https://www.w3.org/TR/webaudio/#MathJax-Span-150", - "https://www.w3.org/TR/webaudio/#MathJax-Span-151", - "https://www.w3.org/TR/webaudio/#MathJax-Element-19", - "https://www.w3.org/TR/webaudio/#MathJax-Element-20-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-152", - "https://www.w3.org/TR/webaudio/#MathJax-Span-153", - "https://www.w3.org/TR/webaudio/#MathJax-Span-154", - "https://www.w3.org/TR/webaudio/#MathJax-Element-20", - "https://www.w3.org/TR/webaudio/#MathJax-Element-21-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-155", - "https://www.w3.org/TR/webaudio/#MathJax-Span-156", - "https://www.w3.org/TR/webaudio/#MathJax-Span-157", - "https://www.w3.org/TR/webaudio/#MathJax-Element-21", - "https://www.w3.org/TR/webaudio/#MathJax-Element-22-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-158", - "https://www.w3.org/TR/webaudio/#MathJax-Span-159", - "https://www.w3.org/TR/webaudio/#MathJax-Span-160", - "https://www.w3.org/TR/webaudio/#MathJax-Span-161", - "https://www.w3.org/TR/webaudio/#MathJax-Span-162", - "https://www.w3.org/TR/webaudio/#MathJax-Element-22", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dfn-automation-method", - "https://www.w3.org/TR/webaudio/#MathJax-Element-23-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-163", - "https://www.w3.org/TR/webaudio/#MathJax-Span-164", - "https://www.w3.org/TR/webaudio/#MathJax-Span-165", - "https://www.w3.org/TR/webaudio/#MathJax-Span-166", - "https://www.w3.org/TR/webaudio/#MathJax-Span-167", - "https://www.w3.org/TR/webaudio/#MathJax-Span-168", - "https://www.w3.org/TR/webaudio/#MathJax-Span-169", - "https://www.w3.org/TR/webaudio/#MathJax-Span-170", - "https://www.w3.org/TR/webaudio/#MathJax-Span-171", - "https://www.w3.org/TR/webaudio/#MathJax-Element-23", - "https://www.w3.org/TR/webaudio/#MathJax-Element-24-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-172", - "https://www.w3.org/TR/webaudio/#MathJax-Span-173", - "https://www.w3.org/TR/webaudio/#MathJax-Span-174", - "https://www.w3.org/TR/webaudio/#MathJax-Element-24", - "https://www.w3.org/TR/webaudio/#MathJax-Element-25-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-175", - "https://www.w3.org/TR/webaudio/#MathJax-Span-176", - "https://www.w3.org/TR/webaudio/#MathJax-Span-177", - "https://www.w3.org/TR/webaudio/#MathJax-Element-25", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#enumdef-automationrate", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-k-rate%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-automationrate", - "https://www.w3.org/TR/webaudio/#dom-automationrate-a-rate", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-a-rate%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-automationrate-k-rate", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-k-rate%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audioparam-current-value-slot", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-automationrate%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvalueattime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audioparam-setvalueattime-value-starttime-value", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audioparam-setvalueattime-value-starttime-starttime", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-linearramptovalueattime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audioparam-linearramptovalueattime-value-endtime-value", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audioparam-linearramptovalueattime-value-endtime-endtime", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-exponentialramptovalueattime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audioparam-exponentialramptovalueattime-value-endtime-value", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audioparam-exponentialramptovalueattime-value-endtime-endtime", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-settargetattime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audioparam-settargetattime-target-starttime-timeconstant-target", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audioparam-settargetattime-target-starttime-timeconstant-starttime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audioparam-settargetattime-target-starttime-timeconstant-timeconstant", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-sequence%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-audioparam-setvaluecurveattime-values-starttime-duration-values", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-audioparam-setvaluecurveattime-values-starttime-duration-starttime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-audioparam-setvaluecurveattime-values-starttime-duration-duration", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelscheduledvalues", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-audioparam-cancelscheduledvalues-canceltime-canceltime", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelandholdattime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-audioparam-cancelandholdattime-canceltime-canceltime", - "https://www.w3.org/TR/webaudio/#AudioParam-attributes", - "https://www.w3.org/TR/webaudio/#dom-audioparam-automationrate", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-automationrate%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webaudio/#audioparam-automation-rate-constraints", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-playbackrate", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-detune", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-k-rate%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-threshold", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-knee", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-ratio", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-attack", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-release", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-k-rate%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-panningmodel", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panningmodeltype-hrtf", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-k-rate%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audioparam-defaultvalue", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-audioparam-maxvalue", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-nominal-range", - "https://www.w3.org/TR/webaudio/#dom-audioparam-minvalue", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-nominal-range%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audioparam-value", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-current-value-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-current-value-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvalueattime%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A8%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-current-value-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#AudioParam-methods", - "https://www.w3.org/TR/webaudio/#dom-audioparam-cancelandholdattime", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelscheduledvalues%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelandholdattime-canceltime", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelandholdattime-canceltime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelandholdattime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelandholdattime%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelandholdattime-canceltime%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelandholdattime%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-26-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-178", - "https://www.w3.org/TR/webaudio/#MathJax-Span-179", - "https://www.w3.org/TR/webaudio/#MathJax-Span-180", - "https://www.w3.org/TR/webaudio/#MathJax-Span-181", - "https://www.w3.org/TR/webaudio/#MathJax-Span-182", - "https://www.w3.org/TR/webaudio/#MathJax-Element-26", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelandholdattime-canceltime%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-27-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-183", - "https://www.w3.org/TR/webaudio/#MathJax-Span-184", - "https://www.w3.org/TR/webaudio/#MathJax-Span-185", - "https://www.w3.org/TR/webaudio/#MathJax-Span-186", - "https://www.w3.org/TR/webaudio/#MathJax-Span-187", - "https://www.w3.org/TR/webaudio/#MathJax-Element-27", - "https://www.w3.org/TR/webaudio/#MathJax-Element-28-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-188", - "https://www.w3.org/TR/webaudio/#MathJax-Span-189", - "https://www.w3.org/TR/webaudio/#MathJax-Span-190", - "https://www.w3.org/TR/webaudio/#MathJax-Span-191", - "https://www.w3.org/TR/webaudio/#MathJax-Span-192", - "https://www.w3.org/TR/webaudio/#MathJax-Element-28", - "https://www.w3.org/TR/webaudio/#MathJax-Element-29-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-193", - "https://www.w3.org/TR/webaudio/#MathJax-Span-194", - "https://www.w3.org/TR/webaudio/#MathJax-Span-195", - "https://www.w3.org/TR/webaudio/#MathJax-Span-196", - "https://www.w3.org/TR/webaudio/#MathJax-Span-197", - "https://www.w3.org/TR/webaudio/#MathJax-Element-29", - "https://www.w3.org/TR/webaudio/#MathJax-Element-30-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-198", - "https://www.w3.org/TR/webaudio/#MathJax-Span-199", - "https://www.w3.org/TR/webaudio/#MathJax-Span-200", - "https://www.w3.org/TR/webaudio/#MathJax-Span-201", - "https://www.w3.org/TR/webaudio/#MathJax-Span-202", - "https://www.w3.org/TR/webaudio/#MathJax-Span-203", - "https://www.w3.org/TR/webaudio/#MathJax-Span-204", - "https://www.w3.org/TR/webaudio/#MathJax-Span-205", - "https://www.w3.org/TR/webaudio/#MathJax-Span-206", - "https://www.w3.org/TR/webaudio/#MathJax-Element-30", - "https://www.w3.org/TR/webaudio/#MathJax-Element-31-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-207", - "https://www.w3.org/TR/webaudio/#MathJax-Span-208", - "https://www.w3.org/TR/webaudio/#MathJax-Span-209", - "https://www.w3.org/TR/webaudio/#MathJax-Span-210", - "https://www.w3.org/TR/webaudio/#MathJax-Span-211", - "https://www.w3.org/TR/webaudio/#MathJax-Element-31", - "https://www.w3.org/TR/webaudio/#MathJax-Element-32-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-212", - "https://www.w3.org/TR/webaudio/#MathJax-Span-213", - "https://www.w3.org/TR/webaudio/#MathJax-Span-214", - "https://www.w3.org/TR/webaudio/#MathJax-Span-215", - "https://www.w3.org/TR/webaudio/#MathJax-Span-216", - "https://www.w3.org/TR/webaudio/#MathJax-Element-32", - "https://www.w3.org/TR/webaudio/#MathJax-Element-33-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-217", - "https://www.w3.org/TR/webaudio/#MathJax-Span-218", - "https://www.w3.org/TR/webaudio/#MathJax-Span-219", - "https://www.w3.org/TR/webaudio/#MathJax-Span-220", - "https://www.w3.org/TR/webaudio/#MathJax-Span-221", - "https://www.w3.org/TR/webaudio/#MathJax-Element-33", - "https://www.w3.org/TR/webaudio/#MathJax-Element-34-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-222", - "https://www.w3.org/TR/webaudio/#MathJax-Span-223", - "https://www.w3.org/TR/webaudio/#MathJax-Span-224", - "https://www.w3.org/TR/webaudio/#MathJax-Span-225", - "https://www.w3.org/TR/webaudio/#MathJax-Span-226", - "https://www.w3.org/TR/webaudio/#MathJax-Span-227", - "https://www.w3.org/TR/webaudio/#MathJax-Span-228", - "https://www.w3.org/TR/webaudio/#MathJax-Span-229", - "https://www.w3.org/TR/webaudio/#MathJax-Span-230", - "https://www.w3.org/TR/webaudio/#MathJax-Element-34", - "https://www.w3.org/TR/webaudio/#MathJax-Element-35-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-231", - "https://www.w3.org/TR/webaudio/#MathJax-Span-232", - "https://www.w3.org/TR/webaudio/#MathJax-Span-233", - "https://www.w3.org/TR/webaudio/#MathJax-Span-234", - "https://www.w3.org/TR/webaudio/#MathJax-Span-235", - "https://www.w3.org/TR/webaudio/#MathJax-Element-35", - "https://www.w3.org/TR/webaudio/#MathJax-Element-36-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-236", - "https://www.w3.org/TR/webaudio/#MathJax-Span-237", - "https://www.w3.org/TR/webaudio/#MathJax-Span-238", - "https://www.w3.org/TR/webaudio/#MathJax-Span-239", - "https://www.w3.org/TR/webaudio/#MathJax-Span-240", - "https://www.w3.org/TR/webaudio/#MathJax-Element-36", - "https://www.w3.org/TR/webaudio/#MathJax-Element-37-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-241", - "https://www.w3.org/TR/webaudio/#MathJax-Span-242", - "https://www.w3.org/TR/webaudio/#MathJax-Span-243", - "https://www.w3.org/TR/webaudio/#MathJax-Span-244", - "https://www.w3.org/TR/webaudio/#MathJax-Span-245", - "https://www.w3.org/TR/webaudio/#MathJax-Element-37", - "https://www.w3.org/TR/webaudio/#MathJax-Element-38-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-246", - "https://www.w3.org/TR/webaudio/#MathJax-Span-247", - "https://www.w3.org/TR/webaudio/#MathJax-Span-248", - "https://www.w3.org/TR/webaudio/#MathJax-Span-249", - "https://www.w3.org/TR/webaudio/#MathJax-Span-250", - "https://www.w3.org/TR/webaudio/#MathJax-Element-38", - "https://www.w3.org/TR/webaudio/#MathJax-Element-39-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-251", - "https://www.w3.org/TR/webaudio/#MathJax-Span-252", - "https://www.w3.org/TR/webaudio/#MathJax-Span-253", - "https://www.w3.org/TR/webaudio/#MathJax-Span-254", - "https://www.w3.org/TR/webaudio/#MathJax-Span-255", - "https://www.w3.org/TR/webaudio/#MathJax-Element-39", - "https://www.w3.org/TR/webaudio/#MathJax-Element-40-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-256", - "https://www.w3.org/TR/webaudio/#MathJax-Span-257", - "https://www.w3.org/TR/webaudio/#MathJax-Span-258", - "https://www.w3.org/TR/webaudio/#MathJax-Span-259", - "https://www.w3.org/TR/webaudio/#MathJax-Span-260", - "https://www.w3.org/TR/webaudio/#MathJax-Element-40", - "https://www.w3.org/TR/webaudio/#MathJax-Element-41-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-261", - "https://www.w3.org/TR/webaudio/#MathJax-Span-262", - "https://www.w3.org/TR/webaudio/#MathJax-Span-263", - "https://www.w3.org/TR/webaudio/#MathJax-Span-264", - "https://www.w3.org/TR/webaudio/#MathJax-Span-265", - "https://www.w3.org/TR/webaudio/#MathJax-Element-41", - "https://www.w3.org/TR/webaudio/#MathJax-Element-42-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-266", - "https://www.w3.org/TR/webaudio/#MathJax-Span-267", - "https://www.w3.org/TR/webaudio/#MathJax-Span-268", - "https://www.w3.org/TR/webaudio/#MathJax-Span-269", - "https://www.w3.org/TR/webaudio/#MathJax-Span-270", - "https://www.w3.org/TR/webaudio/#MathJax-Element-42", - "https://www.w3.org/TR/webaudio/#MathJax-Element-43-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-271", - "https://www.w3.org/TR/webaudio/#MathJax-Span-272", - "https://www.w3.org/TR/webaudio/#MathJax-Span-273", - "https://www.w3.org/TR/webaudio/#MathJax-Span-274", - "https://www.w3.org/TR/webaudio/#MathJax-Span-275", - "https://www.w3.org/TR/webaudio/#MathJax-Element-43", - "https://www.w3.org/TR/webaudio/#MathJax-Element-44-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-276", - "https://www.w3.org/TR/webaudio/#MathJax-Span-277", - "https://www.w3.org/TR/webaudio/#MathJax-Span-278", - "https://www.w3.org/TR/webaudio/#MathJax-Span-279", - "https://www.w3.org/TR/webaudio/#MathJax-Span-280", - "https://www.w3.org/TR/webaudio/#MathJax-Element-44", - "https://www.w3.org/TR/webaudio/#MathJax-Element-45-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-281", - "https://www.w3.org/TR/webaudio/#MathJax-Span-282", - "https://www.w3.org/TR/webaudio/#MathJax-Span-283", - "https://www.w3.org/TR/webaudio/#MathJax-Span-284", - "https://www.w3.org/TR/webaudio/#MathJax-Span-285", - "https://www.w3.org/TR/webaudio/#MathJax-Element-45", - "https://www.w3.org/TR/webaudio/#MathJax-Element-46-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-286", - "https://www.w3.org/TR/webaudio/#MathJax-Span-287", - "https://www.w3.org/TR/webaudio/#MathJax-Span-288", - "https://www.w3.org/TR/webaudio/#MathJax-Element-46", - "https://www.w3.org/TR/webaudio/#MathJax-Element-47-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-289", - "https://www.w3.org/TR/webaudio/#MathJax-Span-290", - "https://www.w3.org/TR/webaudio/#MathJax-Span-291", - "https://www.w3.org/TR/webaudio/#MathJax-Span-292", - "https://www.w3.org/TR/webaudio/#MathJax-Span-293", - "https://www.w3.org/TR/webaudio/#MathJax-Span-294", - "https://www.w3.org/TR/webaudio/#MathJax-Span-295", - "https://www.w3.org/TR/webaudio/#MathJax-Span-296", - "https://www.w3.org/TR/webaudio/#MathJax-Span-297", - "https://www.w3.org/TR/webaudio/#MathJax-Span-298", - "https://www.w3.org/TR/webaudio/#MathJax-Span-299", - "https://www.w3.org/TR/webaudio/#MathJax-Element-47", - "https://www.w3.org/TR/webaudio/#MathJax-Element-48-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-300", - "https://www.w3.org/TR/webaudio/#MathJax-Span-301", - "https://www.w3.org/TR/webaudio/#MathJax-Span-302", - "https://www.w3.org/TR/webaudio/#MathJax-Span-303", - "https://www.w3.org/TR/webaudio/#MathJax-Span-304", - "https://www.w3.org/TR/webaudio/#MathJax-Element-48", - "https://www.w3.org/TR/webaudio/#MathJax-Element-49-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-305", - "https://www.w3.org/TR/webaudio/#MathJax-Span-306", - "https://www.w3.org/TR/webaudio/#MathJax-Span-307", - "https://www.w3.org/TR/webaudio/#MathJax-Span-308", - "https://www.w3.org/TR/webaudio/#MathJax-Span-309", - "https://www.w3.org/TR/webaudio/#MathJax-Span-310", - "https://www.w3.org/TR/webaudio/#MathJax-Span-311", - "https://www.w3.org/TR/webaudio/#MathJax-Span-312", - "https://www.w3.org/TR/webaudio/#MathJax-Span-313", - "https://www.w3.org/TR/webaudio/#MathJax-Element-49", - "https://www.w3.org/TR/webaudio/#MathJax-Element-50-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-314", - "https://www.w3.org/TR/webaudio/#MathJax-Span-315", - "https://www.w3.org/TR/webaudio/#MathJax-Span-316", - "https://www.w3.org/TR/webaudio/#MathJax-Span-317", - "https://www.w3.org/TR/webaudio/#MathJax-Span-318", - "https://www.w3.org/TR/webaudio/#MathJax-Element-50", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelandholdattime%E2%91%A3", - "https://www.w3.org/TR/webaudio/#MathJax-Element-51-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-319", - "https://www.w3.org/TR/webaudio/#MathJax-Span-320", - "https://www.w3.org/TR/webaudio/#MathJax-Span-321", - "https://www.w3.org/TR/webaudio/#MathJax-Span-322", - "https://www.w3.org/TR/webaudio/#MathJax-Span-323", - "https://www.w3.org/TR/webaudio/#MathJax-Element-51", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelandholdattime%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audioparam-cancelandholdattime-canceltime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A8%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelandholdattime-canceltime%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-audioparam-cancelscheduledvalues", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelscheduledvalues-canceltime", - "https://www.w3.org/TR/webaudio/#ref-for-automation-event-time%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelscheduledvalues-canceltime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelandholdattime%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelscheduledvalues-canceltime%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-52-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-324", - "https://www.w3.org/TR/webaudio/#MathJax-Span-325", - "https://www.w3.org/TR/webaudio/#MathJax-Span-326", - "https://www.w3.org/TR/webaudio/#MathJax-Span-327", - "https://www.w3.org/TR/webaudio/#MathJax-Span-328", - "https://www.w3.org/TR/webaudio/#MathJax-Element-52", - "https://www.w3.org/TR/webaudio/#MathJax-Element-53-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-329", - "https://www.w3.org/TR/webaudio/#MathJax-Span-330", - "https://www.w3.org/TR/webaudio/#MathJax-Span-331", - "https://www.w3.org/TR/webaudio/#MathJax-Span-332", - "https://www.w3.org/TR/webaudio/#MathJax-Span-333", - "https://www.w3.org/TR/webaudio/#MathJax-Element-53", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvaluecurveattime-starttime", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvaluecurveattime-duration", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelscheduledvalues-canceltime%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-54-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-334", - "https://www.w3.org/TR/webaudio/#MathJax-Span-335", - "https://www.w3.org/TR/webaudio/#MathJax-Span-336", - "https://www.w3.org/TR/webaudio/#MathJax-Span-337", - "https://www.w3.org/TR/webaudio/#MathJax-Span-338", - "https://www.w3.org/TR/webaudio/#MathJax-Span-339", - "https://www.w3.org/TR/webaudio/#MathJax-Span-340", - "https://www.w3.org/TR/webaudio/#MathJax-Span-341", - "https://www.w3.org/TR/webaudio/#MathJax-Span-342", - "https://www.w3.org/TR/webaudio/#MathJax-Span-343", - "https://www.w3.org/TR/webaudio/#MathJax-Span-344", - "https://www.w3.org/TR/webaudio/#MathJax-Span-345", - "https://www.w3.org/TR/webaudio/#MathJax-Span-346", - "https://www.w3.org/TR/webaudio/#MathJax-Span-347", - "https://www.w3.org/TR/webaudio/#MathJax-Span-348", - "https://www.w3.org/TR/webaudio/#MathJax-Element-54", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelscheduledvalues%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audioparam-cancelscheduledvalues-canceltime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A8%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audioparam-exponentialramptovalueattime", - "https://www.w3.org/TR/webaudio/#MathJax-Element-55-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-349", - "https://www.w3.org/TR/webaudio/#MathJax-Span-350", - "https://www.w3.org/TR/webaudio/#MathJax-Span-351", - "https://www.w3.org/TR/webaudio/#MathJax-Span-352", - "https://www.w3.org/TR/webaudio/#MathJax-Span-353", - "https://www.w3.org/TR/webaudio/#MathJax-Span-354", - "https://www.w3.org/TR/webaudio/#MathJax-Span-355", - "https://www.w3.org/TR/webaudio/#MathJax-Span-356", - "https://www.w3.org/TR/webaudio/#MathJax-Span-357", - "https://www.w3.org/TR/webaudio/#MathJax-Span-358", - "https://www.w3.org/TR/webaudio/#MathJax-Span-359", - "https://www.w3.org/TR/webaudio/#MathJax-Element-55", - "https://www.w3.org/TR/webaudio/#MathJax-Element-56-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-360", - "https://www.w3.org/TR/webaudio/#MathJax-Span-361", - "https://www.w3.org/TR/webaudio/#MathJax-Span-362", - "https://www.w3.org/TR/webaudio/#MathJax-Span-363", - "https://www.w3.org/TR/webaudio/#MathJax-Span-364", - "https://www.w3.org/TR/webaudio/#MathJax-Element-56", - "https://www.w3.org/TR/webaudio/#MathJax-Element-57-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-365", - "https://www.w3.org/TR/webaudio/#MathJax-Span-366", - "https://www.w3.org/TR/webaudio/#MathJax-Span-367", - "https://www.w3.org/TR/webaudio/#MathJax-Span-368", - "https://www.w3.org/TR/webaudio/#MathJax-Span-369", - "https://www.w3.org/TR/webaudio/#MathJax-Element-57", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-exponentialramptovalueattime-endtime", - "https://www.w3.org/TR/webaudio/#MathJax-Element-58-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-370", - "https://www.w3.org/TR/webaudio/#MathJax-Span-371", - "https://www.w3.org/TR/webaudio/#MathJax-Span-372", - "https://www.w3.org/TR/webaudio/#MathJax-Span-373", - "https://www.w3.org/TR/webaudio/#MathJax-Span-374", - "https://www.w3.org/TR/webaudio/#MathJax-Span-375", - "https://www.w3.org/TR/webaudio/#MathJax-Span-376", - "https://www.w3.org/TR/webaudio/#MathJax-Span-377", - "https://www.w3.org/TR/webaudio/#MathJax-Span-378", - "https://www.w3.org/TR/webaudio/#MathJax-Span-379", - "https://www.w3.org/TR/webaudio/#MathJax-Span-380", - "https://www.w3.org/TR/webaudio/#MathJax-Span-381", - "https://www.w3.org/TR/webaudio/#MathJax-Span-382", - "https://www.w3.org/TR/webaudio/#MathJax-Span-383", - "https://www.w3.org/TR/webaudio/#MathJax-Span-384", - "https://www.w3.org/TR/webaudio/#MathJax-Span-385", - "https://www.w3.org/TR/webaudio/#MathJax-Span-386", - "https://www.w3.org/TR/webaudio/#MathJax-Span-387", - "https://www.w3.org/TR/webaudio/#MathJax-Span-388", - "https://www.w3.org/TR/webaudio/#MathJax-Span-389", - "https://www.w3.org/TR/webaudio/#MathJax-Span-390", - "https://www.w3.org/TR/webaudio/#MathJax-Span-391", - "https://www.w3.org/TR/webaudio/#MathJax-Span-392", - "https://www.w3.org/TR/webaudio/#MathJax-Span-393", - "https://www.w3.org/TR/webaudio/#MathJax-Span-394", - "https://www.w3.org/TR/webaudio/#MathJax-Span-395", - "https://www.w3.org/TR/webaudio/#MathJax-Span-396", - "https://www.w3.org/TR/webaudio/#MathJax-Span-397", - "https://www.w3.org/TR/webaudio/#MathJax-Span-398", - "https://www.w3.org/TR/webaudio/#MathJax-Span-399", - "https://www.w3.org/TR/webaudio/#MathJax-Span-400", - "https://www.w3.org/TR/webaudio/#MathJax-Span-401", - "https://www.w3.org/TR/webaudio/#MathJax-Span-402", - "https://www.w3.org/TR/webaudio/#MathJax-Span-403", - "https://www.w3.org/TR/webaudio/#MathJax-Span-404", - "https://www.w3.org/TR/webaudio/#MathJax-Span-405", - "https://www.w3.org/TR/webaudio/#MathJax-Element-58", - "https://www.w3.org/TR/webaudio/#MathJax-Element-59-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-406", - "https://www.w3.org/TR/webaudio/#MathJax-Span-407", - "https://www.w3.org/TR/webaudio/#MathJax-Span-408", - "https://www.w3.org/TR/webaudio/#MathJax-Span-409", - "https://www.w3.org/TR/webaudio/#MathJax-Span-410", - "https://www.w3.org/TR/webaudio/#MathJax-Element-59", - "https://www.w3.org/TR/webaudio/#MathJax-Element-60-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-411", - "https://www.w3.org/TR/webaudio/#MathJax-Span-412", - "https://www.w3.org/TR/webaudio/#MathJax-Span-413", - "https://www.w3.org/TR/webaudio/#MathJax-Span-414", - "https://www.w3.org/TR/webaudio/#MathJax-Span-415", - "https://www.w3.org/TR/webaudio/#MathJax-Element-60", - "https://www.w3.org/TR/webaudio/#MathJax-Element-61-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-416", - "https://www.w3.org/TR/webaudio/#MathJax-Span-417", - "https://www.w3.org/TR/webaudio/#MathJax-Span-418", - "https://www.w3.org/TR/webaudio/#MathJax-Span-419", - "https://www.w3.org/TR/webaudio/#MathJax-Span-420", - "https://www.w3.org/TR/webaudio/#MathJax-Element-61", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-exponentialramptovalueattime-value", - "https://www.w3.org/TR/webaudio/#MathJax-Element-62-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-421", - "https://www.w3.org/TR/webaudio/#MathJax-Span-422", - "https://www.w3.org/TR/webaudio/#MathJax-Span-423", - "https://www.w3.org/TR/webaudio/#MathJax-Span-424", - "https://www.w3.org/TR/webaudio/#MathJax-Span-425", - "https://www.w3.org/TR/webaudio/#MathJax-Element-62", - "https://www.w3.org/TR/webaudio/#MathJax-Element-63-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-426", - "https://www.w3.org/TR/webaudio/#MathJax-Span-427", - "https://www.w3.org/TR/webaudio/#MathJax-Span-428", - "https://www.w3.org/TR/webaudio/#MathJax-Span-429", - "https://www.w3.org/TR/webaudio/#MathJax-Span-430", - "https://www.w3.org/TR/webaudio/#MathJax-Element-63", - "https://www.w3.org/TR/webaudio/#MathJax-Element-64-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-431", - "https://www.w3.org/TR/webaudio/#MathJax-Span-432", - "https://www.w3.org/TR/webaudio/#MathJax-Span-433", - "https://www.w3.org/TR/webaudio/#MathJax-Span-434", - "https://www.w3.org/TR/webaudio/#MathJax-Span-435", - "https://www.w3.org/TR/webaudio/#MathJax-Element-64", - "https://www.w3.org/TR/webaudio/#MathJax-Element-65-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-436", - "https://www.w3.org/TR/webaudio/#MathJax-Span-437", - "https://www.w3.org/TR/webaudio/#MathJax-Span-438", - "https://www.w3.org/TR/webaudio/#MathJax-Span-439", - "https://www.w3.org/TR/webaudio/#MathJax-Span-440", - "https://www.w3.org/TR/webaudio/#MathJax-Span-441", - "https://www.w3.org/TR/webaudio/#MathJax-Span-442", - "https://www.w3.org/TR/webaudio/#MathJax-Span-443", - "https://www.w3.org/TR/webaudio/#MathJax-Span-444", - "https://www.w3.org/TR/webaudio/#MathJax-Span-445", - "https://www.w3.org/TR/webaudio/#MathJax-Element-65", - "https://www.w3.org/TR/webaudio/#MathJax-Element-66-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-446", - "https://www.w3.org/TR/webaudio/#MathJax-Span-447", - "https://www.w3.org/TR/webaudio/#MathJax-Span-448", - "https://www.w3.org/TR/webaudio/#MathJax-Span-449", - "https://www.w3.org/TR/webaudio/#MathJax-Span-450", - "https://www.w3.org/TR/webaudio/#MathJax-Span-451", - "https://www.w3.org/TR/webaudio/#MathJax-Span-452", - "https://www.w3.org/TR/webaudio/#MathJax-Span-453", - "https://www.w3.org/TR/webaudio/#MathJax-Span-454", - "https://www.w3.org/TR/webaudio/#MathJax-Span-455", - "https://www.w3.org/TR/webaudio/#MathJax-Span-456", - "https://www.w3.org/TR/webaudio/#MathJax-Element-66", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-settargetattime%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-67-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-457", - "https://www.w3.org/TR/webaudio/#MathJax-Span-458", - "https://www.w3.org/TR/webaudio/#MathJax-Span-459", - "https://www.w3.org/TR/webaudio/#MathJax-Span-460", - "https://www.w3.org/TR/webaudio/#MathJax-Span-461", - "https://www.w3.org/TR/webaudio/#MathJax-Span-462", - "https://www.w3.org/TR/webaudio/#MathJax-Span-463", - "https://www.w3.org/TR/webaudio/#MathJax-Element-67", - "https://www.w3.org/TR/webaudio/#MathJax-Element-68-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-464", - "https://www.w3.org/TR/webaudio/#MathJax-Span-465", - "https://www.w3.org/TR/webaudio/#MathJax-Span-466", - "https://www.w3.org/TR/webaudio/#MathJax-Span-467", - "https://www.w3.org/TR/webaudio/#MathJax-Span-468", - "https://www.w3.org/TR/webaudio/#MathJax-Span-469", - "https://www.w3.org/TR/webaudio/#MathJax-Span-470", - "https://www.w3.org/TR/webaudio/#MathJax-Span-471", - "https://www.w3.org/TR/webaudio/#MathJax-Span-472", - "https://www.w3.org/TR/webaudio/#MathJax-Span-473", - "https://www.w3.org/TR/webaudio/#MathJax-Element-68", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvalueattime%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-exponentialramptovalueattime%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-69-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-474", - "https://www.w3.org/TR/webaudio/#MathJax-Span-475", - "https://www.w3.org/TR/webaudio/#MathJax-Span-476", - "https://www.w3.org/TR/webaudio/#MathJax-Span-477", - "https://www.w3.org/TR/webaudio/#MathJax-Span-478", - "https://www.w3.org/TR/webaudio/#MathJax-Element-69", - "https://www.w3.org/TR/webaudio/#MathJax-Element-70-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-479", - "https://www.w3.org/TR/webaudio/#MathJax-Span-480", - "https://www.w3.org/TR/webaudio/#MathJax-Span-481", - "https://www.w3.org/TR/webaudio/#MathJax-Span-482", - "https://www.w3.org/TR/webaudio/#MathJax-Span-483", - "https://www.w3.org/TR/webaudio/#MathJax-Element-70", - "https://www.w3.org/TR/webaudio/#MathJax-Element-71-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-484", - "https://www.w3.org/TR/webaudio/#MathJax-Span-485", - "https://www.w3.org/TR/webaudio/#MathJax-Span-486", - "https://www.w3.org/TR/webaudio/#MathJax-Span-487", - "https://www.w3.org/TR/webaudio/#MathJax-Span-488", - "https://www.w3.org/TR/webaudio/#MathJax-Element-71", - "https://www.w3.org/TR/webaudio/#MathJax-Element-72-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-489", - "https://www.w3.org/TR/webaudio/#MathJax-Span-490", - "https://www.w3.org/TR/webaudio/#MathJax-Span-491", - "https://www.w3.org/TR/webaudio/#MathJax-Span-492", - "https://www.w3.org/TR/webaudio/#MathJax-Span-493", - "https://www.w3.org/TR/webaudio/#MathJax-Element-72", - "https://www.w3.org/TR/webaudio/#MathJax-Element-73-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-494", - "https://www.w3.org/TR/webaudio/#MathJax-Span-495", - "https://www.w3.org/TR/webaudio/#MathJax-Span-496", - "https://www.w3.org/TR/webaudio/#MathJax-Span-497", - "https://www.w3.org/TR/webaudio/#MathJax-Span-498", - "https://www.w3.org/TR/webaudio/#MathJax-Element-73", - "https://www.w3.org/TR/webaudio/#MathJax-Element-74-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-499", - "https://www.w3.org/TR/webaudio/#MathJax-Span-500", - "https://www.w3.org/TR/webaudio/#MathJax-Span-501", - "https://www.w3.org/TR/webaudio/#MathJax-Span-502", - "https://www.w3.org/TR/webaudio/#MathJax-Span-503", - "https://www.w3.org/TR/webaudio/#MathJax-Element-74", - "https://www.w3.org/TR/webaudio/#MathJax-Element-75-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-504", - "https://www.w3.org/TR/webaudio/#MathJax-Span-505", - "https://www.w3.org/TR/webaudio/#MathJax-Span-506", - "https://www.w3.org/TR/webaudio/#MathJax-Span-507", - "https://www.w3.org/TR/webaudio/#MathJax-Span-508", - "https://www.w3.org/TR/webaudio/#MathJax-Element-75", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-exponentialramptovalueattime%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audioparam-exponentialramptovalueattime-value", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audioparam-exponentialramptovalueattime-endtime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A8%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audioparam-linearramptovalueattime", - "https://www.w3.org/TR/webaudio/#MathJax-Element-76-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-509", - "https://www.w3.org/TR/webaudio/#MathJax-Span-510", - "https://www.w3.org/TR/webaudio/#MathJax-Span-511", - "https://www.w3.org/TR/webaudio/#MathJax-Span-512", - "https://www.w3.org/TR/webaudio/#MathJax-Span-513", - "https://www.w3.org/TR/webaudio/#MathJax-Span-514", - "https://www.w3.org/TR/webaudio/#MathJax-Span-515", - "https://www.w3.org/TR/webaudio/#MathJax-Span-516", - "https://www.w3.org/TR/webaudio/#MathJax-Span-517", - "https://www.w3.org/TR/webaudio/#MathJax-Span-518", - "https://www.w3.org/TR/webaudio/#MathJax-Span-519", - "https://www.w3.org/TR/webaudio/#MathJax-Element-76", - "https://www.w3.org/TR/webaudio/#MathJax-Element-77-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-520", - "https://www.w3.org/TR/webaudio/#MathJax-Span-521", - "https://www.w3.org/TR/webaudio/#MathJax-Span-522", - "https://www.w3.org/TR/webaudio/#MathJax-Span-523", - "https://www.w3.org/TR/webaudio/#MathJax-Span-524", - "https://www.w3.org/TR/webaudio/#MathJax-Element-77", - "https://www.w3.org/TR/webaudio/#MathJax-Element-78-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-525", - "https://www.w3.org/TR/webaudio/#MathJax-Span-526", - "https://www.w3.org/TR/webaudio/#MathJax-Span-527", - "https://www.w3.org/TR/webaudio/#MathJax-Span-528", - "https://www.w3.org/TR/webaudio/#MathJax-Span-529", - "https://www.w3.org/TR/webaudio/#MathJax-Element-78", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-linearramptovalueattime-endtime", - "https://www.w3.org/TR/webaudio/#MathJax-Element-79-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-530", - "https://www.w3.org/TR/webaudio/#MathJax-Span-531", - "https://www.w3.org/TR/webaudio/#MathJax-Span-532", - "https://www.w3.org/TR/webaudio/#MathJax-Span-533", - "https://www.w3.org/TR/webaudio/#MathJax-Span-534", - "https://www.w3.org/TR/webaudio/#MathJax-Span-535", - "https://www.w3.org/TR/webaudio/#MathJax-Span-536", - "https://www.w3.org/TR/webaudio/#MathJax-Span-537", - "https://www.w3.org/TR/webaudio/#MathJax-Span-538", - "https://www.w3.org/TR/webaudio/#MathJax-Span-539", - "https://www.w3.org/TR/webaudio/#MathJax-Span-540", - "https://www.w3.org/TR/webaudio/#MathJax-Span-541", - "https://www.w3.org/TR/webaudio/#MathJax-Span-542", - "https://www.w3.org/TR/webaudio/#MathJax-Span-543", - "https://www.w3.org/TR/webaudio/#MathJax-Span-544", - "https://www.w3.org/TR/webaudio/#MathJax-Span-545", - "https://www.w3.org/TR/webaudio/#MathJax-Span-546", - "https://www.w3.org/TR/webaudio/#MathJax-Span-547", - "https://www.w3.org/TR/webaudio/#MathJax-Span-548", - "https://www.w3.org/TR/webaudio/#MathJax-Span-549", - "https://www.w3.org/TR/webaudio/#MathJax-Span-550", - "https://www.w3.org/TR/webaudio/#MathJax-Span-551", - "https://www.w3.org/TR/webaudio/#MathJax-Span-552", - "https://www.w3.org/TR/webaudio/#MathJax-Span-553", - "https://www.w3.org/TR/webaudio/#MathJax-Span-554", - "https://www.w3.org/TR/webaudio/#MathJax-Span-555", - "https://www.w3.org/TR/webaudio/#MathJax-Span-556", - "https://www.w3.org/TR/webaudio/#MathJax-Span-557", - "https://www.w3.org/TR/webaudio/#MathJax-Span-558", - "https://www.w3.org/TR/webaudio/#MathJax-Span-559", - "https://www.w3.org/TR/webaudio/#MathJax-Span-560", - "https://www.w3.org/TR/webaudio/#MathJax-Span-561", - "https://www.w3.org/TR/webaudio/#MathJax-Span-562", - "https://www.w3.org/TR/webaudio/#MathJax-Span-563", - "https://www.w3.org/TR/webaudio/#MathJax-Span-564", - "https://www.w3.org/TR/webaudio/#MathJax-Element-79", - "https://www.w3.org/TR/webaudio/#MathJax-Element-80-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-565", - "https://www.w3.org/TR/webaudio/#MathJax-Span-566", - "https://www.w3.org/TR/webaudio/#MathJax-Span-567", - "https://www.w3.org/TR/webaudio/#MathJax-Span-568", - "https://www.w3.org/TR/webaudio/#MathJax-Span-569", - "https://www.w3.org/TR/webaudio/#MathJax-Element-80", - "https://www.w3.org/TR/webaudio/#MathJax-Element-81-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-570", - "https://www.w3.org/TR/webaudio/#MathJax-Span-571", - "https://www.w3.org/TR/webaudio/#MathJax-Span-572", - "https://www.w3.org/TR/webaudio/#MathJax-Span-573", - "https://www.w3.org/TR/webaudio/#MathJax-Span-574", - "https://www.w3.org/TR/webaudio/#MathJax-Element-81", - "https://www.w3.org/TR/webaudio/#MathJax-Element-82-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-575", - "https://www.w3.org/TR/webaudio/#MathJax-Span-576", - "https://www.w3.org/TR/webaudio/#MathJax-Span-577", - "https://www.w3.org/TR/webaudio/#MathJax-Span-578", - "https://www.w3.org/TR/webaudio/#MathJax-Span-579", - "https://www.w3.org/TR/webaudio/#MathJax-Element-82", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-linearramptovalueattime-value", - "https://www.w3.org/TR/webaudio/#MathJax-Element-83-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-580", - "https://www.w3.org/TR/webaudio/#MathJax-Span-581", - "https://www.w3.org/TR/webaudio/#MathJax-Span-582", - "https://www.w3.org/TR/webaudio/#MathJax-Span-583", - "https://www.w3.org/TR/webaudio/#MathJax-Span-584", - "https://www.w3.org/TR/webaudio/#MathJax-Span-585", - "https://www.w3.org/TR/webaudio/#MathJax-Span-586", - "https://www.w3.org/TR/webaudio/#MathJax-Element-83", - "https://www.w3.org/TR/webaudio/#MathJax-Element-84-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-587", - "https://www.w3.org/TR/webaudio/#MathJax-Span-588", - "https://www.w3.org/TR/webaudio/#MathJax-Span-589", - "https://www.w3.org/TR/webaudio/#MathJax-Span-590", - "https://www.w3.org/TR/webaudio/#MathJax-Span-591", - "https://www.w3.org/TR/webaudio/#MathJax-Span-592", - "https://www.w3.org/TR/webaudio/#MathJax-Span-593", - "https://www.w3.org/TR/webaudio/#MathJax-Span-594", - "https://www.w3.org/TR/webaudio/#MathJax-Span-595", - "https://www.w3.org/TR/webaudio/#MathJax-Span-596", - "https://www.w3.org/TR/webaudio/#MathJax-Element-84", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvalueattime%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-linearramptovalueattime%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-85-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-597", - "https://www.w3.org/TR/webaudio/#MathJax-Span-598", - "https://www.w3.org/TR/webaudio/#MathJax-Span-599", - "https://www.w3.org/TR/webaudio/#MathJax-Span-600", - "https://www.w3.org/TR/webaudio/#MathJax-Span-601", - "https://www.w3.org/TR/webaudio/#MathJax-Element-85", - "https://www.w3.org/TR/webaudio/#MathJax-Element-86-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-602", - "https://www.w3.org/TR/webaudio/#MathJax-Span-603", - "https://www.w3.org/TR/webaudio/#MathJax-Span-604", - "https://www.w3.org/TR/webaudio/#MathJax-Span-605", - "https://www.w3.org/TR/webaudio/#MathJax-Span-606", - "https://www.w3.org/TR/webaudio/#MathJax-Element-86", - "https://www.w3.org/TR/webaudio/#MathJax-Element-87-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-607", - "https://www.w3.org/TR/webaudio/#MathJax-Span-608", - "https://www.w3.org/TR/webaudio/#MathJax-Span-609", - "https://www.w3.org/TR/webaudio/#MathJax-Span-610", - "https://www.w3.org/TR/webaudio/#MathJax-Span-611", - "https://www.w3.org/TR/webaudio/#MathJax-Element-87", - "https://www.w3.org/TR/webaudio/#MathJax-Element-88-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-612", - "https://www.w3.org/TR/webaudio/#MathJax-Span-613", - "https://www.w3.org/TR/webaudio/#MathJax-Span-614", - "https://www.w3.org/TR/webaudio/#MathJax-Span-615", - "https://www.w3.org/TR/webaudio/#MathJax-Span-616", - "https://www.w3.org/TR/webaudio/#MathJax-Element-88", - "https://www.w3.org/TR/webaudio/#MathJax-Element-89-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-617", - "https://www.w3.org/TR/webaudio/#MathJax-Span-618", - "https://www.w3.org/TR/webaudio/#MathJax-Span-619", - "https://www.w3.org/TR/webaudio/#MathJax-Span-620", - "https://www.w3.org/TR/webaudio/#MathJax-Span-621", - "https://www.w3.org/TR/webaudio/#MathJax-Element-89", - "https://www.w3.org/TR/webaudio/#MathJax-Element-90-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-622", - "https://www.w3.org/TR/webaudio/#MathJax-Span-623", - "https://www.w3.org/TR/webaudio/#MathJax-Span-624", - "https://www.w3.org/TR/webaudio/#MathJax-Span-625", - "https://www.w3.org/TR/webaudio/#MathJax-Span-626", - "https://www.w3.org/TR/webaudio/#MathJax-Element-90", - "https://www.w3.org/TR/webaudio/#MathJax-Element-91-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-627", - "https://www.w3.org/TR/webaudio/#MathJax-Span-628", - "https://www.w3.org/TR/webaudio/#MathJax-Span-629", - "https://www.w3.org/TR/webaudio/#MathJax-Span-630", - "https://www.w3.org/TR/webaudio/#MathJax-Span-631", - "https://www.w3.org/TR/webaudio/#MathJax-Element-91", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-linearramptovalueattime%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audioparam-linearramptovalueattime-value", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audioparam-linearramptovalueattime-endtime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A8%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audioparam-settargetattime", - "https://www.w3.org/TR/webaudio/#MathJax-Element-92-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-632", - "https://www.w3.org/TR/webaudio/#MathJax-Span-633", - "https://www.w3.org/TR/webaudio/#MathJax-Span-634", - "https://www.w3.org/TR/webaudio/#MathJax-Span-635", - "https://www.w3.org/TR/webaudio/#MathJax-Span-636", - "https://www.w3.org/TR/webaudio/#MathJax-Span-637", - "https://www.w3.org/TR/webaudio/#MathJax-Span-638", - "https://www.w3.org/TR/webaudio/#MathJax-Element-92", - "https://www.w3.org/TR/webaudio/#MathJax-Element-93-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-639", - "https://www.w3.org/TR/webaudio/#MathJax-Span-640", - "https://www.w3.org/TR/webaudio/#MathJax-Span-641", - "https://www.w3.org/TR/webaudio/#MathJax-Span-642", - "https://www.w3.org/TR/webaudio/#MathJax-Span-643", - "https://www.w3.org/TR/webaudio/#MathJax-Element-93", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-settargetattime-starttime", - "https://www.w3.org/TR/webaudio/#MathJax-Element-94-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-644", - "https://www.w3.org/TR/webaudio/#MathJax-Span-645", - "https://www.w3.org/TR/webaudio/#MathJax-Span-646", - "https://www.w3.org/TR/webaudio/#MathJax-Span-647", - "https://www.w3.org/TR/webaudio/#MathJax-Span-648", - "https://www.w3.org/TR/webaudio/#MathJax-Span-649", - "https://www.w3.org/TR/webaudio/#MathJax-Span-650", - "https://www.w3.org/TR/webaudio/#MathJax-Span-651", - "https://www.w3.org/TR/webaudio/#MathJax-Span-652", - "https://www.w3.org/TR/webaudio/#MathJax-Span-653", - "https://www.w3.org/TR/webaudio/#MathJax-Span-654", - "https://www.w3.org/TR/webaudio/#MathJax-Span-655", - "https://www.w3.org/TR/webaudio/#MathJax-Span-656", - "https://www.w3.org/TR/webaudio/#MathJax-Span-657", - "https://www.w3.org/TR/webaudio/#MathJax-Span-658", - "https://www.w3.org/TR/webaudio/#MathJax-Span-659", - "https://www.w3.org/TR/webaudio/#MathJax-Span-660", - "https://www.w3.org/TR/webaudio/#MathJax-Span-661", - "https://www.w3.org/TR/webaudio/#MathJax-Span-662", - "https://www.w3.org/TR/webaudio/#MathJax-Span-663", - "https://www.w3.org/TR/webaudio/#MathJax-Span-664", - "https://www.w3.org/TR/webaudio/#MathJax-Span-665", - "https://www.w3.org/TR/webaudio/#MathJax-Span-666", - "https://www.w3.org/TR/webaudio/#MathJax-Span-667", - "https://www.w3.org/TR/webaudio/#MathJax-Span-668", - "https://www.w3.org/TR/webaudio/#MathJax-Span-669", - "https://www.w3.org/TR/webaudio/#MathJax-Span-670", - "https://www.w3.org/TR/webaudio/#MathJax-Span-671", - "https://www.w3.org/TR/webaudio/#MathJax-Span-672", - "https://www.w3.org/TR/webaudio/#MathJax-Span-673", - "https://www.w3.org/TR/webaudio/#MathJax-Span-674", - "https://www.w3.org/TR/webaudio/#MathJax-Span-675", - "https://www.w3.org/TR/webaudio/#MathJax-Span-676", - "https://www.w3.org/TR/webaudio/#MathJax-Span-677", - "https://www.w3.org/TR/webaudio/#MathJax-Span-678", - "https://www.w3.org/TR/webaudio/#MathJax-Span-679", - "https://www.w3.org/TR/webaudio/#MathJax-Span-680", - "https://www.w3.org/TR/webaudio/#MathJax-Element-94", - "https://www.w3.org/TR/webaudio/#MathJax-Element-95-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-681", - "https://www.w3.org/TR/webaudio/#MathJax-Span-682", - "https://www.w3.org/TR/webaudio/#MathJax-Span-683", - "https://www.w3.org/TR/webaudio/#MathJax-Span-684", - "https://www.w3.org/TR/webaudio/#MathJax-Span-685", - "https://www.w3.org/TR/webaudio/#MathJax-Element-95", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-current-value-slot%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-96-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-686", - "https://www.w3.org/TR/webaudio/#MathJax-Span-687", - "https://www.w3.org/TR/webaudio/#MathJax-Span-688", - "https://www.w3.org/TR/webaudio/#MathJax-Span-689", - "https://www.w3.org/TR/webaudio/#MathJax-Span-690", - "https://www.w3.org/TR/webaudio/#MathJax-Element-96", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-settargetattime-starttime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-97-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-691", - "https://www.w3.org/TR/webaudio/#MathJax-Span-692", - "https://www.w3.org/TR/webaudio/#MathJax-Span-693", - "https://www.w3.org/TR/webaudio/#MathJax-Span-694", - "https://www.w3.org/TR/webaudio/#MathJax-Span-695", - "https://www.w3.org/TR/webaudio/#MathJax-Element-97", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-settargetattime-target", - "https://www.w3.org/TR/webaudio/#MathJax-Element-98-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-696", - "https://www.w3.org/TR/webaudio/#MathJax-Span-697", - "https://www.w3.org/TR/webaudio/#MathJax-Span-698", - "https://www.w3.org/TR/webaudio/#MathJax-Element-98", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-settargetattime-timeconstant", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-linearramptovalueattime%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-exponentialramptovalueattime%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-settargetattime%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audioparam-settargetattime-target", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audioparam-settargetattime-starttime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A8%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audioparam-settargetattime-timeconstant", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A5", - "https://www.w3.org/TR/webaudio/#MathJax-Element-99-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-699", - "https://www.w3.org/TR/webaudio/#MathJax-Span-700", - "https://www.w3.org/TR/webaudio/#MathJax-Span-701", - "https://www.w3.org/TR/webaudio/#MathJax-Span-702", - "https://www.w3.org/TR/webaudio/#MathJax-Span-703", - "https://www.w3.org/TR/webaudio/#MathJax-Span-704", - "https://www.w3.org/TR/webaudio/#MathJax-Span-705", - "https://www.w3.org/TR/webaudio/#MathJax-Span-706", - "https://www.w3.org/TR/webaudio/#MathJax-Span-707", - "https://www.w3.org/TR/webaudio/#MathJax-Element-99", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audioparam-setvalueattime", - "https://www.w3.org/TR/webaudio/#MathJax-Element-100-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-708", - "https://www.w3.org/TR/webaudio/#MathJax-Span-709", - "https://www.w3.org/TR/webaudio/#MathJax-Span-710", - "https://www.w3.org/TR/webaudio/#MathJax-Span-711", - "https://www.w3.org/TR/webaudio/#MathJax-Span-712", - "https://www.w3.org/TR/webaudio/#MathJax-Span-713", - "https://www.w3.org/TR/webaudio/#MathJax-Span-714", - "https://www.w3.org/TR/webaudio/#MathJax-Element-100", - "https://www.w3.org/TR/webaudio/#MathJax-Element-101-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-715", - "https://www.w3.org/TR/webaudio/#MathJax-Span-716", - "https://www.w3.org/TR/webaudio/#MathJax-Span-717", - "https://www.w3.org/TR/webaudio/#MathJax-Span-718", - "https://www.w3.org/TR/webaudio/#MathJax-Span-719", - "https://www.w3.org/TR/webaudio/#MathJax-Span-720", - "https://www.w3.org/TR/webaudio/#MathJax-Span-721", - "https://www.w3.org/TR/webaudio/#MathJax-Span-722", - "https://www.w3.org/TR/webaudio/#MathJax-Element-101", - "https://www.w3.org/TR/webaudio/#MathJax-Element-102-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-723", - "https://www.w3.org/TR/webaudio/#MathJax-Span-724", - "https://www.w3.org/TR/webaudio/#MathJax-Span-725", - "https://www.w3.org/TR/webaudio/#MathJax-Span-726", - "https://www.w3.org/TR/webaudio/#MathJax-Span-727", - "https://www.w3.org/TR/webaudio/#MathJax-Element-102", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvalueattime-starttime", - "https://www.w3.org/TR/webaudio/#MathJax-Element-103-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-728", - "https://www.w3.org/TR/webaudio/#MathJax-Span-729", - "https://www.w3.org/TR/webaudio/#MathJax-Span-730", - "https://www.w3.org/TR/webaudio/#MathJax-Element-103", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvalueattime-value", - "https://www.w3.org/TR/webaudio/#MathJax-Element-104-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-731", - "https://www.w3.org/TR/webaudio/#MathJax-Span-732", - "https://www.w3.org/TR/webaudio/#MathJax-Span-733", - "https://www.w3.org/TR/webaudio/#MathJax-Span-734", - "https://www.w3.org/TR/webaudio/#MathJax-Span-735", - "https://www.w3.org/TR/webaudio/#MathJax-Element-104", - "https://www.w3.org/TR/webaudio/#MathJax-Element-105-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-736", - "https://www.w3.org/TR/webaudio/#MathJax-Span-737", - "https://www.w3.org/TR/webaudio/#MathJax-Span-738", - "https://www.w3.org/TR/webaudio/#MathJax-Span-739", - "https://www.w3.org/TR/webaudio/#MathJax-Span-740", - "https://www.w3.org/TR/webaudio/#MathJax-Span-741", - "https://www.w3.org/TR/webaudio/#MathJax-Span-742", - "https://www.w3.org/TR/webaudio/#MathJax-Span-743", - "https://www.w3.org/TR/webaudio/#MathJax-Span-744", - "https://www.w3.org/TR/webaudio/#MathJax-Span-745", - "https://www.w3.org/TR/webaudio/#MathJax-Span-746", - "https://www.w3.org/TR/webaudio/#MathJax-Element-105", - "https://www.w3.org/TR/webaudio/#MathJax-Element-106-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-747", - "https://www.w3.org/TR/webaudio/#MathJax-Span-748", - "https://www.w3.org/TR/webaudio/#MathJax-Span-749", - "https://www.w3.org/TR/webaudio/#MathJax-Span-750", - "https://www.w3.org/TR/webaudio/#MathJax-Span-751", - "https://www.w3.org/TR/webaudio/#MathJax-Span-752", - "https://www.w3.org/TR/webaudio/#MathJax-Span-753", - "https://www.w3.org/TR/webaudio/#MathJax-Span-754", - "https://www.w3.org/TR/webaudio/#MathJax-Element-106", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-linearramptovalueattime%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-exponentialramptovalueattime%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvalueattime%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audioparam-setvalueattime-value", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audioparam-setvalueattime-starttime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audioparam-setvaluecurveattime", - "https://www.w3.org/TR/webaudio/#MathJax-Element-107-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-755", - "https://www.w3.org/TR/webaudio/#MathJax-Span-756", - "https://www.w3.org/TR/webaudio/#MathJax-Span-757", - "https://www.w3.org/TR/webaudio/#MathJax-Span-758", - "https://www.w3.org/TR/webaudio/#MathJax-Span-759", - "https://www.w3.org/TR/webaudio/#MathJax-Element-107", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvaluecurveattime-starttime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-108-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-760", - "https://www.w3.org/TR/webaudio/#MathJax-Span-761", - "https://www.w3.org/TR/webaudio/#MathJax-Span-762", - "https://www.w3.org/TR/webaudio/#MathJax-Span-763", - "https://www.w3.org/TR/webaudio/#MathJax-Span-764", - "https://www.w3.org/TR/webaudio/#MathJax-Element-108", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvaluecurveattime-duration%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-109-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-765", - "https://www.w3.org/TR/webaudio/#MathJax-Span-766", - "https://www.w3.org/TR/webaudio/#MathJax-Span-767", - "https://www.w3.org/TR/webaudio/#MathJax-Element-109", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvaluecurveattime-values", - "https://www.w3.org/TR/webaudio/#MathJax-Element-110-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-768", - "https://www.w3.org/TR/webaudio/#MathJax-Span-769", - "https://www.w3.org/TR/webaudio/#MathJax-Span-770", - "https://www.w3.org/TR/webaudio/#MathJax-Element-110", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvaluecurveattime-values%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-111-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-771", - "https://www.w3.org/TR/webaudio/#MathJax-Span-772", - "https://www.w3.org/TR/webaudio/#MathJax-Span-773", - "https://www.w3.org/TR/webaudio/#MathJax-Span-774", - "https://www.w3.org/TR/webaudio/#MathJax-Span-775", - "https://www.w3.org/TR/webaudio/#MathJax-Span-776", - "https://www.w3.org/TR/webaudio/#MathJax-Span-777", - "https://www.w3.org/TR/webaudio/#MathJax-Span-778", - "https://www.w3.org/TR/webaudio/#MathJax-Span-779", - "https://www.w3.org/TR/webaudio/#MathJax-Span-780", - "https://www.w3.org/TR/webaudio/#MathJax-Span-781", - "https://www.w3.org/TR/webaudio/#MathJax-Span-782", - "https://www.w3.org/TR/webaudio/#MathJax-Span-783", - "https://www.w3.org/TR/webaudio/#MathJax-Span-784", - "https://www.w3.org/TR/webaudio/#MathJax-Span-785", - "https://www.w3.org/TR/webaudio/#MathJax-Element-111", - "https://www.w3.org/TR/webaudio/#MathJax-Element-112-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-786", - "https://www.w3.org/TR/webaudio/#MathJax-Span-787", - "https://www.w3.org/TR/webaudio/#MathJax-Span-788", - "https://www.w3.org/TR/webaudio/#MathJax-Span-789", - "https://www.w3.org/TR/webaudio/#MathJax-Span-790", - "https://www.w3.org/TR/webaudio/#MathJax-Span-791", - "https://www.w3.org/TR/webaudio/#MathJax-Span-792", - "https://www.w3.org/TR/webaudio/#MathJax-Span-793", - "https://www.w3.org/TR/webaudio/#MathJax-Span-794", - "https://www.w3.org/TR/webaudio/#MathJax-Span-795", - "https://www.w3.org/TR/webaudio/#MathJax-Span-796", - "https://www.w3.org/TR/webaudio/#MathJax-Span-797", - "https://www.w3.org/TR/webaudio/#MathJax-Span-798", - "https://www.w3.org/TR/webaudio/#MathJax-Span-799", - "https://www.w3.org/TR/webaudio/#MathJax-Span-800", - "https://www.w3.org/TR/webaudio/#MathJax-Span-801", - "https://www.w3.org/TR/webaudio/#MathJax-Span-802", - "https://www.w3.org/TR/webaudio/#MathJax-Span-803", - "https://www.w3.org/TR/webaudio/#MathJax-Span-804", - "https://www.w3.org/TR/webaudio/#MathJax-Span-805", - "https://www.w3.org/TR/webaudio/#MathJax-Span-806", - "https://www.w3.org/TR/webaudio/#MathJax-Span-807", - "https://www.w3.org/TR/webaudio/#MathJax-Span-808", - "https://www.w3.org/TR/webaudio/#MathJax-Span-809", - "https://www.w3.org/TR/webaudio/#MathJax-Span-810", - "https://www.w3.org/TR/webaudio/#MathJax-Span-811", - "https://www.w3.org/TR/webaudio/#MathJax-Span-812", - "https://www.w3.org/TR/webaudio/#MathJax-Span-813", - "https://www.w3.org/TR/webaudio/#MathJax-Element-112", - "https://www.w3.org/TR/webaudio/#MathJax-Element-113-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-814", - "https://www.w3.org/TR/webaudio/#MathJax-Span-815", - "https://www.w3.org/TR/webaudio/#MathJax-Span-816", - "https://www.w3.org/TR/webaudio/#MathJax-Span-817", - "https://www.w3.org/TR/webaudio/#MathJax-Span-818", - "https://www.w3.org/TR/webaudio/#MathJax-Span-819", - "https://www.w3.org/TR/webaudio/#MathJax-Element-113", - "https://www.w3.org/TR/webaudio/#MathJax-Element-114-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-820", - "https://www.w3.org/TR/webaudio/#MathJax-Span-821", - "https://www.w3.org/TR/webaudio/#MathJax-Span-822", - "https://www.w3.org/TR/webaudio/#MathJax-Span-823", - "https://www.w3.org/TR/webaudio/#MathJax-Span-824", - "https://www.w3.org/TR/webaudio/#MathJax-Span-825", - "https://www.w3.org/TR/webaudio/#MathJax-Element-114", - "https://www.w3.org/TR/webaudio/#MathJax-Element-115-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-826", - "https://www.w3.org/TR/webaudio/#MathJax-Span-827", - "https://www.w3.org/TR/webaudio/#MathJax-Span-828", - "https://www.w3.org/TR/webaudio/#MathJax-Span-829", - "https://www.w3.org/TR/webaudio/#MathJax-Span-830", - "https://www.w3.org/TR/webaudio/#MathJax-Span-831", - "https://www.w3.org/TR/webaudio/#MathJax-Span-832", - "https://www.w3.org/TR/webaudio/#MathJax-Span-833", - "https://www.w3.org/TR/webaudio/#MathJax-Element-115", - "https://www.w3.org/TR/webaudio/#MathJax-Element-116-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-834", - "https://www.w3.org/TR/webaudio/#MathJax-Span-835", - "https://www.w3.org/TR/webaudio/#MathJax-Span-836", - "https://www.w3.org/TR/webaudio/#MathJax-Span-837", - "https://www.w3.org/TR/webaudio/#MathJax-Span-838", - "https://www.w3.org/TR/webaudio/#MathJax-Span-839", - "https://www.w3.org/TR/webaudio/#MathJax-Span-840", - "https://www.w3.org/TR/webaudio/#MathJax-Span-841", - "https://www.w3.org/TR/webaudio/#MathJax-Span-842", - "https://www.w3.org/TR/webaudio/#MathJax-Span-843", - "https://www.w3.org/TR/webaudio/#MathJax-Span-844", - "https://www.w3.org/TR/webaudio/#MathJax-Element-116", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvalueattime%E2%91%A5", - "https://www.w3.org/TR/webaudio/#MathJax-Element-117-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-845", - "https://www.w3.org/TR/webaudio/#MathJax-Span-846", - "https://www.w3.org/TR/webaudio/#MathJax-Span-847", - "https://www.w3.org/TR/webaudio/#MathJax-Span-848", - "https://www.w3.org/TR/webaudio/#MathJax-Span-849", - "https://www.w3.org/TR/webaudio/#MathJax-Span-850", - "https://www.w3.org/TR/webaudio/#MathJax-Span-851", - "https://www.w3.org/TR/webaudio/#MathJax-Span-852", - "https://www.w3.org/TR/webaudio/#MathJax-Span-853", - "https://www.w3.org/TR/webaudio/#MathJax-Element-117", - "https://www.w3.org/TR/webaudio/#MathJax-Element-118-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-854", - "https://www.w3.org/TR/webaudio/#MathJax-Span-855", - "https://www.w3.org/TR/webaudio/#MathJax-Span-856", - "https://www.w3.org/TR/webaudio/#MathJax-Span-857", - "https://www.w3.org/TR/webaudio/#MathJax-Span-858", - "https://www.w3.org/TR/webaudio/#MathJax-Span-859", - "https://www.w3.org/TR/webaudio/#MathJax-Span-860", - "https://www.w3.org/TR/webaudio/#MathJax-Span-861", - "https://www.w3.org/TR/webaudio/#MathJax-Element-118", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audioparam-setvaluecurveattime-values", - "https://www.w3.org/TR/webaudio/#ref-for-idl-sequence%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audioparam-setvaluecurveattime-starttime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%93%AA%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-audioparam-setvaluecurveattime-duration", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A5%E2%91%A6", - "https://www.w3.org/TR/webaudio/#computation-of-value", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-simple-parameter", - "https://www.w3.org/TR/webaudio/#ref-for-compound-parameter", - "https://www.w3.org/TR/webaudio/#simple-parameter", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#compound-parameter", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A6%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#computedvalue", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dfn-automation-event", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dfn-automation-event%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-current-value-slot%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-input-audioparam-buffer", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-compound-parameter%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-computedvalue", - "https://www.w3.org/TR/webaudio/#nominal-range", - "https://www.w3.org/TR/webaudio/#ref-for-computedvalue%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-simple-parameter%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-computedvalue%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-simple-nominal-range", - "https://www.w3.org/TR/webaudio/#ref-for-compound-parameter%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-nominal-range%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A6%E2%91%A3", - "https://www.w3.org/TR/webaudio/#example-7a3be3df", - "https://www.w3.org/TR/webaudio/#MathJax-Element-119-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-862", - "https://www.w3.org/TR/webaudio/#MathJax-Span-863", - "https://www.w3.org/TR/webaudio/#MathJax-Span-864", - "https://www.w3.org/TR/webaudio/#MathJax-Element-119", - "https://www.w3.org/TR/webaudio/#MathJax-Element-120-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-865", - "https://www.w3.org/TR/webaudio/#MathJax-Span-866", - "https://www.w3.org/TR/webaudio/#MathJax-Span-867", - "https://www.w3.org/TR/webaudio/#MathJax-Element-120", - "https://www.w3.org/TR/webaudio/#MathJax-Element-121-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-868", - "https://www.w3.org/TR/webaudio/#MathJax-Span-869", - "https://www.w3.org/TR/webaudio/#MathJax-Span-870", - "https://www.w3.org/TR/webaudio/#MathJax-Span-871", - "https://www.w3.org/TR/webaudio/#MathJax-Span-872", - "https://www.w3.org/TR/webaudio/#MathJax-Span-873", - "https://www.w3.org/TR/webaudio/#MathJax-Span-874", - "https://www.w3.org/TR/webaudio/#MathJax-Element-121", - "https://www.w3.org/TR/webaudio/#example1-AudioParam", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A6%E2%91%A4", - "https://www.w3.org/TR/webaudio/#example-ab13e619", - "https://www.w3.org/TR/webaudio/#AudioScheduledSourceNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-start", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-stop", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#playing", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audioscheduledsourcenode-source-started-slot", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-eventhandler%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-onended", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-start%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-start-when-when", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-stop%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-stop-when-when", - "https://www.w3.org/TR/webaudio/#AudioScheduledSourceNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-audioscheduledsourcenode-onended", - "https://www.w3.org/TR/webaudio/#ref-for-eventhandler%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-event-handlers%E2%91%A2", - "https://www.w3.org/TR/webaudio/#eventdef-audioscheduledsourcenode-ended", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-event%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-audioscheduledsourcenode-ended", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-stop%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-start-when-offset-duration-duration", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A1", - "https://www.w3.org/TR/webaudio/#AudioScheduledSourceNode-methods", - "https://www.w3.org/TR/webaudio/#dom-audioscheduledsourcenode-start", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-source-started-slot", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-source-started-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-queuing%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%93%AA%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-suspended%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-allowed-to-start%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-suspended-by-user-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-start%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%93%AA%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-allowed-to-start%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-start%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audioscheduledsourcenode-start-when-when", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-start-when-when%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%93%AA%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-audioscheduledsourcenode-stop", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-source-started-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-queuing%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-stop%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audioscheduledsourcenode-stop-when-when", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-stop-when-when%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%93%AA%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#AnalyserNode", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-analysernode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-analysernode-analysernode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserOptions", - "https://www.w3.org/TR/webaudio/#dom-analysernode-analysernode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-getfloatfrequencydata", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-analysernode-getfloatfrequencydata-array-array", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-getbytefrequencydata", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Uint8Array", - "https://www.w3.org/TR/webaudio/#dom-analysernode-getbytefrequencydata-array-array", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-getfloattimedomaindata", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-analysernode-getfloattimedomaindata-array-array", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-getbytetimedomaindata", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Uint8Array%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-analysernode-getbytetimedomaindata-array-array", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-fftsize", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-frequencybincount", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-mindecibels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-maxdecibels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-smoothingtimeconstant", - "https://www.w3.org/TR/webaudio/#AnalyserNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-analysernode-analysernode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-analysernode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-analysernode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-analysernode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#AnalyserNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-analysernode-fftsize", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A6%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-fftsize%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-getbytefrequencydata%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-getfloatfrequencydata%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-previous-block", - "https://www.w3.org/TR/webaudio/#MathJax-Element-122-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-875", - "https://www.w3.org/TR/webaudio/#MathJax-Span-876", - "https://www.w3.org/TR/webaudio/#MathJax-Span-877", - "https://www.w3.org/TR/webaudio/#MathJax-Span-878", - "https://www.w3.org/TR/webaudio/#MathJax-Span-879", - "https://www.w3.org/TR/webaudio/#MathJax-Span-880", - "https://www.w3.org/TR/webaudio/#MathJax-Span-881", - "https://www.w3.org/TR/webaudio/#MathJax-Span-882", - "https://www.w3.org/TR/webaudio/#MathJax-Span-883", - "https://www.w3.org/TR/webaudio/#MathJax-Span-884", - "https://www.w3.org/TR/webaudio/#MathJax-Span-885", - "https://www.w3.org/TR/webaudio/#MathJax-Span-886", - "https://www.w3.org/TR/webaudio/#MathJax-Span-887", - "https://www.w3.org/TR/webaudio/#MathJax-Span-888", - "https://www.w3.org/TR/webaudio/#MathJax-Span-889", - "https://www.w3.org/TR/webaudio/#MathJax-Element-122", - "https://www.w3.org/TR/webaudio/#ref-for-smoothing-over-time", - "https://www.w3.org/TR/webaudio/#MathJax-Element-123-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-890", - "https://www.w3.org/TR/webaudio/#MathJax-Span-891", - "https://www.w3.org/TR/webaudio/#MathJax-Span-892", - "https://www.w3.org/TR/webaudio/#MathJax-Element-123", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-fftsize%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-current-time-domain-data", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-current-time-domain-data%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-fftsize%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-analysernode-frequencybincount", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-analysernode-maxdecibels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-maxdecibels%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-mindecibels%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-analysernode-mindecibels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-mindecibels%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-maxdecibels%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-analysernode-smoothingtimeconstant", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#AnalyserNode-methods", - "https://www.w3.org/TR/webaudio/#dom-analysernode-getbytefrequencydata", - "https://www.w3.org/TR/webaudio/#ref-for-arraybufferview-write%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-current-frequency-data", - "https://www.w3.org/TR/webaudio/#ref-for-buffersource-byte-length", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-frequencybincount%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-buffersource-byte-length%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-frequencybincount%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-fftsize%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-getbytefrequencydata%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-getfloatfrequencydata%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-current-frequency-data%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-124-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-893", - "https://www.w3.org/TR/webaudio/#MathJax-Span-894", - "https://www.w3.org/TR/webaudio/#MathJax-Span-895", - "https://www.w3.org/TR/webaudio/#MathJax-Span-896", - "https://www.w3.org/TR/webaudio/#MathJax-Span-897", - "https://www.w3.org/TR/webaudio/#MathJax-Span-898", - "https://www.w3.org/TR/webaudio/#MathJax-Element-124", - "https://www.w3.org/TR/webaudio/#ref-for-current-frequency-data%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-125-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-899", - "https://www.w3.org/TR/webaudio/#MathJax-Span-900", - "https://www.w3.org/TR/webaudio/#MathJax-Span-901", - "https://www.w3.org/TR/webaudio/#MathJax-Span-902", - "https://www.w3.org/TR/webaudio/#MathJax-Span-903", - "https://www.w3.org/TR/webaudio/#MathJax-Span-904", - "https://www.w3.org/TR/webaudio/#MathJax-Element-125", - "https://www.w3.org/TR/webaudio/#MathJax-Element-126-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-905", - "https://www.w3.org/TR/webaudio/#MathJax-Span-906", - "https://www.w3.org/TR/webaudio/#MathJax-Span-907", - "https://www.w3.org/TR/webaudio/#MathJax-Span-908", - "https://www.w3.org/TR/webaudio/#MathJax-Span-909", - "https://www.w3.org/TR/webaudio/#MathJax-Span-910", - "https://www.w3.org/TR/webaudio/#MathJax-Span-911", - "https://www.w3.org/TR/webaudio/#MathJax-Span-912", - "https://www.w3.org/TR/webaudio/#MathJax-Span-913", - "https://www.w3.org/TR/webaudio/#MathJax-Span-914", - "https://www.w3.org/TR/webaudio/#MathJax-Span-915", - "https://www.w3.org/TR/webaudio/#MathJax-Span-916", - "https://www.w3.org/TR/webaudio/#MathJax-Span-917", - "https://www.w3.org/TR/webaudio/#MathJax-Span-918", - "https://www.w3.org/TR/webaudio/#MathJax-Span-919", - "https://www.w3.org/TR/webaudio/#MathJax-Span-920", - "https://www.w3.org/TR/webaudio/#MathJax-Span-921", - "https://www.w3.org/TR/webaudio/#MathJax-Span-922", - "https://www.w3.org/TR/webaudio/#MathJax-Span-923", - "https://www.w3.org/TR/webaudio/#MathJax-Span-924", - "https://www.w3.org/TR/webaudio/#MathJax-Span-925", - "https://www.w3.org/TR/webaudio/#MathJax-Span-926", - "https://www.w3.org/TR/webaudio/#MathJax-Span-927", - "https://www.w3.org/TR/webaudio/#MathJax-Span-928", - "https://www.w3.org/TR/webaudio/#MathJax-Span-929", - "https://www.w3.org/TR/webaudio/#MathJax-Span-930", - "https://www.w3.org/TR/webaudio/#MathJax-Span-931", - "https://www.w3.org/TR/webaudio/#MathJax-Span-932", - "https://www.w3.org/TR/webaudio/#MathJax-Span-933", - "https://www.w3.org/TR/webaudio/#MathJax-Span-934", - "https://www.w3.org/TR/webaudio/#MathJax-Span-935", - "https://www.w3.org/TR/webaudio/#MathJax-Span-936", - "https://www.w3.org/TR/webaudio/#MathJax-Span-937", - "https://www.w3.org/TR/webaudio/#MathJax-Span-938", - "https://www.w3.org/TR/webaudio/#MathJax-Span-939", - "https://www.w3.org/TR/webaudio/#MathJax-Span-940", - "https://www.w3.org/TR/webaudio/#MathJax-Span-941", - "https://www.w3.org/TR/webaudio/#MathJax-Span-942", - "https://www.w3.org/TR/webaudio/#MathJax-Span-943", - "https://www.w3.org/TR/webaudio/#MathJax-Span-944", - "https://www.w3.org/TR/webaudio/#MathJax-Span-945", - "https://www.w3.org/TR/webaudio/#MathJax-Span-946", - "https://www.w3.org/TR/webaudio/#MathJax-Span-947", - "https://www.w3.org/TR/webaudio/#MathJax-Span-948", - "https://www.w3.org/TR/webaudio/#MathJax-Span-949", - "https://www.w3.org/TR/webaudio/#MathJax-Span-950", - "https://www.w3.org/TR/webaudio/#MathJax-Span-951", - "https://www.w3.org/TR/webaudio/#MathJax-Span-952", - "https://www.w3.org/TR/webaudio/#MathJax-Span-953", - "https://www.w3.org/TR/webaudio/#MathJax-Element-126", - "https://www.w3.org/TR/webaudio/#MathJax-Element-127-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-954", - "https://www.w3.org/TR/webaudio/#MathJax-Span-955", - "https://www.w3.org/TR/webaudio/#MathJax-Span-956", - "https://www.w3.org/TR/webaudio/#MathJax-Span-957", - "https://www.w3.org/TR/webaudio/#MathJax-Span-958", - "https://www.w3.org/TR/webaudio/#MathJax-Span-959", - "https://www.w3.org/TR/webaudio/#MathJax-Span-960", - "https://www.w3.org/TR/webaudio/#MathJax-Span-961", - "https://www.w3.org/TR/webaudio/#MathJax-Span-962", - "https://www.w3.org/TR/webaudio/#MathJax-Span-963", - "https://www.w3.org/TR/webaudio/#MathJax-Span-964", - "https://www.w3.org/TR/webaudio/#MathJax-Element-127", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-mindecibels%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-128-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-965", - "https://www.w3.org/TR/webaudio/#MathJax-Span-966", - "https://www.w3.org/TR/webaudio/#MathJax-Span-967", - "https://www.w3.org/TR/webaudio/#MathJax-Span-968", - "https://www.w3.org/TR/webaudio/#MathJax-Span-969", - "https://www.w3.org/TR/webaudio/#MathJax-Span-970", - "https://www.w3.org/TR/webaudio/#MathJax-Span-971", - "https://www.w3.org/TR/webaudio/#MathJax-Span-972", - "https://www.w3.org/TR/webaudio/#MathJax-Span-973", - "https://www.w3.org/TR/webaudio/#MathJax-Span-974", - "https://www.w3.org/TR/webaudio/#MathJax-Span-975", - "https://www.w3.org/TR/webaudio/#MathJax-Element-128", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-maxdecibels%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-129-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-976", - "https://www.w3.org/TR/webaudio/#MathJax-Span-977", - "https://www.w3.org/TR/webaudio/#MathJax-Span-978", - "https://www.w3.org/TR/webaudio/#MathJax-Span-979", - "https://www.w3.org/TR/webaudio/#MathJax-Span-980", - "https://www.w3.org/TR/webaudio/#MathJax-Span-981", - "https://www.w3.org/TR/webaudio/#MathJax-Element-129", - "https://www.w3.org/TR/webaudio/#MathJax-Element-130-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-982", - "https://www.w3.org/TR/webaudio/#MathJax-Span-983", - "https://www.w3.org/TR/webaudio/#MathJax-Span-984", - "https://www.w3.org/TR/webaudio/#MathJax-Span-985", - "https://www.w3.org/TR/webaudio/#MathJax-Span-986", - "https://www.w3.org/TR/webaudio/#MathJax-Span-987", - "https://www.w3.org/TR/webaudio/#MathJax-Element-130", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-getbytefrequencydata%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-analysernode-getbytefrequencydata-array", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Uint8Array%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-analysernode-getbytetimedomaindata", - "https://www.w3.org/TR/webaudio/#ref-for-arraybufferview-write%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-current-time-domain-data%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-buffersource-byte-length%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-fftsize%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-buffersource-byte-length%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-fftsize%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-fftsize%E2%91%A6", - "https://www.w3.org/TR/webaudio/#MathJax-Element-131-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-988", - "https://www.w3.org/TR/webaudio/#MathJax-Span-989", - "https://www.w3.org/TR/webaudio/#MathJax-Span-990", - "https://www.w3.org/TR/webaudio/#MathJax-Span-991", - "https://www.w3.org/TR/webaudio/#MathJax-Span-992", - "https://www.w3.org/TR/webaudio/#MathJax-Span-993", - "https://www.w3.org/TR/webaudio/#MathJax-Element-131", - "https://www.w3.org/TR/webaudio/#MathJax-Element-132-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-994", - "https://www.w3.org/TR/webaudio/#MathJax-Span-995", - "https://www.w3.org/TR/webaudio/#MathJax-Span-996", - "https://www.w3.org/TR/webaudio/#MathJax-Span-997", - "https://www.w3.org/TR/webaudio/#MathJax-Span-998", - "https://www.w3.org/TR/webaudio/#MathJax-Span-999", - "https://www.w3.org/TR/webaudio/#MathJax-Element-132", - "https://www.w3.org/TR/webaudio/#MathJax-Element-133-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1000", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1001", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1002", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1003", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1004", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1005", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1006", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1007", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1008", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1009", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1010", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1011", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1012", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1013", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1014", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1015", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1016", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1017", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1018", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1019", - "https://www.w3.org/TR/webaudio/#MathJax-Element-133", - "https://www.w3.org/TR/webaudio/#MathJax-Element-134-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1020", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1021", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1022", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1023", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1024", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1025", - "https://www.w3.org/TR/webaudio/#MathJax-Element-134", - "https://www.w3.org/TR/webaudio/#MathJax-Element-135-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1026", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1027", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1028", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1029", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1030", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1031", - "https://www.w3.org/TR/webaudio/#MathJax-Element-135", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-getbytetimedomaindata%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-analysernode-getbytetimedomaindata-array", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Uint8Array%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-analysernode-getfloatfrequencydata", - "https://www.w3.org/TR/webaudio/#ref-for-arraybufferview-write%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-current-frequency-data%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-frequencybincount%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-frequencybincount%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-fftsize%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-getfloatfrequencydata%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-getbytefrequencydata%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-current-frequency-data%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-getfloatfrequencydata%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-analysernode-getfloatfrequencydata-array", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-analysernode-getfloattimedomaindata", - "https://www.w3.org/TR/webaudio/#ref-for-arraybufferview-write%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-current-time-domain-data%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-fftsize%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-fftsize%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-fftsize%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-getfloattimedomaindata%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-analysernode-getfloattimedomaindata-array", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webaudio/#AnalyserOptions", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analyseroptions-fftsize", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analyseroptions-maxdecibels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analyseroptions-mindecibels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analyseroptions-smoothingtimeconstant", - "https://www.w3.org/TR/webaudio/#dictionary-analyseroptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-analyseroptions-fftsize", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-analyseroptions-maxdecibels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-analyseroptions-mindecibels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-analyseroptions-smoothingtimeconstant", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webaudio/#time-domain-down-mixing", - "https://www.w3.org/TR/webaudio/#current-time-domain-data", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-fftsize%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#fft-windowing-and-smoothing-over-time", - "https://www.w3.org/TR/webaudio/#current-frequency-data", - "https://www.w3.org/TR/webaudio/#ref-for-current-time-domain-data%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-blackman-window", - "https://www.w3.org/TR/webaudio/#ref-for-fourier-transform", - "https://www.w3.org/TR/webaudio/#ref-for-smoothing-over-time%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-conversion-to-db", - "https://www.w3.org/TR/webaudio/#MathJax-Element-136-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1032", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1033", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1034", - "https://www.w3.org/TR/webaudio/#MathJax-Element-136", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-fftsize%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#blackman-window", - "https://www.w3.org/TR/webaudio/#MathJax-Element-137-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1035", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1036", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1037", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1038", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1039", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1040", - "https://www.w3.org/TR/webaudio/#MathJax-Element-137", - "https://www.w3.org/TR/webaudio/#MathJax-Element-138-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1041", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1042", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1043", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1044", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1045", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1046", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1047", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1048", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1049", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1050", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1051", - "https://www.w3.org/TR/webaudio/#MathJax-Element-138", - "https://www.w3.org/TR/webaudio/#MathJax-Element-139-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1052", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1053", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1054", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1055", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1056", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1057", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1065", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1066", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1067", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1068", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1069", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1080", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1081", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1082", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1083", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1084", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1092", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1093", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1094", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1095", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1096", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1104", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1105", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1106", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1107", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1108", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1109", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1058", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1059", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1060", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1061", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1062", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1063", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1064", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1070", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1071", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1072", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1073", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1074", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1075", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1076", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1077", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1078", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1079", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1085", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1086", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1087", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1088", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1089", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1090", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1091", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1097", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1098", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1099", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1100", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1101", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1102", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1103", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1110", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1111", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1112", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1113", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1114", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1115", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1116", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1117", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1118", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1119", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1120", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1121", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1122", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1123", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1124", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1125", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1126", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1127", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1128", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1129", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1130", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1131", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1132", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1133", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1134", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1135", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1136", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1137", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1138", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1139", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1140", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1141", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1142", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1143", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1144", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1145", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1146", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1147", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1148", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1149", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1150", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1151", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1152", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1153", - "https://www.w3.org/TR/webaudio/#MathJax-Element-139", - "https://www.w3.org/TR/webaudio/#MathJax-Element-140-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1154", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1155", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1156", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1157", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1158", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1159", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1160", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1161", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1162", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1163", - "https://www.w3.org/TR/webaudio/#MathJax-Element-140", - "https://www.w3.org/TR/webaudio/#MathJax-Element-141-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1164", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1165", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1166", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1167", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1168", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1169", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1170", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1171", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1172", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1173", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1174", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1175", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1176", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1177", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1178", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1179", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1180", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1181", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1182", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1183", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1184", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1185", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1186", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1187", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1188", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1189", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1190", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1191", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1192", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1193", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1194", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1195", - "https://www.w3.org/TR/webaudio/#MathJax-Element-141", - "https://www.w3.org/TR/webaudio/#fourier-transform", - "https://www.w3.org/TR/webaudio/#MathJax-Element-142-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1196", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1197", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1198", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1199", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1200", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1201", - "https://www.w3.org/TR/webaudio/#MathJax-Element-142", - "https://www.w3.org/TR/webaudio/#MathJax-Element-143-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1202", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1203", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1204", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1205", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1206", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1207", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1208", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1209", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1210", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1211", - "https://www.w3.org/TR/webaudio/#MathJax-Element-143", - "https://www.w3.org/TR/webaudio/#MathJax-Element-144-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1212", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1213", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1214", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1215", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1216", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1217", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1218", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1219", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1220", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1221", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1222", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1223", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1224", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1225", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1226", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1227", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1228", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1229", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1230", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1231", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1232", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1233", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1234", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1235", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1236", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1237", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1238", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1239", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1240", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1241", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1242", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1243", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1244", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1245", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1246", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1247", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1248", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1249", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1250", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1251", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1252", - "https://www.w3.org/TR/webaudio/#MathJax-Element-144", - "https://www.w3.org/TR/webaudio/#MathJax-Element-145-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1253", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1254", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1255", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1256", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1257", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1258", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1259", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1260", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1261", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1262", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1263", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1264", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1265", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1266", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1267", - "https://www.w3.org/TR/webaudio/#MathJax-Element-145", - "https://www.w3.org/TR/webaudio/#MathJax-Element-146-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1268", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1269", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1270", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1271", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1272", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1273", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1274", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1275", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1276", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1277", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1278", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1279", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1280", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1281", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1282", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1283", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1284", - "https://www.w3.org/TR/webaudio/#MathJax-Element-146", - "https://www.w3.org/TR/webaudio/#smoothing-over-time", - "https://www.w3.org/TR/webaudio/#MathJax-Element-147-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1285", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1286", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1287", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1288", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1289", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1290", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1291", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1292", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1293", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1294", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1295", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1296", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1297", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1298", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1299", - "https://www.w3.org/TR/webaudio/#MathJax-Element-147", - "https://www.w3.org/TR/webaudio/#ref-for-previous-block%E2%91%A0", - "https://www.w3.org/TR/webaudio/#previous-block", - "https://www.w3.org/TR/webaudio/#ref-for-smoothing-over-time%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-148-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1300", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1301", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1302", - "https://www.w3.org/TR/webaudio/#MathJax-Element-148", - "https://www.w3.org/TR/webaudio/#ref-for-smoothing-over-time%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-149-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1303", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1304", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1305", - "https://www.w3.org/TR/webaudio/#MathJax-Element-149", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-smoothingtimeconstant%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#MathJax-Element-150-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1306", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1307", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1308", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1309", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1310", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1311", - "https://www.w3.org/TR/webaudio/#MathJax-Element-150", - "https://www.w3.org/TR/webaudio/#ref-for-fourier-transform%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-151-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1312", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1313", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1314", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1315", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1316", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1317", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1318", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1319", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1320", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1321", - "https://www.w3.org/TR/webaudio/#MathJax-Element-151", - "https://www.w3.org/TR/webaudio/#MathJax-Element-152-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1322", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1323", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1324", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1325", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1326", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1327", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1328", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1329", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1330", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1331", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1332", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1333", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1334", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1335", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1336", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1337", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1338", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1339", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1340", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1341", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1342", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1343", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1344", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1345", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1346", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1347", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1348", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1349", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1350", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1351", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1352", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1353", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1354", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1355", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1356", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1357", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1358", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1359", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1360", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1361", - "https://www.w3.org/TR/webaudio/#MathJax-Element-152", - "https://www.w3.org/TR/webaudio/#MathJax-Element-153-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1362", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1363", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1364", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1365", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1366", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1367", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1368", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1369", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1370", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1371", - "https://www.w3.org/TR/webaudio/#MathJax-Element-153", - "https://www.w3.org/TR/webaudio/#MathJax-Element-154-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1372", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1373", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1374", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1375", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1376", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1377", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1378", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1379", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1380", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1381", - "https://www.w3.org/TR/webaudio/#MathJax-Element-154", - "https://www.w3.org/TR/webaudio/#MathJax-Element-155-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1382", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1383", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1384", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1385", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1386", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1387", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1388", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1389", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1390", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1391", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1392", - "https://www.w3.org/TR/webaudio/#MathJax-Element-155", - "https://www.w3.org/TR/webaudio/#conversion-to-db", - "https://www.w3.org/TR/webaudio/#MathJax-Element-156-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1393", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1394", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1395", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1396", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1397", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1398", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1399", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1400", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1401", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1402", - "https://www.w3.org/TR/webaudio/#MathJax-Element-156", - "https://www.w3.org/TR/webaudio/#ref-for-smoothing-over-time%E2%91%A3", - "https://www.w3.org/TR/webaudio/#MathJax-Element-157-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1403", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1404", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1405", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1406", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1407", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1408", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1409", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1410", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1411", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1412", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1413", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1414", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1415", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1416", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1417", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1418", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1419", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1420", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1421", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1422", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1423", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1424", - "https://www.w3.org/TR/webaudio/#MathJax-Element-157", - "https://www.w3.org/TR/webaudio/#MathJax-Element-158-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1425", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1426", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1427", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1428", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1429", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1430", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1431", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1432", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1433", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1434", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1435", - "https://www.w3.org/TR/webaudio/#MathJax-Element-158", - "https://www.w3.org/TR/webaudio/#MathJax-Element-159-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1436", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1437", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1438", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1439", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1440", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1441", - "https://www.w3.org/TR/webaudio/#MathJax-Element-159", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-getfloatfrequencydata%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-getbytefrequencydata%E2%91%A4", - "https://www.w3.org/TR/webaudio/#MathJax-Element-160-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1442", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1443", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1444", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1445", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1446", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1447", - "https://www.w3.org/TR/webaudio/#MathJax-Element-160", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-mindecibels%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-maxdecibels%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-mindecibels%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-maxdecibels%E2%91%A4", - "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-start%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-start%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loop", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-stop%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-start%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-stop%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-start-when-offset-duration-duration%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-stop-when-when%E2%91%A1", - "https://www.w3.org/TR/webaudio/#playhead-position", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-detune%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-playbackrate%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-detune%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-compound-parameter%E2%91%A2", - "https://www.w3.org/TR/webaudio/#computedplaybackrate", - "https://www.w3.org/TR/webaudio/#ref-for-nominal-range%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-compound-parameter%E2%91%A3", - "https://www.w3.org/TR/webaudio/#MathJax-Element-161-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1448", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1449", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1450", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1451", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1452", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1453", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1454", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1455", - "https://www.w3.org/TR/webaudio/#MathJax-Element-161", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-buffer-set-slot", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-audiobuffersourcenode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-audiobuffersourcenode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceOptions", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-audiobuffersourcenode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A6%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-playbackrate%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-detune%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-boolean", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loop%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopstart", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopend", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-start%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A5%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-start-when-offset-duration-when", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-start-when-offset-duration-offset", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-start-when-offset-duration-duration%E2%91%A1", - "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-constructor-audiobuffersourcenode", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-audiobuffersourcenode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-audiobuffersourcenode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-buffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer-set-slot", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer-set-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-acquire-the-content%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-detune", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A6%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-compound-parameter%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-playbackrate%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-computedplaybackrate", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-k-rate%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-audioparam-automation-rate-constraints", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-loop", - "https://www.w3.org/TR/webaudio/#ref-for-idl-boolean%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-loopend", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A6%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-playhead-position", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loop%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-loopstart", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-playhead-position%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loop%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-playbackrate", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-compound-parameter%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-detune%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-computedplaybackrate%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-k-rate%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-audioparam-automation-rate-constraints%E2%91%A0", - "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-methods", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-start", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-source-started-slot%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-source-started-slot%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-queuing%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-acquire-the-content%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%93%AA%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-suspended%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-allowed-to-start%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-suspended-by-user-slot%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-start%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%93%AA%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-allowed-to-start%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-start%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-start-when-offset-duration-when", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%93%AA%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-start-when-offset-duration-offset", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-playhead-position%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-playbackrate%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loop%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-playbackrate%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loop%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-start-when-offset-duration-duration", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A6%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-start-when-offset-duration-duration%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-start-when-offset-duration-duration%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-playbackrate%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-start-when-offset-duration-duration%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webaudio/#AudioBufferSourceOptions", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourceoptions-buffer", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourceoptions-detune", - "https://www.w3.org/TR/webaudio/#ref-for-idl-boolean%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourceoptions-loop", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A6%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourceoptions-loopend", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A6%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourceoptions-loopstart", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourceoptions-playbackrate", - "https://www.w3.org/TR/webaudio/#dictionary-audiobuffersourceoptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourceoptions-buffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourceoptions-buffer%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourceoptions-detune", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-detune%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourceoptions-loop", - "https://www.w3.org/TR/webaudio/#ref-for-idl-boolean%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loop%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourceoptions-loopend", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourceoptions-loopstart", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A6%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourceoptions-playbackrate", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-playbackrate%E2%91%A6", - "https://www.w3.org/TR/webaudio/#looping-AudioBufferSourceNode", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loop%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loop%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-stop%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-start%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-start%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-playbackrate%E2%91%A7", - "https://www.w3.org/TR/webaudio/#playback-AudioBufferSourceNode", - "https://www.w3.org/TR/webaudio/#ref-for-computedplaybackrate%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-start%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#AudioDestinationNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%93%AA%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%93%AA%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioDestinationNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-explicit%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiodestinationnode-maxchannelcount%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-explicit%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiodestinationnode-maxchannelcount%E2%91%A1", - "https://www.w3.org/TR/webaudio/#AudioDestinationNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-audiodestinationnode-maxchannelcount", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiodestinationnode-maxchannelcount%E2%91%A2", - "https://www.w3.org/TR/webaudio/#AudioListener", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-listener%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-positionx", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-positiony", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-positionz", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-forwardx", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-forwardy", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-forwardz", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A7%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-positionx%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-positiony%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A7%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-positionz%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A7%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-forwardx%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A7%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-forwardy%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A7%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-forwardz%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A7%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-upx", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A7%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-upy", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A7%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-upz", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-setposition", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setposition-x-y-z-x", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setposition-x-y-z-y", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setposition-x-y-z-z", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-setorientation", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-x", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-y", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-z", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-xup", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-yup", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-zup", - "https://www.w3.org/TR/webaudio/#AudioListener-attributes", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-forwardx", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A7%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-forwardy", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A8%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-forwardz", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A8%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-positionx", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A8%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-positiony", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A8%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-positionz", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A8%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-upx", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A8%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-upy", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A8%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-upz", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A8%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#AudioListener-methods", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-forwardx%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-forwardy%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-forwardz%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-upx%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-upy%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-upz%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-forwardx%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-forwardy%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-forwardz%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-upx%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-upy%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-upz%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A8%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-setorientation%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-audiolistener-forward", - "https://www.w3.org/TR/webaudio/#ref-for-audiolistener-up", - "https://www.w3.org/TR/webaudio/#audiolistener-forward", - "https://www.w3.org/TR/webaudio/#audiolistener-up", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-setorientation-x", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-setorientation-y", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-setorientation-z", - "https://www.w3.org/TR/webaudio/#ref-for-audiolistener-forward%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-setorientation-xup", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-setorientation-yup", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-setorientation-zup", - "https://www.w3.org/TR/webaudio/#ref-for-audiolistener-up%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-setorientation%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-x", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-y", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-z", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-xup", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-yup", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-zup", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setposition", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-positionx%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-positiony%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-positionz%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-positionx%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-positiony%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-positionz%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A8%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-setposition%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-setposition-x", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-setposition-y", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-setposition-z", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-setposition%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setposition-x", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setposition-y", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setposition-z", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#listenerprocessing", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#AudioProcessingEvent", - "https://www.w3.org/TR/webaudio/#ref-for-AudioProcessingEvent%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioProcessingEvent%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-event%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioprocessingevent-outputbuffer%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioProcessingEvent%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-event%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-audioprocessingevent-audioprocessingevent", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audioprocessingevent-audioprocessingevent-type-eventinitdict-type", - "https://www.w3.org/TR/webaudio/#ref-for-AudioProcessingEventInit", - "https://www.w3.org/TR/webaudio/#dom-audioprocessingevent-audioprocessingevent-type-eventinitdict-eventinitdict", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioprocessingevent-playbacktime", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioprocessingevent-inputbuffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioprocessingevent-outputbuffer%E2%91%A1", - "https://www.w3.org/TR/webaudio/#AudioProcessingEvent-attributes", - "https://www.w3.org/TR/webaudio/#dom-audioprocessingevent-inputbuffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-scriptprocessornode-audioprocess%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audioprocessingevent-outputbuffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-scriptprocessornode-audioprocess%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audioprocessingevent-playbacktime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A7%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webaudio/#AudioProcessingEventInit", - "https://www.w3.org/TR/webaudio/#ref-for-AudioProcessingEventInit%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioProcessingEventInit%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioProcessingEventInit%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dictdef-eventinit%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioprocessingeventinit-playbacktime", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioprocessingeventinit-inputbuffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioprocessingeventinit-outputbuffer", - "https://www.w3.org/TR/webaudio/#dictionary-audioprocessingeventinit-members", - "https://www.w3.org/TR/webaudio/#ref-for-AudioProcessingEventInit%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audioprocessingeventinit-inputbuffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioprocessingevent-inputbuffer%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audioprocessingeventinit-outputbuffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A5%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioprocessingevent-outputbuffer%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audioprocessingeventinit-playbacktime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A7%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioprocessingevent-playbacktime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#BiquadFilterNode", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-frequency", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-frequency%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-detune", - "https://www.w3.org/TR/webaudio/#ref-for-compound-parameter%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-a-rate%E2%91%A2", - "https://www.w3.org/TR/webaudio/#computedfrequency", - "https://www.w3.org/TR/webaudio/#ref-for-nominal-range%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-compound-parameter%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for---nyquist-frequency", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A4", - "https://www.w3.org/TR/webaudio/#enumdef-biquadfiltertype", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-lowpass", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-highpass", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-bandpass", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-lowshelf", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-highshelf", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-peaking", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-notch", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-allpass", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-biquadfiltertype", - "https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-lowpass", - "https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-highpass", - "https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-bandpass", - "https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-lowshelf", - "https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-highshelf", - "https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-peaking", - "https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-notch", - "https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-allpass", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-a-rate%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%93%AA%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-biquadfilternode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-biquadfilternode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterOptions", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-biquadfilternode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-biquadfiltertype%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-type", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%93%AA%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-frequency%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%93%AA%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-detune%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%93%AA%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-q", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%93%AA%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-gain", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-getfrequencyresponse", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-frequencyhz", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-magresponse", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-phaseresponse", - "https://www.w3.org/TR/webaudio/#BiquadFilterNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-biquadfilternode-context-options", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-biquadfilternode", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#BiquadFilterNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-q", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%93%AA%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-lowpass%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-highpass%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-q%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-162-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1456", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1457", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1458", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1459", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1460", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1461", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1462", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1463", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1464", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1465", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1466", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1467", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1468", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1469", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1470", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1471", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1472", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1473", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1474", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1475", - "https://www.w3.org/TR/webaudio/#MathJax-Element-162", - "https://www.w3.org/TR/webaudio/#MathJax-Element-163-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1476", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1477", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1478", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1479", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1480", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1481", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1482", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1483", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1484", - "https://www.w3.org/TR/webaudio/#MathJax-Element-163", - "https://www.w3.org/TR/webaudio/#MathJax-Element-164-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1485", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1486", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1487", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1488", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1489", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1490", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1491", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1492", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1493", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1494", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1495", - "https://www.w3.org/TR/webaudio/#MathJax-Element-164", - "https://www.w3.org/TR/webaudio/#MathJax-Element-165-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1496", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1497", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1498", - "https://www.w3.org/TR/webaudio/#MathJax-Element-165", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-bandpass%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-notch%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-allpass%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-peaking%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-166-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1499", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1500", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1501", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1502", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1503", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1504", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1505", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1506", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1507", - "https://www.w3.org/TR/webaudio/#MathJax-Element-166", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-lowshelf%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-highshelf%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-detune", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%93%AA%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-compound-parameter%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-frequency%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-computedfrequency", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#MathJax-Element-167-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1508", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1509", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1510", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1511", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1512", - "https://www.w3.org/TR/webaudio/#MathJax-Element-167", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#MathJax-Element-168-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1513", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1514", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1515", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1516", - "https://www.w3.org/TR/webaudio/#MathJax-Element-168", - "https://www.w3.org/TR/webaudio/#MathJax-Element-169-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1517", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1518", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1519", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1520", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1521", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1522", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1523", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1524", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1525", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1526", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1527", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1528", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1529", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1530", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1531", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1532", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1533", - "https://www.w3.org/TR/webaudio/#MathJax-Element-169", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-frequency", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%93%AA%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-compound-parameter%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-detune%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-computedfrequency%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for---nyquist-frequency%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-gain", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%93%AA%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-lowshelf%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-highshelf%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-peaking%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#MathJax-Element-170-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1534", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1535", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1536", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1537", - "https://www.w3.org/TR/webaudio/#MathJax-Element-170", - "https://www.w3.org/TR/webaudio/#MathJax-Element-171-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1538", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1539", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1540", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1541", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1542", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1543", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1544", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1545", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1546", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1547", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1548", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1549", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1550", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1551", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1552", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1553", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1554", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1555", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1556", - "https://www.w3.org/TR/webaudio/#MathJax-Element-171", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-type", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-biquadfiltertype%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-lowpass%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-type%E2%91%A0", - "https://www.w3.org/TR/webaudio/#BiquadFilterNode-methods", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-getfrequencyresponse", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-current-value-slot%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-invalidaccesserror%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%93%AA%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-getfrequencyresponse%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-getfrequencyresponse-frequencyhz", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-getfrequencyresponse-magresponse", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-getfrequencyresponse-phaseresponse", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webaudio/#BiquadFilterOptions", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-biquadfiltertype%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilteroptions-type", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilteroptions-q", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilteroptions-detune", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilteroptions-frequency", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilteroptions-gain", - "https://www.w3.org/TR/webaudio/#dictionary-biquadfilteroptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-biquadfilteroptions-q", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-q%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-biquadfilteroptions-detune", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A5%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-detune%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-biquadfilteroptions-frequency", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-frequency%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-biquadfilteroptions-gain", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-gain%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-biquadfilteroptions-type", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-biquadfiltertype%E2%91%A3", - "https://www.w3.org/TR/webaudio/#filters-characteristics", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dfn-conforming-implementation", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#MathJax-Element-172-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1557", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1558", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1559", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1560", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1561", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1562", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1563", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1564", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1565", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1566", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1567", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1568", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1569", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1570", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1571", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1572", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1573", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1574", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1575", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1576", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1577", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1578", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1579", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1580", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1581", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1582", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1583", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1584", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1585", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1586", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1587", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1588", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1589", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1590", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1591", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1592", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1593", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1594", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1595", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1596", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1597", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1598", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1599", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1600", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1601", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1602", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1603", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1604", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1605", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1606", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1607", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1608", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1609", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1610", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1611", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1612", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1613", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1614", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1615", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1616", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1617", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1618", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1619", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1620", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1621", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1622", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1623", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1624", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1625", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1626", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1627", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1628", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1629", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1630", - "https://www.w3.org/TR/webaudio/#MathJax-Element-172", - "https://www.w3.org/TR/webaudio/#MathJax-Element-173-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1631", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1632", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1633", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1634", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1635", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1636", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1637", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1638", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1639", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1640", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1641", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1642", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1643", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1644", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1645", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1646", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1647", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1648", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1649", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1650", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1651", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1652", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1653", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1654", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1655", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1656", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1657", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1658", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1659", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1660", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1661", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1662", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1663", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1664", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1665", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1666", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1667", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1668", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1669", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1670", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1671", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1672", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1673", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1674", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1675", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1676", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1677", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1678", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1679", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1680", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1681", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1682", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1683", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1684", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1685", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1686", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1687", - "https://www.w3.org/TR/webaudio/#MathJax-Element-173", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-computedvalue%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#MathJax-Element-174-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1688", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1689", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1690", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1691", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1692", - "https://www.w3.org/TR/webaudio/#MathJax-Element-174", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#MathJax-Element-175-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1693", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1694", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1695", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1696", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1697", - "https://www.w3.org/TR/webaudio/#MathJax-Element-175", - "https://www.w3.org/TR/webaudio/#ref-for-computedfrequency%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-176-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1698", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1699", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1700", - "https://www.w3.org/TR/webaudio/#MathJax-Element-176", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-gain%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-177-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1701", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1702", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1703", - "https://www.w3.org/TR/webaudio/#MathJax-Element-177", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-q%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-178-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1704", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1705", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1706", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1707", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1708", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1709", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1721", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1722", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1723", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1724", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1725", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1739", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1740", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1741", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1742", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1743", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1758", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1759", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1760", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1761", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1762", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1763", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1764", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1765", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1766", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1767", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1768", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1769", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1793", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1794", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1795", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1801", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1802", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1803", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1804", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1805", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1710", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1711", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1712", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1713", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1714", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1715", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1716", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1717", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1718", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1719", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1720", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1726", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1727", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1728", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1729", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1730", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1731", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1732", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1733", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1734", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1735", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1736", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1737", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1738", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1744", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1745", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1746", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1747", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1748", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1749", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1750", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1751", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1752", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1753", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1754", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1755", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1756", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1757", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1770", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1771", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1772", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1773", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1774", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1775", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1776", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1777", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1778", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1779", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1780", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1781", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1782", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1783", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1784", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1785", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1786", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1787", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1788", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1789", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1790", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1791", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1792", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1796", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1797", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1798", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1799", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1800", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1806", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1807", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1808", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1809", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1810", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1811", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1812", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1813", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1814", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1815", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1816", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1817", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1818", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1819", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1820", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1821", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1822", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1823", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1824", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1825", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1826", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1827", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1828", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1829", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1830", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1831", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1832", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1833", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1834", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1835", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1836", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1837", - "https://www.w3.org/TR/webaudio/#MathJax-Element-178", - "https://www.w3.org/TR/webaudio/#MathJax-Element-179-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1838", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1839", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1840", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1841", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1842", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1843", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1844", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1845", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1846", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1847", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1848", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1849", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1850", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1851", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1852", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1853", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1854", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1855", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1856", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1857", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1858", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1859", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1860", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1861", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1862", - "https://www.w3.org/TR/webaudio/#MathJax-Element-179", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-lowpass%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-180-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1863", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1864", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1865", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1866", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1867", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1868", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1869", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1870", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1885", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1886", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1887", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1888", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1889", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1901", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1902", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1903", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1904", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1905", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1920", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1921", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1922", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1923", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1924", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1941", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1942", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1943", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1944", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1945", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1957", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1958", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1959", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1960", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1961", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1871", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1872", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1873", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1874", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1875", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1876", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1877", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1878", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1879", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1880", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1881", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1882", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1883", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1884", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1890", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1891", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1892", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1893", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1894", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1895", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1896", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1897", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1898", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1899", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1900", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1906", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1907", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1908", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1909", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1910", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1911", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1912", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1913", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1914", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1915", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1916", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1917", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1918", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1919", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1925", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1926", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1927", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1928", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1929", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1930", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1931", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1932", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1933", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1934", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1935", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1936", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1937", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1938", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1939", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1940", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1946", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1947", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1948", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1949", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1950", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1951", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1952", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1953", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1954", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1955", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1956", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1962", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1963", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1964", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1965", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1966", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1967", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1968", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1969", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1970", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1971", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1972", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1973", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1974", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1975", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1976", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1977", - "https://www.w3.org/TR/webaudio/#MathJax-Element-180", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-highpass%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-181-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1978", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1979", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1980", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1981", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1982", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1983", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1984", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1985", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2000", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2001", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2002", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2003", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2004", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2019", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2020", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2021", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2022", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2023", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2038", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2039", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2040", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2041", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2042", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2059", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2060", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2061", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2062", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2063", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2075", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2076", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2077", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2078", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2079", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1986", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1987", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1988", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1989", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1990", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1991", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1992", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1993", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1994", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1995", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1996", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1997", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1998", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1999", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2005", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2006", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2007", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2008", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2009", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2010", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2011", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2012", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2013", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2014", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2015", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2016", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2017", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2018", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2024", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2025", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2026", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2027", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2028", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2029", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2030", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2031", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2032", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2033", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2034", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2035", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2036", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2037", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2043", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2044", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2045", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2046", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2047", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2048", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2049", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2050", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2051", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2052", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2053", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2054", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2055", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2056", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2057", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2058", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2064", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2065", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2066", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2067", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2068", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2069", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2070", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2071", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2072", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2073", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2074", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2080", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2081", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2082", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2083", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2084", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2085", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2086", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2087", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2088", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2089", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2090", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2091", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2092", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2093", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2094", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2095", - "https://www.w3.org/TR/webaudio/#MathJax-Element-181", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-bandpass%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-182-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2096", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2097", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2098", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2099", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2100", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2101", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2102", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2103", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2111", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2112", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2113", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2114", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2115", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2121", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2122", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2123", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2124", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2125", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2134", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2135", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2136", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2137", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2138", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2148", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2149", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2150", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2151", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2152", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2164", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2165", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2166", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2167", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2168", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2104", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2105", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2106", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2107", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2108", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2109", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2110", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2116", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2117", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2118", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2119", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2120", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2126", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2127", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2128", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2129", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2130", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2131", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2132", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2133", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2139", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2140", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2141", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2142", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2143", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2144", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2145", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2146", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2147", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2153", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2154", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2155", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2156", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2157", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2158", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2159", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2160", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2161", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2162", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2163", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2169", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2170", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2171", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2172", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2173", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2174", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2175", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2176", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2177", - "https://www.w3.org/TR/webaudio/#MathJax-Element-182", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-notch%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-183-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2178", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2179", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2180", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2181", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2182", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2183", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2184", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2185", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2191", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2192", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2193", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2194", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2195", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2207", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2208", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2209", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2210", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2211", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2217", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2218", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2219", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2220", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2221", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2231", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2232", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2233", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2234", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2235", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2247", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2248", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2249", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2250", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2251", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2186", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2187", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2188", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2189", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2190", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2196", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2197", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2198", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2199", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2200", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2201", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2202", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2203", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2204", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2205", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2206", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2212", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2213", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2214", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2215", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2216", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2222", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2223", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2224", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2225", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2226", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2227", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2228", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2229", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2230", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2236", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2237", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2238", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2239", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2240", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2241", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2242", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2243", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2244", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2245", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2246", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2252", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2253", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2254", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2255", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2256", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2257", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2258", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2259", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2260", - "https://www.w3.org/TR/webaudio/#MathJax-Element-183", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-allpass%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-184-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2261", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2262", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2263", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2264", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2265", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2266", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2267", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2268", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2278", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2279", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2280", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2281", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2282", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2294", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2295", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2296", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2297", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2298", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2308", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2309", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2310", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2311", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2312", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2322", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2323", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2324", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2325", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2326", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2338", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2339", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2340", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2341", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2342", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2269", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2270", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2271", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2272", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2273", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2274", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2275", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2276", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2277", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2283", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2284", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2285", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2286", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2287", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2288", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2289", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2290", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2291", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2292", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2293", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2299", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2300", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2301", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2302", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2303", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2304", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2305", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2306", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2307", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2313", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2314", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2315", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2316", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2317", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2318", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2319", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2320", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2321", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2327", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2328", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2329", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2330", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2331", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2332", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2333", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2334", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2335", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2336", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2337", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2343", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2344", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2345", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2346", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2347", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2348", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2349", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2350", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2351", - "https://www.w3.org/TR/webaudio/#MathJax-Element-184", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-peaking%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-185-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2352", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2353", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2354", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2355", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2356", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2357", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2358", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2359", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2371", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2372", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2373", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2374", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2375", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2387", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2388", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2389", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2390", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2391", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2403", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2404", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2405", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2406", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2407", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2419", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2420", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2421", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2422", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2423", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2435", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2436", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2437", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2438", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2439", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2360", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2361", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2362", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2363", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2364", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2365", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2366", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2367", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2368", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2369", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2370", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2376", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2377", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2378", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2379", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2380", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2381", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2382", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2383", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2384", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2385", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2386", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2392", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2393", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2394", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2395", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2396", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2397", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2398", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2399", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2400", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2401", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2402", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2408", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2409", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2410", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2411", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2412", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2413", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2414", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2415", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2416", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2417", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2418", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2424", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2425", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2426", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2427", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2428", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2429", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2430", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2431", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2432", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2433", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2434", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2440", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2441", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2442", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2443", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2444", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2445", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2446", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2447", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2448", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2449", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2450", - "https://www.w3.org/TR/webaudio/#MathJax-Element-185", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-lowshelf%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-186-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2451", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2452", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2453", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2454", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2455", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2456", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2457", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2458", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2492", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2493", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2494", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2495", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2496", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2523", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2524", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2525", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2526", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2527", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2561", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2562", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2563", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2564", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2565", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2594", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2595", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2596", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2597", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2598", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2624", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2625", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2626", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2627", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2628", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2459", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2460", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2461", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2462", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2463", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2464", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2465", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2466", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2467", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2468", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2469", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2470", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2471", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2472", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2473", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2474", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2475", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2476", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2477", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2478", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2479", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2480", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2481", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2482", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2483", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2484", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2485", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2486", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2487", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2488", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2489", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2490", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2491", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2497", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2498", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2499", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2500", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2501", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2502", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2503", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2504", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2505", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2506", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2507", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2508", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2509", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2510", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2511", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2512", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2513", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2514", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2515", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2516", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2517", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2518", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2519", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2520", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2521", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2522", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2528", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2529", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2530", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2531", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2532", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2533", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2534", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2535", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2536", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2537", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2538", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2539", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2540", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2541", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2542", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2543", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2544", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2545", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2546", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2547", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2548", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2549", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2550", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2551", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2552", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2553", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2554", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2555", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2556", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2557", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2558", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2559", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2560", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2566", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2567", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2568", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2569", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2570", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2571", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2572", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2573", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2574", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2575", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2576", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2577", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2578", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2579", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2580", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2581", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2582", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2583", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2584", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2585", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2586", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2587", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2588", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2589", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2590", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2591", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2592", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2593", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2599", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2600", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2601", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2602", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2603", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2604", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2605", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2606", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2607", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2608", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2609", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2610", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2611", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2612", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2613", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2614", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2615", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2616", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2617", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2618", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2619", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2620", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2621", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2622", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2623", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2629", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2630", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2631", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2632", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2633", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2634", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2635", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2636", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2637", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2638", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2639", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2640", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2641", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2642", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2643", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2644", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2645", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2646", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2647", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2648", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2649", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2650", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2651", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2652", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2653", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2654", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2655", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2656", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2657", - "https://www.w3.org/TR/webaudio/#MathJax-Element-186", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-highshelf%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-187-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2658", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2659", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2660", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2661", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2662", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2663", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2664", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2665", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2699", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2700", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2701", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2702", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2703", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2731", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2732", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2733", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2734", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2735", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2769", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2770", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2771", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2772", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2773", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2802", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2803", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2804", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2805", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2806", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2831", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2832", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2833", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2834", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2835", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2666", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2667", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2668", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2669", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2670", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2671", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2672", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2673", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2674", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2675", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2676", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2677", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2678", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2679", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2680", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2681", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2682", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2683", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2684", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2685", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2686", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2687", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2688", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2689", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2690", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2691", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2692", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2693", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2694", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2695", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2696", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2697", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2698", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2704", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2705", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2706", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2707", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2708", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2709", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2710", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2711", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2712", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2713", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2714", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2715", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2716", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2717", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2718", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2719", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2720", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2721", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2722", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2723", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2724", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2725", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2726", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2727", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2728", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2729", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2730", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2736", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2737", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2738", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2739", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2740", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2741", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2742", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2743", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2744", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2745", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2746", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2747", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2748", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2749", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2750", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2751", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2752", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2753", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2754", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2755", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2756", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2757", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2758", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2759", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2760", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2761", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2762", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2763", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2764", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2765", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2766", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2767", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2768", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2774", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2775", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2776", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2777", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2778", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2779", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2780", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2781", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2782", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2783", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2784", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2785", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2786", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2787", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2788", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2789", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2790", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2791", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2792", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2793", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2794", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2795", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2796", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2797", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2798", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2799", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2800", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2801", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2807", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2808", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2809", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2810", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2811", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2812", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2813", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2814", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2815", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2816", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2817", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2818", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2819", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2820", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2821", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2822", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2823", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2824", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2825", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2826", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2827", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2828", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2829", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2830", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2836", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2837", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2838", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2839", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2840", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2841", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2842", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2843", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2844", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2845", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2846", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2847", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2848", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2849", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2850", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2851", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2852", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2853", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2854", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2855", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2856", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2857", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2858", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2859", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2860", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2861", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2862", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2863", - "https://www.w3.org/TR/webaudio/#MathJax-Element-187", - "https://www.w3.org/TR/webaudio/#ChannelMergerNode", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerOptions", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelmergeroptions-numberofinputs", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createchannelmerger%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelcount-constraints", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-explicit%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelcountmode-constraints", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#example-c8345030", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelmergernode-channelmergernode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-channelmergernode-channelmergernode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-channelmergernode-channelmergernode-context-options-options", - "https://www.w3.org/TR/webaudio/#ChannelMergerNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-channelmergernode-constructor-channelmergernode", - "https://www.w3.org/TR/webaudio/#dom-channelmergernode-channelmergernode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelmergernode-channelmergernode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-channelmergernode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-channelmergernode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ChannelMergerOptions", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerOptions%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelmergeroptions-numberofinputs%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dictionary-channelmergeroptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-channelmergeroptions-numberofinputs", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createchannelmerger%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ChannelSplitterNode", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelsplitteroptions-numberofoutputs", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createchannelsplitter%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelsplitteroptions-numberofoutputs%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterOptions", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelsplitternode-channelsplitternode", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelcount-constraints%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-explicit%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelcountmode-constraints%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-discrete%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelinterpretation-constraints", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createchannelsplitter%E2%91%A2", - "https://www.w3.org/TR/webaudio/#example-889bcff3", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelsplitternode-channelsplitternode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-channelsplitternode-channelsplitternode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-channelsplitternode-channelsplitternode-context-options-options", - "https://www.w3.org/TR/webaudio/#ChannelSplitterNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-channelsplitternode-constructor-channelsplitternode", - "https://www.w3.org/TR/webaudio/#dom-channelsplitternode-channelsplitternode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelsplitternode-channelsplitternode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-channelsplitternode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-channelsplitternode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ChannelSplitterOptions", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterOptions%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelsplitteroptions-numberofoutputs%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dictionary-channelsplitteroptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-channelsplitteroptions-numberofoutputs", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createchannelsplitter%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ConstantSourceNode", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-constantsourcenode-offset", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-constantsourcenode-constantsourcenode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-constantsourcenode-constantsourcenode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceOptions", - "https://www.w3.org/TR/webaudio/#dom-constantsourcenode-constantsourcenode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-constantsourcenode-offset%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ConstantSourceNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-constantsourcenode-constructor-constantsourcenode", - "https://www.w3.org/TR/webaudio/#dom-constantsourcenode-constantsourcenode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-constantsourcenode-constantsourcenode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-constantsourcenode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-constantsourcenode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ConstantSourceNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-constantsourcenode-offset", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ConstantSourceOptions", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A6%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-constantsourceoptions-offset", - "https://www.w3.org/TR/webaudio/#dictionary-constantsourceoptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-constantsourceoptions-offset", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-constantsourcenode-offset%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ConvolverNode", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelcount-constraints%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-clamped-max%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelcountmode-constraints%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelcount-constraints%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelcountmode-constraints%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-convolvernode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-convolvernode-convolvernode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverOptions", - "https://www.w3.org/TR/webaudio/#dom-convolvernode-convolvernode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-boolean%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-normalize", - "https://www.w3.org/TR/webaudio/#ConvolverNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-convolvernode-constructor-convolvernode", - "https://www.w3.org/TR/webaudio/#dom-convolvernode-convolvernode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-normalize%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolveroptions-disablenormalization", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-map-exists", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-normalize%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionodeoptions-channelcount%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-map-exists%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionodeoptions-channelcount%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionodeoptions-channelcountmode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-map-exists%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionodeoptions-channelcountmode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionodeoptions-channelinterpretation%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-map-exists%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionodeoptions-channelinterpretation%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-convolvernode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-convolvernode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-convolvernode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ConvolverNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-convolvernode-buffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-normalize%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-convolvernode-buffer-attribute", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-numberofchannels%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-samplerate%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-acquire-the-content%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A6%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-convolvernode-normalize", - "https://www.w3.org/TR/webaudio/#ref-for-idl-boolean%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-normalize%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-normalize%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-normalize%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ConvolverOptions", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolveroptions-buffer", - "https://www.w3.org/TR/webaudio/#ref-for-idl-boolean%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolveroptions-disablenormalization%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dictionary-convolveroptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-convolveroptions-buffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolveroptions-disablenormalization%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-convolveroptions-disablenormalization", - "https://www.w3.org/TR/webaudio/#ref-for-idl-boolean%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-normalize%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#Convolution-channel-configurations", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#convolver-diagram", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#DelayNode", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-delayoptions-maxdelaytime", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-delaynode-delaynode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-delaynode-delaynode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-DelayOptions", - "https://www.w3.org/TR/webaudio/#dom-delaynode-delaynode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-delaynode-delaytime", - "https://www.w3.org/TR/webaudio/#DelayNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-delaynode-constructor-delaynode", - "https://www.w3.org/TR/webaudio/#dom-delaynode-delaynode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-delaynode-delaynode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-delaynode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-delaynode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-DelayOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#DelayNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-delaynode-delaytime", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createdelay-maxdelaytime-maxdelaytime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createdelay%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-delayoptions-maxdelaytime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-DelayOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-delaynode-delaynode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-cycle", - "https://www.w3.org/TR/webaudio/#ref-for-dom-delaynode-delaytime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-delayoptions-maxdelaytime%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#DelayOptions", - "https://www.w3.org/TR/webaudio/#ref-for-DelayOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-DelayOptions%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-DelayOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A7%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-delayoptions-maxdelaytime%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A7%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-delayoptions-delaytime", - "https://www.w3.org/TR/webaudio/#dictionary-delayoptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-DelayOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-delayoptions-delaytime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A7%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-delayoptions-maxdelaytime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A7%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createdelay-maxdelaytime-maxdelaytime%E2%91%A1", - "https://www.w3.org/TR/webaudio/#DelayNode-processing", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#delaywriter", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#delayreader", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-delayreader", - "https://www.w3.org/TR/webaudio/#ref-for-source-node%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-delaywriter", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-delayreader%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-delaywriter%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelcount-constraints%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-clamped-max%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelcountmode-constraints%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-dynamicscompressornode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A5%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-dynamicscompressornode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorOptions", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-dynamicscompressornode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-threshold%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-knee%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-ratio%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-reduction", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-attack%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-release%E2%91%A0", - "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-constructor-dynamicscompressornode", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-dynamicscompressornode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-internal-reduction-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-internal-reduction-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-dynamicscompressornode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A6%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-attack", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-k-rate%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-audioparam-automation-rate-constraints%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-knee", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-k-rate%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-audioparam-automation-rate-constraints%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-ratio", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-k-rate%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-audioparam-automation-rate-constraints%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-reduction", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-internal-reduction-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-release", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-k-rate%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-audioparam-automation-rate-constraints%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-threshold", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-k-rate%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-audioparam-automation-rate-constraints%E2%91%A5", - "https://www.w3.org/TR/webaudio/#DynamicsCompressorOptions", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A6%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressoroptions-attack", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A6%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressoroptions-knee", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A6%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressoroptions-ratio", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressoroptions-release", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A6%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressoroptions-threshold", - "https://www.w3.org/TR/webaudio/#dictionary-dynamicscompressoroptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressoroptions-attack", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-attack%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressoroptions-knee", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A7%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-knee%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressoroptions-ratio", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-ratio%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressoroptions-release", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A7%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-release%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressoroptions-threshold", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A7%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-threshold%E2%91%A1", - "https://www.w3.org/TR/webaudio/#DynamicsCompressorOptions-processing", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#MathJax-Element-188-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2864", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2865", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2866", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2867", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2868", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2869", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2870", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2871", - "https://www.w3.org/TR/webaudio/#MathJax-Element-188", - "https://www.w3.org/TR/webaudio/#MathJax-Element-189-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2872", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2873", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2874", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2875", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2876", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2877", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2878", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2879", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2880", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2881", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2882", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2883", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2884", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2885", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2886", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2887", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2888", - "https://www.w3.org/TR/webaudio/#MathJax-Element-189", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#envelopefollower", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-envelopefollower", - "https://www.w3.org/TR/webaudio/#ref-for-envelopefollower%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-detector-average-slot", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-compressor-gain-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-attack%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-release%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-k-rate%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-detector-average-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-compressor-gain-slot", - "https://www.w3.org/TR/webaudio/#ref-for-compression-curve", - "https://www.w3.org/TR/webaudio/#ref-for-detector-curve", - "https://www.w3.org/TR/webaudio/#ref-for-computing-the-envelope-rate", - "https://www.w3.org/TR/webaudio/#ref-for-computing-the-makeup-gain", - "https://www.w3.org/TR/webaudio/#ref-for-linear-to-decibel", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-compressor-gain-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-detector-average-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-atomically%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-internal-reduction-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#computing-the-makeup-gain", - "https://www.w3.org/TR/webaudio/#ref-for-compression-curve%E2%91%A0", - "https://www.w3.org/TR/webaudio/#computing-the-envelope-rate", - "https://www.w3.org/TR/webaudio/#MathJax-Element-190-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2889", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2890", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2891", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2892", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2893", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2894", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2895", - "https://www.w3.org/TR/webaudio/#MathJax-Element-190", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-attack%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-release%E2%91%A3", - "https://www.w3.org/TR/webaudio/#detector-curve", - "https://www.w3.org/TR/webaudio/#MathJax-Element-191-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2896", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2897", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2898", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2899", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2900", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2901", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2902", - "https://www.w3.org/TR/webaudio/#MathJax-Element-191", - "https://www.w3.org/TR/webaudio/#compression-curve", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-threshold%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-knee%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-decibels-to-linear-gain-unit", - "https://www.w3.org/TR/webaudio/#ref-for-k-rate%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-threshold%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-knee%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-k-rate%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-decibels-to-linear-gain-unit%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-ratio%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-k-rate%E2%91%A4", - "https://www.w3.org/TR/webaudio/#MathJax-Element-192-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2903", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2904", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2905", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2906", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2907", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2908", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2909", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2910", - "https://www.w3.org/TR/webaudio/#MathJax-Element-192", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#MathJax-Element-193-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2911", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2912", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2913", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2914", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2915", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2916", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2917", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2918", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2919", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2920", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2921", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2922", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2923", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2924", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2925", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2926", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2927", - "https://www.w3.org/TR/webaudio/#MathJax-Element-193", - "https://www.w3.org/TR/webaudio/#MathJax-Element-194-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2928", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2929", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2930", - "https://www.w3.org/TR/webaudio/#MathJax-Element-194", - "https://www.w3.org/TR/webaudio/#linear-to-decibel", - "https://www.w3.org/TR/webaudio/#MathJax-Element-195-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2931", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2932", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2933", - "https://www.w3.org/TR/webaudio/#MathJax-Element-195", - "https://www.w3.org/TR/webaudio/#MathJax-Element-196-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2934", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2935", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2936", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2937", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2938", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2939", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2940", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2941", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2942", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2943", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2944", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2945", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2946", - "https://www.w3.org/TR/webaudio/#MathJax-Element-196", - "https://www.w3.org/TR/webaudio/#MathJax-Element-197-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2947", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2948", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2949", - "https://www.w3.org/TR/webaudio/#MathJax-Element-197", - "https://www.w3.org/TR/webaudio/#decibels-to-linear-gain-unit", - "https://www.w3.org/TR/webaudio/#MathJax-Element-198-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2950", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2951", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2952", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2953", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2954", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2955", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2956", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2957", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2958", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2959", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2960", - "https://www.w3.org/TR/webaudio/#MathJax-Element-198", - "https://www.w3.org/TR/webaudio/#GainNode", - "https://www.w3.org/TR/webaudio/#ref-for-GainNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-GainNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-GainNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-computedvalue%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-gainnode-gain", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-GainNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-gainnode-gainnode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-gainnode-gainnode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-GainOptions", - "https://www.w3.org/TR/webaudio/#dom-gainnode-gainnode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-gainnode-gain%E2%91%A0", - "https://www.w3.org/TR/webaudio/#GainNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-gainnode-constructor-gainnode", - "https://www.w3.org/TR/webaudio/#dom-gainnode-gainnode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A6%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-gainnode-gainnode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-gainnode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A6%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A6%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-GainNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-gainnode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-GainOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-GainNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#GainNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-gainnode-gain", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#GainOptions", - "https://www.w3.org/TR/webaudio/#ref-for-GainOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-GainOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-GainNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-GainOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A7%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-gainoptions-gain", - "https://www.w3.org/TR/webaudio/#dictionary-gainoptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-GainOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-gainoptions-gain", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A7%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-gainnode-gain%E2%91%A1", - "https://www.w3.org/TR/webaudio/#IIRFilterNode", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-iirfilternode-iirfilternode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-iirfilternode-iirfilternode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterOptions", - "https://www.w3.org/TR/webaudio/#dom-iirfilternode-iirfilternode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-iirfilternode-getfrequencyresponse", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-iirfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-frequencyhz", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-iirfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-magresponse", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-iirfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-phaseresponse", - "https://www.w3.org/TR/webaudio/#IIRFilterNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-iirfilternode-constructor-iirfilternode", - "https://www.w3.org/TR/webaudio/#dom-iirfilternode-iirfilternode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A6%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-iirfilternode-iirfilternode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-iirfilternode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A7%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-iirfilternode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#IIRFilterNode-methods", - "https://www.w3.org/TR/webaudio/#dom-iirfilternode-getfrequencyresponse", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-invalidaccesserror%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-iirfilternode-getfrequencyresponse%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-iirfilternode-getfrequencyresponse-frequencyhz", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-iirfilternode-getfrequencyresponse-magresponse", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-iirfilternode-getfrequencyresponse-phaseresponse", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webaudio/#IIRFilterOptions", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterOptions%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-sequence%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A7%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-iirfilteroptions-feedforward", - "https://www.w3.org/TR/webaudio/#ref-for-idl-sequence%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A7%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-iirfilteroptions-feedback", - "https://www.w3.org/TR/webaudio/#dictionary-iirfilteroptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-iirfilteroptions-feedforward", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A7%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createiirfilter-feedforward", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createiirfilter%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-iirfilteroptions-feedback", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A8%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createiirfilter-feedback", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createiirfilter%E2%91%A2", - "https://www.w3.org/TR/webaudio/#IIRFilterNode-filter-definition", - "https://www.w3.org/TR/webaudio/#MathJax-Element-199-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2961", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2962", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2963", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2964", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2965", - "https://www.w3.org/TR/webaudio/#MathJax-Element-199", - "https://www.w3.org/TR/webaudio/#MathJax-Element-200-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2966", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2967", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2968", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2969", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2970", - "https://www.w3.org/TR/webaudio/#MathJax-Element-200", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createiirfilter%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-iirfilternode-iirfilternode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-201-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2971", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2972", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2973", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2974", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2975", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2976", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2977", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2978", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2979", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2980", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2981", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2982", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2983", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2984", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2985", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2986", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2987", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2988", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2989", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2990", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2991", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2992", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2993", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2994", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2995", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2996", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2997", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2998", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2999", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3000", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3001", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3002", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3003", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3004", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3005", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3006", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3007", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3008", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3009", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3010", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3011", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3012", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3013", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3014", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3015", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3016", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3017", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3018", - "https://www.w3.org/TR/webaudio/#MathJax-Element-201", - "https://www.w3.org/TR/webaudio/#MathJax-Element-202-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3019", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3020", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3021", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3022", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3023", - "https://www.w3.org/TR/webaudio/#MathJax-Element-202", - "https://www.w3.org/TR/webaudio/#MathJax-Element-203-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3024", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3025", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3026", - "https://www.w3.org/TR/webaudio/#MathJax-Element-203", - "https://www.w3.org/TR/webaudio/#MathJax-Element-204-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3027", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3028", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3029", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3030", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3031", - "https://www.w3.org/TR/webaudio/#MathJax-Element-204", - "https://www.w3.org/TR/webaudio/#MathJax-Element-205-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3032", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3033", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3034", - "https://www.w3.org/TR/webaudio/#MathJax-Element-205", - "https://www.w3.org/TR/webaudio/#MathJax-Element-206-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3035", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3036", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3037", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3038", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3039", - "https://www.w3.org/TR/webaudio/#MathJax-Element-206", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createiirfilter-feedback%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createiirfilter%E2%91%A4", - "https://www.w3.org/TR/webaudio/#MathJax-Element-207-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3040", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3041", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3042", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3043", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3044", - "https://www.w3.org/TR/webaudio/#MathJax-Element-207", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createiirfilter-feedforward%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createiirfilter%E2%91%A5", - "https://www.w3.org/TR/webaudio/#MathJax-Element-208-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3045", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3046", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3047", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3048", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3049", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3050", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3051", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3052", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3053", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3054", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3055", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3056", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3057", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3058", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3059", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3060", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3061", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3062", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3063", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3064", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3065", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3066", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3067", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3068", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3069", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3070", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3071", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3072", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3073", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3074", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3075", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3076", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3077", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3078", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3079", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3080", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3081", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3082", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3083", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3084", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3085", - "https://www.w3.org/TR/webaudio/#MathJax-Element-208", - "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceNode", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-audio%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-video%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-createmediaelementsource%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediaelementaudiosourceoptions-mediaelement", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceOptions", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-createmediaelementsource%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#example-92c31c2c", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-SameObject%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediaelementaudiosourcenode-mediaelement%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-mediaelementaudiosourcenode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-mediaelementaudiosourcenode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-mediaelementaudiosourcenode-mediaelement", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceOptions", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceOptions%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediaelementaudiosourceoptions-mediaelement%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dictionary-mediaelementaudiosourceoptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-mediaelementaudiosourceoptions-mediaelement", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceOptions-security", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MediaStreamAudioDestinationNode", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioDestinationNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioDestinationNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamaudiodestinationnode-stream", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediadevices-getusermedia%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-explicit%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioDestinationNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamaudiodestinationnode-stream%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MediaStreamAudioDestinationNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiodestinationnode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioDestinationNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiodestinationnode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioDestinationNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#MediaStreamAudioDestinationNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiodestinationnode-stream", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A5", - "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceNode", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceOptions", - "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-SameObject%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamaudiosourcenode-mediastream", - "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamaudiosourceoptions-mediastream", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-code-unit", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourcenode-input-track-slot", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamaudiosourcenode-input-track-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourcenode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourcenode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourcenode-mediastream", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceOptions", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamaudiosourceoptions-mediastream%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dictionary-mediastreamaudiosourceoptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourceoptions-mediastream", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#MediaStreamTrackAudioSourceNode", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrackaudiosourceoptions-mediastreamtrack", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrackaudiosourceoptions-mediastreamtrack%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceOptions", - "https://www.w3.org/TR/webaudio/#dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode-context-options-options", - "https://www.w3.org/TR/webaudio/#MediaStreamTrackAudioSourceNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrackaudiosourceoptions-mediastreamtrack%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-mediastreamtrackaudiosourcenode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-mediastreamtrackaudiosourcenode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MediaStreamTrackAudioSourceOptions", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrackaudiosourceoptions-mediastreamtrack%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dictionary-mediastreamtrackaudiosourceoptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-mediastreamtrackaudiosourceoptions-mediastreamtrack", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#OscillatorNode", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-start%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for---nyquist-frequency%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for---nyquist-frequency%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for---nyquist-frequency%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatornode-frequency", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatornode-detune", - "https://www.w3.org/TR/webaudio/#ref-for-a-rate%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-compound-parameter%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#computedoscfrequency", - "https://www.w3.org/TR/webaudio/#ref-for-computedoscfrequency", - "https://www.w3.org/TR/webaudio/#ref-for-nominal-range%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for---nyquist-frequency%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for---nyquist-frequency%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#enumdef-oscillatortype", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-sine", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-square", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-sawtooth", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-triangle", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-custom", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-oscillatortype", - "https://www.w3.org/TR/webaudio/#dom-oscillatortype-sine", - "https://www.w3.org/TR/webaudio/#dom-oscillatortype-square", - "https://www.w3.org/TR/webaudio/#dom-oscillatortype-sawtooth", - "https://www.w3.org/TR/webaudio/#dom-oscillatortype-triangle", - "https://www.w3.org/TR/webaudio/#dom-oscillatortype-custom", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatornode-oscillatornode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A7%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-oscillatornode-oscillatornode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorOptions", - "https://www.w3.org/TR/webaudio/#dom-oscillatornode-oscillatornode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-oscillatortype%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatornode-type", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatornode-frequency%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatornode-detune%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatornode-setperiodicwave", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-oscillatornode-setperiodicwave-periodicwave-periodicwave", - "https://www.w3.org/TR/webaudio/#OscillatorNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-oscillatornode-oscillatornode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A7%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatornode-oscillatornode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-oscillatornode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A7%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A7%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-oscillatornode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#OscillatorNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-oscillatornode-detune", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatornode-frequency%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-a-rate%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-compound-parameter%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatornode-frequency%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-computedoscfrequency%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatornode-frequency%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#MathJax-Element-209-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3086", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3087", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3088", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3089", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3090", - "https://www.w3.org/TR/webaudio/#MathJax-Element-209", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#MathJax-Element-210-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3091", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3092", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3093", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3094", - "https://www.w3.org/TR/webaudio/#MathJax-Element-210", - "https://www.w3.org/TR/webaudio/#MathJax-Element-211-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3095", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3096", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3097", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3098", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3099", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3100", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3101", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3102", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3103", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3104", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3105", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3106", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3107", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3108", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3109", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3110", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3111", - "https://www.w3.org/TR/webaudio/#MathJax-Element-211", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A7%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-oscillatornode-frequency", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-a-rate%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-compound-parameter%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatornode-detune%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-computedoscfrequency%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-nominal-range%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for---nyquist-frequency%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for---nyquist-frequency%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for---nyquist-frequency%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for---nyquist-frequency%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-oscillatornode-type", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-oscillatortype%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-custom%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatornode-setperiodicwave%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-custom%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-sine%E2%91%A0", - "https://www.w3.org/TR/webaudio/#OscillatorNode-methods", - "https://www.w3.org/TR/webaudio/#dom-oscillatornode-setperiodicwave", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatornode-setperiodicwave%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-oscillatornode-setperiodicwave-periodicwave", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webaudio/#OscillatorOptions", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-oscillatortype%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatoroptions-type", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A7%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatoroptions-frequency", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A7%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatoroptions-detune", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatoroptions-periodicwave", - "https://www.w3.org/TR/webaudio/#dictionary-oscillatoroptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-oscillatoroptions-detune", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A7%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-oscillatoroptions-frequency", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A8%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-oscillatoroptions-periodicwave", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatoroptions-type%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-custom%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-oscillatoroptions-type", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-oscillatortype%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatoroptions-periodicwave%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatoroptions-periodicwave%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatoroptions-type%E2%91%A1", - "https://www.w3.org/TR/webaudio/#basic-waveform-phase", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveconstraints-disablenormalization%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-sine%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-212-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3112", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3113", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3114", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3115", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3116", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3117", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3118", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3119", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3120", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3121", - "https://www.w3.org/TR/webaudio/#MathJax-Element-212", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-square%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-213-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3122", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3123", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3124", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3125", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3126", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3127", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3128", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3129", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3130", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3131", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3132", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3133", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3134", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3145", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3146", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3147", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3148", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3135", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3136", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3137", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3138", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3139", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3140", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3141", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3142", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3143", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3144", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3149", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3150", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3151", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3152", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3153", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3154", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3155", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3156", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3157", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3158", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3159", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3160", - "https://www.w3.org/TR/webaudio/#MathJax-Element-213", - "https://www.w3.org/TR/webaudio/#MathJax-Element-214-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3161", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3162", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3163", - "https://www.w3.org/TR/webaudio/#MathJax-Element-214", - "https://www.w3.org/TR/webaudio/#MathJax-Element-215-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3164", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3165", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3166", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3167", - "https://www.w3.org/TR/webaudio/#MathJax-Element-215", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-sawtooth%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-216-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3168", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3169", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3170", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3171", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3172", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3173", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3174", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3175", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3176", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3177", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3178", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3179", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3180", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3181", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3182", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3183", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3184", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3185", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3186", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3187", - "https://www.w3.org/TR/webaudio/#MathJax-Element-216", - "https://www.w3.org/TR/webaudio/#MathJax-Element-217-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3188", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3189", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3190", - "https://www.w3.org/TR/webaudio/#MathJax-Element-217", - "https://www.w3.org/TR/webaudio/#MathJax-Element-218-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3191", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3192", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3193", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3194", - "https://www.w3.org/TR/webaudio/#MathJax-Element-218", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-triangle%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-219-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3195", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3196", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3197", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3198", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3199", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3200", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3201", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3202", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3203", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3204", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3205", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3206", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3207", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3208", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3209", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3210", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3223", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3224", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3225", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3226", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3227", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3228", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3229", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3230", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3231", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3232", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3233", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3234", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3235", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3236", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3237", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3211", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3212", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3213", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3214", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3215", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3216", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3217", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3218", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3219", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3220", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3221", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3222", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3238", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3239", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3240", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3241", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3242", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3243", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3244", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3245", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3246", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3247", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3248", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3249", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3250", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3251", - "https://www.w3.org/TR/webaudio/#MathJax-Element-219", - "https://www.w3.org/TR/webaudio/#MathJax-Element-220-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3252", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3253", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3254", - "https://www.w3.org/TR/webaudio/#MathJax-Element-220", - "https://www.w3.org/TR/webaudio/#MathJax-Element-221-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3255", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3256", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3257", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3258", - "https://www.w3.org/TR/webaudio/#MathJax-Element-221", - "https://www.w3.org/TR/webaudio/#PannerNode", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A7%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-listener%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelcount-constraints%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-clamped-max%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelcountmode-constraints%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-panningmodel%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panningmodeltype-hrtf%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-panningmodeltype", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panningmodeltype-equalpower", - "https://www.w3.org/TR/webaudio/#enumdef-panningmodeltype", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panningmodeltype-equalpower%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panningmodeltype-hrtf%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-panningmodeltype%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-panningmodeltype-equalpower", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-a-rate%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-panningmodeltype-hrtf", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-k-rate%E2%91%A5", - "https://www.w3.org/TR/webaudio/#effective-automation-rate", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-panningmodel%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-panningmodel%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panningmodeltype-hrtf%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-effective-automation-rate", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-k-rate%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-effective-automation-rate%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-distancemodeltype", - "https://www.w3.org/TR/webaudio/#ref-for-dom-distancemodeltype-inverse", - "https://www.w3.org/TR/webaudio/#MathJax-Element-222-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3259", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3260", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3261", - "https://www.w3.org/TR/webaudio/#MathJax-Element-222", - "https://www.w3.org/TR/webaudio/#MathJax-Element-223-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3262", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3263", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3264", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3265", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3266", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3267", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3268", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3269", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3270", - "https://www.w3.org/TR/webaudio/#MathJax-Element-223", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-refdistance", - "https://www.w3.org/TR/webaudio/#MathJax-Element-224-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3271", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3272", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3273", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3274", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3275", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3276", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3277", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3278", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3279", - "https://www.w3.org/TR/webaudio/#MathJax-Element-224", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-maxdistance", - "https://www.w3.org/TR/webaudio/#MathJax-Element-225-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3280", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3281", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3282", - "https://www.w3.org/TR/webaudio/#MathJax-Element-225", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-rollofffactor", - "https://www.w3.org/TR/webaudio/#enumdef-distancemodeltype", - "https://www.w3.org/TR/webaudio/#ref-for-dom-distancemodeltype-linear", - "https://www.w3.org/TR/webaudio/#ref-for-dom-distancemodeltype-inverse%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-distancemodeltype-exponential", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-distancemodeltype%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-distancemodeltype-linear", - "https://www.w3.org/TR/webaudio/#MathJax-Element-226-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3283", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3284", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3285", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3286", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3287", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3288", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3289", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3290", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3291", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3292", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3293", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3294", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3295", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3296", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3297", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3298", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3299", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3300", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3301", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3302", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3303", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3304", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3305", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3306", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3307", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3308", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3309", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3310", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3311", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3312", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3313", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3314", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3315", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3316", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3317", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3318", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3319", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3320", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3321", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3322", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3323", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3324", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3325", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3326", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3327", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3328", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3329", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3330", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3331", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3332", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3333", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3334", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3335", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3336", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3337", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3338", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3339", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3340", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3341", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3342", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3343", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3344", - "https://www.w3.org/TR/webaudio/#MathJax-Element-226", - "https://www.w3.org/TR/webaudio/#MathJax-Element-227-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3345", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3346", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3347", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3348", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3349", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3350", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3351", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3352", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3353", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3354", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3355", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3356", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3357", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3358", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3359", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3360", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3361", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3362", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3363", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3364", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3365", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3366", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3367", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3368", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3369", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3370", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3371", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3372", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3373", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3374", - "https://www.w3.org/TR/webaudio/#MathJax-Element-227", - "https://www.w3.org/TR/webaudio/#MathJax-Element-228-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3375", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3376", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3377", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3378", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3379", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3380", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3381", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3382", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3383", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3384", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3385", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3386", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3387", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3388", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3389", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3390", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3391", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3392", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3393", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3394", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3395", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3396", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3397", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3398", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3399", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3400", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3401", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3402", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3403", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3404", - "https://www.w3.org/TR/webaudio/#MathJax-Element-228", - "https://www.w3.org/TR/webaudio/#MathJax-Element-229-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3405", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3406", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3407", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3408", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3409", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3410", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3411", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3412", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3413", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3414", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3415", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3416", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3417", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3418", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3419", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3420", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3421", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3422", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3423", - "https://www.w3.org/TR/webaudio/#MathJax-Element-229", - "https://www.w3.org/TR/webaudio/#MathJax-Element-230-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3424", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3425", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3426", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3427", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3428", - "https://www.w3.org/TR/webaudio/#MathJax-Element-230", - "https://www.w3.org/TR/webaudio/#MathJax-Element-231-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3429", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3430", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3431", - "https://www.w3.org/TR/webaudio/#MathJax-Element-231", - "https://www.w3.org/TR/webaudio/#MathJax-Element-232-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3432", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3433", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3434", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3435", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3436", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3437", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3438", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3439", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3440", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3441", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3442", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3443", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3444", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3445", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3446", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3447", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3448", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3449", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3450", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3451", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3452", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3453", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3454", - "https://www.w3.org/TR/webaudio/#MathJax-Element-232", - "https://www.w3.org/TR/webaudio/#dom-distancemodeltype-inverse", - "https://www.w3.org/TR/webaudio/#MathJax-Element-233-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3455", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3456", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3457", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3458", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3459", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3460", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3461", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3462", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3463", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3464", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3465", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3466", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3467", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3468", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3469", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3470", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3471", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3472", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3473", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3474", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3475", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3476", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3477", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3478", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3479", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3480", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3481", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3482", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3483", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3484", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3485", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3486", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3487", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3488", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3489", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3490", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3491", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3492", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3493", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3494", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3495", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3496", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3497", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3498", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3499", - "https://www.w3.org/TR/webaudio/#MathJax-Element-233", - "https://www.w3.org/TR/webaudio/#MathJax-Element-234-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3500", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3501", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3502", - "https://www.w3.org/TR/webaudio/#MathJax-Element-234", - "https://www.w3.org/TR/webaudio/#MathJax-Element-235-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3503", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3504", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3505", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3506", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3507", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3508", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3509", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3510", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3511", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3512", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3513", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3514", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3515", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3516", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3517", - "https://www.w3.org/TR/webaudio/#MathJax-Element-235", - "https://www.w3.org/TR/webaudio/#MathJax-Element-236-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3518", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3519", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3520", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3521", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3522", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3523", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3524", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3525", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3526", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3527", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3528", - "https://www.w3.org/TR/webaudio/#MathJax-Element-236", - "https://www.w3.org/TR/webaudio/#MathJax-Element-237-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3529", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3530", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3531", - "https://www.w3.org/TR/webaudio/#MathJax-Element-237", - "https://www.w3.org/TR/webaudio/#MathJax-Element-238-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3532", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3533", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3534", - "https://www.w3.org/TR/webaudio/#MathJax-Element-238", - "https://www.w3.org/TR/webaudio/#dom-distancemodeltype-exponential", - "https://www.w3.org/TR/webaudio/#MathJax-Element-239-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3535", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3536", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3537", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3538", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3539", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3540", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3541", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3542", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3543", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3544", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3545", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3546", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3547", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3548", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3549", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3550", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3551", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3552", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3553", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3554", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3555", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3556", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3557", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3558", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3559", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3560", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3561", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3562", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3563", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3564", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3565", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3566", - "https://www.w3.org/TR/webaudio/#MathJax-Element-239", - "https://www.w3.org/TR/webaudio/#MathJax-Element-240-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3567", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3568", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3569", - "https://www.w3.org/TR/webaudio/#MathJax-Element-240", - "https://www.w3.org/TR/webaudio/#MathJax-Element-241-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3570", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3571", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3572", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3573", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3574", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3575", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3576", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3577", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3578", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3579", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3580", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3581", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3582", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3583", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3584", - "https://www.w3.org/TR/webaudio/#MathJax-Element-241", - "https://www.w3.org/TR/webaudio/#MathJax-Element-242-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3585", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3586", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3587", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3588", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3589", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3590", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3591", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3592", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3593", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3594", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3595", - "https://www.w3.org/TR/webaudio/#MathJax-Element-242", - "https://www.w3.org/TR/webaudio/#MathJax-Element-243-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3596", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3597", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3598", - "https://www.w3.org/TR/webaudio/#MathJax-Element-243", - "https://www.w3.org/TR/webaudio/#MathJax-Element-244-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3599", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3600", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3601", - "https://www.w3.org/TR/webaudio/#MathJax-Element-244", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-pannernode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A7%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-pannernode-pannernode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-PannerOptions", - "https://www.w3.org/TR/webaudio/#dom-pannernode-pannernode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-panningmodeltype%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-panningmodel%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-positionx", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-positiony", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-positionz", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-orientationx", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-orientationy", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-orientationz", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-distancemodeltype%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-distancemodel", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A8%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-refdistance%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A8%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-maxdistance%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A8%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-rollofffactor%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A8%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-coneinnerangle", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A8%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-coneouterangle", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A8%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-coneoutergain", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-setposition", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A8%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-pannernode-setposition-x-y-z-x", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A8%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-pannernode-setposition-x-y-z-y", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A8%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-pannernode-setposition-x-y-z-z", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-setorientation", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A8%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-pannernode-setorientation-x-y-z-x", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A8%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-pannernode-setorientation-x-y-z-y", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A8%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-pannernode-setorientation-x-y-z-z", - "https://www.w3.org/TR/webaudio/#PannerNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-pannernode-pannernode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A7%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-pannernode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-pannernode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A7%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A8%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-pannernode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-PannerOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#PannerNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-pannernode-coneinnerangle", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A8%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-pannernode-coneouterangle", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A8%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-coneoutergain%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-pannernode-coneoutergain", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A8%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-coneouterangle%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-pannernode-distancemodel", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-distancemodeltype%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-distancemodeltype-inverse%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-pannernode-maxdistance", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%93%AA%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-pannernode-orientationx", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webaudio/#MathJax-Element-245-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3602", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3603", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3604", - "https://www.w3.org/TR/webaudio/#MathJax-Element-245", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-audioparam-automation-rate-constraints%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-pannernode-orientationy", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webaudio/#MathJax-Element-246-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3605", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3606", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3607", - "https://www.w3.org/TR/webaudio/#MathJax-Element-246", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-audioparam-automation-rate-constraints%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-pannernode-orientationz", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webaudio/#MathJax-Element-247-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3608", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3609", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3610", - "https://www.w3.org/TR/webaudio/#MathJax-Element-247", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-audioparam-automation-rate-constraints%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-pannernode-panningmodel", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-panningmodeltype%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panningmodeltype-equalpower%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-pannernode-positionx", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webaudio/#MathJax-Element-248-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3611", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3612", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3613", - "https://www.w3.org/TR/webaudio/#MathJax-Element-248", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-audioparam-automation-rate-constraints%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-pannernode-positiony", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-249-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3614", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3615", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3616", - "https://www.w3.org/TR/webaudio/#MathJax-Element-249", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-audioparam-automation-rate-constraints%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-pannernode-positionz", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-250-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3617", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3618", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3619", - "https://www.w3.org/TR/webaudio/#MathJax-Element-250", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-audioparam-automation-rate-constraints%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-pannernode-refdistance", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%93%AA%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-pannernode-rollofffactor", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%93%AA%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-rollofffactor%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-distancemodel%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-distancemodeltype-linear%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-251-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3620", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3621", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3622", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3623", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3624", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3625", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3626", - "https://www.w3.org/TR/webaudio/#MathJax-Element-251", - "https://www.w3.org/TR/webaudio/#ref-for-dom-distancemodeltype-inverse%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-252-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3627", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3628", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3629", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3630", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3631", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3632", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3633", - "https://www.w3.org/TR/webaudio/#MathJax-Element-252", - "https://www.w3.org/TR/webaudio/#ref-for-dom-distancemodeltype-exponential%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-253-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3634", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3635", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3636", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3637", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3638", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3639", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3640", - "https://www.w3.org/TR/webaudio/#MathJax-Element-253", - "https://www.w3.org/TR/webaudio/#PannerNode-methods", - "https://www.w3.org/TR/webaudio/#dom-pannernode-setorientation", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-orientationx%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-orientationy%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-orientationz%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-orientationx%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-orientationy%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-orientationz%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-setorientation%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-pannernode-setorientation-x", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A8%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-pannernode-setorientation-y", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A8%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-pannernode-setorientation-z", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A8%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-pannernode-setposition", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-positionx%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-positiony%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-positionz%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-positionx%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-positiony%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-positionz%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-listener%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-setposition%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-pannernode-setposition-x", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-pannernode-setposition-y", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-pannernode-setposition-z", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webaudio/#PannerOptions", - "https://www.w3.org/TR/webaudio/#ref-for-PannerOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-PannerOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-PannerOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-panningmodeltype%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panneroptions-panningmodel", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-distancemodeltype%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panneroptions-distancemodel", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panneroptions-positionx", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panneroptions-positiony", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panneroptions-positionz", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panneroptions-orientationx", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panneroptions-orientationy", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panneroptions-orientationz", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%93%AA%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panneroptions-refdistance", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%93%AA%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panneroptions-maxdistance", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%93%AA%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panneroptions-rollofffactor", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%93%AA%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panneroptions-coneinnerangle", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%93%AA%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panneroptions-coneouterangle", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%93%AA%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panneroptions-coneoutergain", - "https://www.w3.org/TR/webaudio/#dictionary-pannernode-members", - "https://www.w3.org/TR/webaudio/#ref-for-PannerOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-panneroptions-coneinnerangle", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%93%AA%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-coneinnerangle%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-panneroptions-coneouterangle", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-coneouterangle%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-panneroptions-coneoutergain", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-coneoutergain%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-panneroptions-distancemodel", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-distancemodeltype%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-panneroptions-maxdistance", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-maxdistance%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-panneroptions-orientationx", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%91%A8", - "https://www.w3.org/TR/webaudio/#MathJax-Element-254-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3641", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3642", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3643", - "https://www.w3.org/TR/webaudio/#MathJax-Element-254", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-orientationx%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-panneroptions-orientationy", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#MathJax-Element-255-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3644", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3645", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3646", - "https://www.w3.org/TR/webaudio/#MathJax-Element-255", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-orientationy%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-panneroptions-orientationz", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-256-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3647", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3648", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3649", - "https://www.w3.org/TR/webaudio/#MathJax-Element-256", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-orientationz%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-panneroptions-panningmodel", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-panningmodeltype%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-panneroptions-positionx", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-257-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3650", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3651", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3652", - "https://www.w3.org/TR/webaudio/#MathJax-Element-257", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-positionx%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-panneroptions-positiony", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-258-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3653", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3654", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3655", - "https://www.w3.org/TR/webaudio/#MathJax-Element-258", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-positiony%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-panneroptions-positionz", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#MathJax-Element-259-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3656", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3657", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3658", - "https://www.w3.org/TR/webaudio/#MathJax-Element-259", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-positionz%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-panneroptions-refdistance", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-refdistance%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-panneroptions-rollofffactor", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-rollofffactor%E2%91%A2", - "https://www.w3.org/TR/webaudio/#panner-channel-limitations", - "https://www.w3.org/TR/webaudio/#ref-for-stereopannernode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#PeriodicWave", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dfn-conforming-implementation%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-periodicwave", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A8%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-periodicwave-periodicwave-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-periodicwave-periodicwave-context-options-options", - "https://www.w3.org/TR/webaudio/#PeriodicWave-constructors", - "https://www.w3.org/TR/webaudio/#dom-periodicwave-periodicwave", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-periodicwave-real-slot", - "https://www.w3.org/TR/webaudio/#dom-periodicwave-imag-slot", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-periodicwave-normalize-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-periodicwave-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-real%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-imag%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-real%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-imag%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-real-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-imag-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-real%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-real%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-real-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-imag%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-imag-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-real%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-real%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-real-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-imag-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-real%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-real%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-real-slot%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-imag-slot%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-imag%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-imag%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-real-slot%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-imag-slot%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-real%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-imag%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-imag-slot%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-real-slot%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-real-slot%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-imag-slot%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-imag-slot%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-sine%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-real-slot%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-imag-slot%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-normalize-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveconstraints-disablenormalization%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveConstraints%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-periodicwave%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-periodicwave-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A8%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A8%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A8%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-periodicwave-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#PeriodicWaveConstraints", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveConstraints%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveConstraints%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveConstraints%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveConstraints%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-idl-boolean%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveconstraints-disablenormalization%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dictionary-periodicwaveconstraints-members", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveConstraints%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-periodicwaveconstraints-disablenormalization", - "https://www.w3.org/TR/webaudio/#ref-for-idl-boolean%E2%91%A8", - "https://www.w3.org/TR/webaudio/#PeriodicWaveOptions", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveOptions%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-real%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-imag%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatornode-type%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-sine%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveOptions%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveConstraints%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-idl-sequence%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-real%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-sequence%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-imag%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dictionary-periodicwaveoptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveOptions%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-periodicwaveoptions-imag", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-imag%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-periodicwaveoptions-real", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-real%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#waveform-generation", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createperiodicwave%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-260-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3659", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3660", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3661", - "https://www.w3.org/TR/webaudio/#MathJax-Element-260", - "https://www.w3.org/TR/webaudio/#MathJax-Element-261-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3662", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3663", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3664", - "https://www.w3.org/TR/webaudio/#MathJax-Element-261", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-real-slot%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-imag-slot%E2%91%A8", - "https://www.w3.org/TR/webaudio/#MathJax-Element-262-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3665", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3666", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3667", - "https://www.w3.org/TR/webaudio/#MathJax-Element-262", - "https://www.w3.org/TR/webaudio/#MathJax-Element-263-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3668", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3669", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3670", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3671", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3672", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3673", - "https://www.w3.org/TR/webaudio/#MathJax-Element-263", - "https://www.w3.org/TR/webaudio/#MathJax-Element-264-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3674", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3675", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3676", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3677", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3678", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3679", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3680", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3681", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3682", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3683", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3684", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3685", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3686", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3687", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3688", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3689", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3690", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3691", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3692", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3693", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3694", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3695", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3696", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3697", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3698", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3699", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3700", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3701", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3702", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3703", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3704", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3705", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3706", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3707", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3708", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3709", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3710", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3711", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3712", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3713", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3714", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3715", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3716", - "https://www.w3.org/TR/webaudio/#MathJax-Element-264", - "https://www.w3.org/TR/webaudio/#waveform-normalization", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-normalize-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#MathJax-Element-265-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3717", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3718", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3719", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3720", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3721", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3722", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3723", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3724", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3725", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3726", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3727", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3728", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3729", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3730", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3731", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3732", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3733", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3734", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3735", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3736", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3737", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3738", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3739", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3740", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3741", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3742", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3743", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3744", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3745", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3746", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3747", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3748", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3749", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3750", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3751", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3752", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3753", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3754", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3755", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3756", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3757", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3758", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3759", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3760", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3761", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3762", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3763", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3764", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3765", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3766", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3767", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3768", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3769", - "https://www.w3.org/TR/webaudio/#MathJax-Element-265", - "https://www.w3.org/TR/webaudio/#MathJax-Element-266-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3770", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3771", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3772", - "https://www.w3.org/TR/webaudio/#MathJax-Element-266", - "https://www.w3.org/TR/webaudio/#MathJax-Element-267-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3773", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3774", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3775", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3776", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3777", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3778", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3779", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3780", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3781", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3782", - "https://www.w3.org/TR/webaudio/#MathJax-Element-267", - "https://www.w3.org/TR/webaudio/#MathJax-Element-268-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3783", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3784", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3785", - "https://www.w3.org/TR/webaudio/#MathJax-Element-268", - "https://www.w3.org/TR/webaudio/#MathJax-Element-269-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3786", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3787", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3788", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3789", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3790", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3791", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3792", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3793", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3794", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3795", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3796", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3797", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3798", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3799", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3800", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3801", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3802", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3803", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3804", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3805", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3806", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3807", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3808", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3809", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3810", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3811", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3812", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3813", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3814", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3815", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3816", - "https://www.w3.org/TR/webaudio/#MathJax-Element-269", - "https://www.w3.org/TR/webaudio/#MathJax-Element-270-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3817", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3818", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3819", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3820", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3821", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3822", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3823", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3824", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3825", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3826", - "https://www.w3.org/TR/webaudio/#MathJax-Element-270", - "https://www.w3.org/TR/webaudio/#MathJax-Element-271-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3827", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3828", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3829", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3830", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3831", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3832", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3833", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3834", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3835", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3836", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3837", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3838", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3839", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3840", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3841", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3842", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3843", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3844", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3845", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3846", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3847", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3848", - "https://www.w3.org/TR/webaudio/#MathJax-Element-271", - "https://www.w3.org/TR/webaudio/#oscillator-coefficients", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#MathJax-Element-272-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3849", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3850", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3851", - "https://www.w3.org/TR/webaudio/#MathJax-Element-272", - "https://www.w3.org/TR/webaudio/#MathJax-Element-273-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3852", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3853", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3854", - "https://www.w3.org/TR/webaudio/#MathJax-Element-273", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createperiodicwave%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-274-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3855", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3856", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3857", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3858", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3859", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3860", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3861", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3862", - "https://www.w3.org/TR/webaudio/#MathJax-Element-274", - "https://www.w3.org/TR/webaudio/#MathJax-Element-275-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3863", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3864", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3865", - "https://www.w3.org/TR/webaudio/#MathJax-Element-275", - "https://www.w3.org/TR/webaudio/#MathJax-Element-276-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3866", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3867", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3868", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3869", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3870", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3871", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3872", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3873", - "https://www.w3.org/TR/webaudio/#MathJax-Element-276", - "https://www.w3.org/TR/webaudio/#MathJax-Element-277-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3874", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3875", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3876", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3877", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3878", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3879", - "https://www.w3.org/TR/webaudio/#MathJax-Element-277", - "https://www.w3.org/TR/webaudio/#MathJax-Element-278-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3880", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3881", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3882", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3883", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3884", - "https://www.w3.org/TR/webaudio/#MathJax-Element-278", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-sine%E2%91%A4", - "https://www.w3.org/TR/webaudio/#MathJax-Element-279-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3885", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3886", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3887", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3888", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3889", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3890", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3891", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3892", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3893", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3894", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3895", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3896", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3897", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3906", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3907", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3908", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3898", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3899", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3900", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3901", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3902", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3903", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3904", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3905", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3909", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3910", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3911", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3912", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3913", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3914", - "https://www.w3.org/TR/webaudio/#MathJax-Element-279", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-square%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-280-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3915", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3916", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3917", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3918", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3919", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3920", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3921", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3922", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3923", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3924", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3925", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3926", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3927", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3928", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3929", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3930", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3931", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3932", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3933", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3934", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3935", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3936", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3937", - "https://www.w3.org/TR/webaudio/#MathJax-Element-280", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-sawtooth%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-281-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3938", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3939", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3940", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3941", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3942", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3943", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3944", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3945", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3946", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3947", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3948", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3949", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3950", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3951", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3952", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3953", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3954", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3955", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3956", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3957", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3958", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3959", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3960", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3961", - "https://www.w3.org/TR/webaudio/#MathJax-Element-281", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-triangle%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-282-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3962", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3963", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3964", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3965", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3966", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3967", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3968", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3969", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3970", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3971", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3972", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3973", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3974", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3975", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3976", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3977", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3978", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3979", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3980", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3981", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3982", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3983", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3984", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3985", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3986", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3987", - "https://www.w3.org/TR/webaudio/#MathJax-Element-282", - "https://www.w3.org/TR/webaudio/#ScriptProcessorNode", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A5%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelcount-constraints%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-explicit%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelcountmode-constraints%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-buffersize%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-scriptprocessornode-audioprocess%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-scriptprocessornode-audioprocess%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-scriptprocessornode-buffersize%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-eventhandler%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-scriptprocessornode-onaudioprocess", - "https://www.w3.org/TR/webaudio/#ref-for-idl-long", - "https://www.w3.org/TR/webaudio/#ref-for-dom-scriptprocessornode-buffersize%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ScriptProcessorNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-scriptprocessornode-buffersize", - "https://www.w3.org/TR/webaudio/#ref-for-idl-long%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-scriptprocessornode-audioprocess%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-scriptprocessornode-onaudioprocess", - "https://www.w3.org/TR/webaudio/#ref-for-eventhandler%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-event-handlers%E2%91%A3", - "https://www.w3.org/TR/webaudio/#eventdef-scriptprocessornode-audioprocess", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioProcessingEvent%E2%91%A3", - "https://www.w3.org/TR/webaudio/#stereopannernode", - "https://www.w3.org/TR/webaudio/#ref-for-stereopannernode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-stereopannernode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelcount-constraints%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-clamped-max%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelcountmode-constraints%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-stereopannernode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-stereopannernode-stereopannernode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A8%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-stereopannernode-stereopannernode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-StereoPannerOptions", - "https://www.w3.org/TR/webaudio/#dom-stereopannernode-stereopannernode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-stereopannernode-pan", - "https://www.w3.org/TR/webaudio/#StereoPannerNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-stereopannernode-stereopannernode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A8%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-stereopannernode-stereopannernode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-stereopannernode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A8%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A8%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-stereopannernode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-stereopannernode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-StereoPannerOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-stereopannernode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#StereoPannerNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-stereopannernode-pan", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#StereoPannerOptions", - "https://www.w3.org/TR/webaudio/#ref-for-StereoPannerOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-StereoPannerOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-stereopannernode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-StereoPannerOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-stereopanneroptions-pan", - "https://www.w3.org/TR/webaudio/#dictionary-stereopanneroptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-StereoPannerOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-stereopanneroptions-pan", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-stereopannernode-pan%E2%91%A0", - "https://www.w3.org/TR/webaudio/#StereoPanner-channel-limitations", - "https://www.w3.org/TR/webaudio/#ref-for-stereopannernode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-GainNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#WaveShaperNode", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A6%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshapernode-oversample", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oversampletype-2x", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oversampletype-4x", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#enumdef-oversampletype", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oversampletype-none", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oversampletype-2x%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oversampletype-4x%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-oversampletype", - "https://www.w3.org/TR/webaudio/#dom-oversampletype-none", - "https://www.w3.org/TR/webaudio/#dom-oversampletype-2x", - "https://www.w3.org/TR/webaudio/#dom-oversampletype-4x", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshapernode-waveshapernode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A8%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-waveshapernode-waveshapernode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperOptions", - "https://www.w3.org/TR/webaudio/#dom-waveshapernode-waveshapernode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshapernode-curve", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-oversampletype%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshapernode-oversample%E2%91%A0", - "https://www.w3.org/TR/webaudio/#WaveShaperNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-waveshapernode-waveshapernode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%93%AA%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-waveshapernode-curve-set-slot", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshapernode-waveshapernode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshaperoptions-curve", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshapernode-curve-set-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshapernode-waveshapernode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-waveshapernode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%93%AA%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%93%AA%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-waveshapernode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#WaveShaperNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-waveshapernode-curve", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshapernode-curve%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshapernode-curve%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-283-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3988", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3989", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3990", - "https://www.w3.org/TR/webaudio/#MathJax-Element-283", - "https://www.w3.org/TR/webaudio/#MathJax-Element-284-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3991", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3992", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3993", - "https://www.w3.org/TR/webaudio/#MathJax-Element-284", - "https://www.w3.org/TR/webaudio/#MathJax-Element-285-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3994", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3995", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3996", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3997", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3998", - "https://www.w3.org/TR/webaudio/#MathJax-Element-285", - "https://www.w3.org/TR/webaudio/#MathJax-Element-286-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3999", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4000", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4001", - "https://www.w3.org/TR/webaudio/#MathJax-Element-286", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshapernode-curve%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-287-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4002", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4003", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4004", - "https://www.w3.org/TR/webaudio/#MathJax-Element-287", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshapernode-curve%E2%91%A3", - "https://www.w3.org/TR/webaudio/#MathJax-Element-288-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4005", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4006", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4007", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4008", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4009", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4010", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4026", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4027", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4028", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4036", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4037", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4038", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4011", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4012", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4013", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4014", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4015", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4016", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4017", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4018", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4019", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4020", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4021", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4022", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4023", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4024", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4025", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4029", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4030", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4031", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4032", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4033", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4034", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4035", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4039", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4040", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4041", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4042", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4043", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4044", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4045", - "https://www.w3.org/TR/webaudio/#MathJax-Element-288", - "https://www.w3.org/TR/webaudio/#MathJax-Element-289-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4046", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4047", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4048", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4049", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4050", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4051", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4052", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4053", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4054", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4055", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4056", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4057", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4058", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4059", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4060", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4061", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4062", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4063", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4069", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4070", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4071", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4072", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4073", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4074", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4075", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4076", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4077", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4085", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4086", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4087", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4088", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4089", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4090", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4091", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4092", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4093", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4094", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4095", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4096", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4097", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4098", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4099", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4100", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4101", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4102", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4103", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4104", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4064", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4065", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4066", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4067", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4068", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4078", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4079", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4080", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4081", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4082", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4083", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4084", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4105", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4106", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4107", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4108", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4109", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4110", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4111", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4112", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4113", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4114", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4115", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4116", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4117", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4118", - "https://www.w3.org/TR/webaudio/#MathJax-Element-289", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshapernode-curve%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshapernode-curve%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshapernode-curve-set-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshapernode-curve-set-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshapernode-curve%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-waveshapernode-oversample", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-oversampletype%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oversampletype-none%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oversampletype-2x%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oversampletype-4x%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oversampletype-4x%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oversampletype-2x%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oversampletype-4x%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#WaveShaperOptions", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-idl-sequence%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshaperoptions-curve%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-oversampletype%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshaperoptions-oversample", - "https://www.w3.org/TR/webaudio/#dictionary-waveshaperoptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-waveshaperoptions-curve", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-waveshaperoptions-oversample", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-oversampletype%E2%91%A3", - "https://www.w3.org/TR/webaudio/#AudioWorklet", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-SecureContext%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-worklet", - "https://www.w3.org/TR/webaudio/#ref-for-messageport%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworklet-port%E2%91%A1", - "https://www.w3.org/TR/webaudio/#AudioWorklet-attributes", - "https://www.w3.org/TR/webaudio/#dom-audioworklet-port", - "https://www.w3.org/TR/webaudio/#ref-for-messageport%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-messageport%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworklet-port%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-event-close", - "https://www.w3.org/TR/webaudio/#ref-for-messagechannel%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A3", - "https://www.w3.org/TR/webaudio/#AudioWorklet-concepts", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A6%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%93%AA%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-worklet-global-scope-type", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-worklet-destination-type", - "https://www.w3.org/TR/webaudio/#ref-for-dom-worklet-addmodule", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#node-name-to-parameter-descriptor-map", - "https://www.w3.org/TR/webaudio/#ref-for-node-name-to-processor-constructor-map", - "https://www.w3.org/TR/webaudio/#ref-for-parameterdescriptors", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletglobalscope-registerprocessor", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-worklet-addmodule%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-audioworklet%E2%91%A2", - "https://www.w3.org/TR/webaudio/#example-d0db141d", - "https://www.w3.org/TR/webaudio/#example-885ab32a", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A7", - "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-terminate-a-worklet-global-scope", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#node-name-to-processor-constructor-map", - "https://www.w3.org/TR/webaudio/#ref-for-callbackdef-audioworkletprocessorconstructor", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletglobalscope-registerprocessor%E2%91%A0", - "https://www.w3.org/TR/webaudio/#pending-processor-construction-data", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-pending-processor-construction-data", - "https://www.w3.org/TR/webaudio/#pending-processor-construction-data-node-reference", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#pending-processor-construction-data-transferred-port", - "https://www.w3.org/TR/webaudio/#ref-for-messageport%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%93%AA%E2%91%A3", - "https://www.w3.org/TR/webaudio/#callbackdef-audioworkletprocessorconstructor", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-idl-object", - "https://www.w3.org/TR/webaudio/#dom-audioworkletprocessorconstructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-Global", - "https://www.w3.org/TR/webaudio/#ref-for-worklet%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-workletglobalscope", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletglobalscope-registerprocessor%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletglobalscope-registerprocessor-name-processorctor-name", - "https://www.w3.org/TR/webaudio/#ref-for-callbackdef-audioworkletprocessorconstructor%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletglobalscope-registerprocessor-name-processorctor-processorctor", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long-long", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletglobalscope-currentframe", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletglobalscope-currenttime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletglobalscope-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A7%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletglobalscope-renderquantumsize", - "https://www.w3.org/TR/webaudio/#ref-for-messageport%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletglobalscope-port%E2%91%A0", - "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope-attributes", - "https://www.w3.org/TR/webaudio/#dom-audioworkletglobalscope-currentframe", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long-long%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-current-frame-slot", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%93%AA%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audioworkletglobalscope-currenttime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%93%AA%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-control-thread%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audioworkletglobalscope-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%93%AA%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-audioworkletglobalscope-renderquantumsize", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%93%AA%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-audioworkletglobalscope-port", - "https://www.w3.org/TR/webaudio/#ref-for-messageport%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-messageport%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletglobalscope-port%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-event-close%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-messagechannel%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope-methods", - "https://www.w3.org/TR/webaudio/#dom-audioworkletglobalscope-registerprocessor", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletglobalscope-registerprocessor%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-node-name-to-processor-constructor-map%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-typeerror", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-typeerror%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webaudio/#steps-parameterDescriptorSequence", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparamdescriptor-name", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparamdescriptor-defaultvalue", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparamdescriptor-minvalue", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparamdescriptor-maxvalue", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-node-name-to-processor-constructor-map%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#6d54a0c516", - "https://www.w3.org/TR/webaudio/#ref-for-node-name-to-parameter-descriptor-map", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%93%AA%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletglobalscope-registerprocessor%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audioworkletglobalscope-registerprocessor-name-processorctor-name", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-audioworkletglobalscope-registerprocessor-name-processorctor-processorctor", - "https://www.w3.org/TR/webaudio/#ref-for-callbackdef-audioworkletprocessorconstructor%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor-instantiation", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-struct", - "https://www.w3.org/TR/webaudio/#processor-construction-data", - "https://www.w3.org/TR/webaudio/#ref-for-struct%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-struct-item", - "https://www.w3.org/TR/webaudio/#processor-construction-data-name", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-node-name-to-processor-constructor-map%E2%91%A2", - "https://www.w3.org/TR/webaudio/#processor-construction-data-node", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#processor-construction-data-options", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNodeOptions", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnode-audioworkletnode", - "https://www.w3.org/TR/webaudio/#processor-construction-data-port", - "https://www.w3.org/TR/webaudio/#ref-for-messageport%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnode-port", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#invoking-processor-constructor", - "https://www.w3.org/TR/webaudio/#ref-for-processor-construction-data", - "https://www.w3.org/TR/webaudio/#ref-for-control-thread%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-processor-construction-data-name", - "https://www.w3.org/TR/webaudio/#ref-for-processor-construction-data-node", - "https://www.w3.org/TR/webaudio/#ref-for-processor-construction-data-port", - "https://www.w3.org/TR/webaudio/#ref-for-processor-construction-data-options", - "https://www.w3.org/TR/webaudio/#ref-for-structureddeserialize%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-structureddeserialize%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-node-name-to-processor-constructor-map%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-pending-processor-construction-data-node-reference", - "https://www.w3.org/TR/webaudio/#ref-for-pending-processor-construction-data-transferred-port", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-pending-processor-construction-data%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-construct-a-callback-function", - "https://www.w3.org/TR/webaudio/#ref-for-queue-a-task", - "https://www.w3.org/TR/webaudio/#ref-for-control-thread%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-audioworkletnode-processorerror", - "https://www.w3.org/TR/webaudio/#ref-for-errorevent", - "https://www.w3.org/TR/webaudio/#ref-for-pending-processor-construction-data%E2%91%A1", - "https://www.w3.org/TR/webaudio/#AudioWorkletNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A6%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-control-thread%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A6%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#active-source", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#audioparammap", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-SecureContext%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnode-audioworkletnode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-audioworkletnode-context-name-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-audioworkletnode-context-name-options-name", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNodeOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-audioworkletnode-context-name-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-audioparammap", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnode-parameters", - "https://www.w3.org/TR/webaudio/#ref-for-messageport%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnode-port%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-eventhandler%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnode-onprocessorerror", - "https://www.w3.org/TR/webaudio/#AudioWorkletNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-audioworkletnode", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnode-audioworkletnode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-constructor-name", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-node-name-to-parameter-descriptor-map%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNodeOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnode-audioworkletnode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-node-name-to-parameter-descriptor-map%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-this%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-messagechannel%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-messagechannel-port1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-messagechannel-port2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-structuredserializewithtransfer%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-structuredserialize", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnode-port%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-node-name-to-parameter-descriptor-map%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-audioparammap%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparamdescriptor-name%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparamdescriptor-automationrate", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparamdescriptor-defaultvalue%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparamdescriptor-minvalue%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparamdescriptor-maxvalue%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-parameterdata", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-parameterdata%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnode-parameters%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-queuing%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocessor-audioworkletprocessor", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-processor-construction-data%E2%91%A0", - "https://www.w3.org/TR/webaudio/#AudioWorkletNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-onprocessorerror", - "https://www.w3.org/TR/webaudio/#ref-for-eventhandler%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-queue-a-media-element-task%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#eventdef-audioworkletnode-processorerror", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-errorevent%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-parameters", - "https://www.w3.org/TR/webaudio/#ref-for-audioparammap%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParamDescriptor", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-port", - "https://www.w3.org/TR/webaudio/#ref-for-messageport%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-messageport%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnode-port%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-event-close%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-messagechannel%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#AudioWorkletNodeOptions", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNodeOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNodeOptions%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNodeOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNodeOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A7%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-numberofinputs", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A7%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-numberofoutputs", - "https://www.w3.org/TR/webaudio/#ref-for-idl-sequence%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A7%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-outputchannelcount", - "https://www.w3.org/TR/webaudio/#ref-for-idl-record", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-parameterdata%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-object%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-processoroptions", - "https://www.w3.org/TR/webaudio/#dictionary-audioworkletnodeoptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNodeOptions%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audioworkletnodeoptions-numberofinputs", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A7%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A6%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audioworkletnodeoptions-numberofoutputs", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A7%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audioworkletnodeoptions-outputchannelcount", - "https://www.w3.org/TR/webaudio/#dom-audioworkletnodeoptions-parameterdata", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audioworkletnodeoptions-processoroptions", - "https://www.w3.org/TR/webaudio/#ref-for-idl-object%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#configuring-channels-with-audioworkletnodeoptions", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNodeOptions%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNodeOptions%E2%91%A7", - "https://www.w3.org/TR/webaudio/#configure-with-audioworkletnodeoptions", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-numberofinputs%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-numberofoutputs%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-outputchannelcount%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-map-exists%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-outputchannelcount%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-outputchannelcount%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-numberofoutputs%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-numberofinputs%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-numberofoutputs%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-outputchannelcount%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-outputchannelcount%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-outputchannelcount%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-map-exists%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-numberofinputs%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-numberofoutputs%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-computednumberofchannels%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocessor-audioworkletprocessor%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-messageport%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocessor-port", - "https://www.w3.org/TR/webaudio/#ref-for-audioworkletprocess-callback-parameters", - "https://www.w3.org/TR/webaudio/#ref-for-idl-boolean%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-idl-frozen-array", - "https://www.w3.org/TR/webaudio/#ref-for-idl-frozen-array%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audioworkletprocesscallback-inputs", - "https://www.w3.org/TR/webaudio/#ref-for-idl-frozen-array%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-frozen-array%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audioworkletprocesscallback-outputs", - "https://www.w3.org/TR/webaudio/#ref-for-idl-object%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audioworkletprocesscallback-parameters", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audioworkletprocessor-node-reference-slot", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-audioworkletprocessor-callable-process-slot", - "https://www.w3.org/TR/webaudio/#ref-for-process", - "https://www.w3.org/TR/webaudio/#AudioWorketProcessor-constructors", - "https://www.w3.org/TR/webaudio/#dom-audioworkletprocessor-audioworkletprocessor", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-pending-processor-construction-data-node-reference%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-pending-processor-construction-data%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-typeerror%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-this%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocessor-node-reference-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocessor-callable-process-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-pending-processor-construction-data-transferred-port%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-pending-processor-construction-data%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocessor-port%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-pending-processor-construction-data%E2%91%A4", - "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor-attributes", - "https://www.w3.org/TR/webaudio/#dom-audioworkletprocessor-port", - "https://www.w3.org/TR/webaudio/#ref-for-messageport%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-messageport%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocessor-port%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-event-close%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-messagechannel%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webaudio/#callback-audioworketprocess-callback", - "https://www.w3.org/TR/webaudio/#ref-for-audioworkletprocess-callback-parameters%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-audioworkletprocess-callback-parameters%E2%91%A1", - "https://www.w3.org/TR/webaudio/#process", - "https://www.w3.org/TR/webaudio/#parameterdescriptors", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParamDescriptor%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-process%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-process%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-process%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletglobalscope-currenttime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-process%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-process%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#example-1d246ea2", - "https://www.w3.org/TR/webaudio/#audioworkletprocess-callback-parameters", - "https://www.w3.org/TR/webaudio/#ref-for-audioworkletprocess-callback-parameters%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-audioworkletprocess-callback-parameters%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-audioworkletprocess-callback-parameters%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocesscallback-inputs", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocesscallback-outputs", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocesscallback-inputs%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocesscallback-outputs%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocesscallback-inputs%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-frozen-array%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-idl-frozen-array%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#MathJax-Element-290-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4119", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4120", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4121", - "https://www.w3.org/TR/webaudio/#MathJax-Element-290", - "https://www.w3.org/TR/webaudio/#MathJax-Element-291-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4122", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4123", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4124", - "https://www.w3.org/TR/webaudio/#MathJax-Element-291", - "https://www.w3.org/TR/webaudio/#ref-for-computednumberofchannels%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A7%E2%93%AA", - "https://www.w3.org/TR/webaudio/#MathJax-Element-292-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4125", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4126", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4127", - "https://www.w3.org/TR/webaudio/#MathJax-Element-292", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocesscallback-outputs%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-frozen-array%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-idl-frozen-array%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#MathJax-Element-293-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4128", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4129", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4130", - "https://www.w3.org/TR/webaudio/#MathJax-Element-293", - "https://www.w3.org/TR/webaudio/#MathJax-Element-294-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4131", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4132", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4133", - "https://www.w3.org/TR/webaudio/#MathJax-Element-294", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-computednumberofchannels%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocesscallback-parameters", - "https://www.w3.org/TR/webaudio/#ref-for-idl-object%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-ordered-map", - "https://www.w3.org/TR/webaudio/#ref-for-idl-frozen-array%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-computedvalue%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-ordered-map%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-ordered-map%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocesscallback-parameters%E2%91%A0", - "https://www.w3.org/TR/webaudio/#AudioParamDescriptor", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParamDescriptor%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParamDescriptor%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParamDescriptor%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParamDescriptor%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparamdescriptor-name%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparamdescriptor-defaultvalue%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparamdescriptor-minvalue%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparamdescriptor-maxvalue%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-automationrate%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparamdescriptor-automationrate%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dictionary-audioparamdescriptor-members", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParamDescriptor%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audioparamdescriptor-automationrate", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-automationrate%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audioparamdescriptor-defaultvalue", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-audioparamdescriptor-maxvalue", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-audioparamdescriptor-minvalue", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-audioparamdescriptor-name", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#AudioWorklet-Sequence", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-worklet-addmodule%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webaudio/#AudioWorklet-Examples", - "https://www.w3.org/TR/webaudio/#the-bitcrusher-node", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-a-rate%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#example-06f3f4b7", - "https://www.w3.org/TR/webaudio/#example-d7261c66", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#vu-meter-mode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#example-d5157576", - "https://www.w3.org/TR/webaudio/#example-55c4a817", - "https://www.w3.org/TR/webaudio/#example-2d1abf00", - "https://www.w3.org/TR/webaudio/#processing-model", - "https://www.w3.org/TR/webaudio/#processing-model-background", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A7%E2%91%A1", - "https://www.w3.org/TR/webaudio/#control-thread-and-rendering-thread", - "https://www.w3.org/TR/webaudio/#ref-for-control-thread%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#control-thread", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#rendering-thread", - "https://www.w3.org/TR/webaudio/#ref-for-control-thread%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-control-thread%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-control-thread%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webaudio/#control-message-queue", - "https://www.w3.org/TR/webaudio/#control-message", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#queuing", - "https://www.w3.org/TR/webaudio/#ref-for-control-message-queue", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-control-message-queue%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-control-message-queue%E2%91%A0", - "https://www.w3.org/TR/webaudio/#oldest-message", - "https://www.w3.org/TR/webaudio/#ref-for-control-message-queue%E2%91%A1", - "https://www.w3.org/TR/webaudio/#swap", - "https://www.w3.org/TR/webaudio/#ref-for-control-message-queue%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-control-message-queue%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-control-message-queue%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#asynchronous-operations", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A7%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-control-thread%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A7%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-control-thread%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-control-message-queue%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#rendering-loop", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#render-quantum-size", - "https://www.w3.org/TR/webaudio/#render-quantum", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextoptions-rendersizehint%E2%91%A0", - "https://www.w3.org/TR/webaudio/#atomically", - "https://www.w3.org/TR/webaudio/#ref-for-atomically%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-control-message-queue%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#system-level-audio-callback", - "https://www.w3.org/TR/webaudio/#system-level-audio-callback-buffer-size", - "https://www.w3.org/TR/webaudio/#ref-for-system-level-audio-callback%E2%91%A5", - "https://www.w3.org/TR/webaudio/#load-value", - "https://www.w3.org/TR/webaudio/#ref-for-system-level-audio-callback%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-system-level-audio-callback-buffer-size", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-load-value%E2%91%A2", - "https://www.w3.org/TR/webaudio/#audio-buffer-underrun", - "https://www.w3.org/TR/webaudio/#ref-for-load-value%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum-size%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-system-level-audio-callback-buffer-size%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-audio-buffer-underrun", - "https://www.w3.org/TR/webaudio/#ref-for-system-level-audio-callback%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-load-value%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-control-message-queue%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-control-message-queue%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webaudio/#baseaudiocontext-associated-task-queue", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-baseaudiocontext-associated-task-queue", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#rendering-initialization", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-current-frame-slot", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webaudio/#rendering-a-graph", - "https://www.w3.org/TR/webaudio/#ref-for-control-message-queue%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-control-message-queue%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-atomically%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-swap", - "https://www.w3.org/TR/webaudio/#ref-for-control-message-queue%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-oldest-message", - "https://www.w3.org/TR/webaudio/#ref-for-oldest-message%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-baseaudiocontext-associated-task-queue%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-baseaudiocontext-associated-task-queue%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A7%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A7%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A7%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A7%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-delaywriter%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-delayreader%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-mute", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A7%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-visit", - "https://www.w3.org/TR/webaudio/#visit", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A8%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-visit%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A8%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A5%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A8%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-visit%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A8%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A8%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A6%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A8%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-available-for-reading", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A8%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/webaudio/#input-audioparam-buffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-queuing%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-current-value-slot%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A8%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A8%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-available-for-reading%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A8%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%93%AA%E2%93%AA", - "https://www.w3.org/TR/webaudio/#input-buffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%93%AA%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%93%AA%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-source-node%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-computing-a-block-of-audio", - "https://www.w3.org/TR/webaudio/#ref-for-available-for-reading%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%93%AA%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-prepare-to-run-script", - "https://www.w3.org/TR/webaudio/#ref-for-current-settings-object%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-prepare-to-run-a-callback", - "https://www.w3.org/TR/webaudio/#ref-for-current-settings-object%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocessor-callable-process-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocesscallback-inputs%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocesscallback-outputs%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocesscallback-parameters%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-computing-a-block-of-audio%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocesscallback-outputs%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-available-for-reading%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-active-source%E2%91%A0", - "https://www.w3.org/TR/webaudio/#audio-worklet-render-return", - "https://www.w3.org/TR/webaudio/#ref-for-clean-up-after-running-a-callback", - "https://www.w3.org/TR/webaudio/#ref-for-current-settings-object%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-clean-up-after-running-script", - "https://www.w3.org/TR/webaudio/#ref-for-current-settings-object%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocessor-callable-process-slot%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-active-source%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-available-for-reading%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-queue-a-task%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-control-thread%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-audioworkletnode-processorerror%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-errorevent%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%93%AA%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-destination-node", - "https://www.w3.org/TR/webaudio/#ref-for-recording-the-input", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%93%AA%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-processing-an-input-buffer", - "https://www.w3.org/TR/webaudio/#ref-for-input-buffer", - "https://www.w3.org/TR/webaudio/#ref-for-available-for-reading%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-atomically%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-current-frame-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum-size%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-current-frame-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-perform-a-microtask-checkpoint", - "https://www.w3.org/TR/webaudio/#mute", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%93%AA%E2%91%A5", - "https://www.w3.org/TR/webaudio/#available-for-reading", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%93%AA%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%93%AA%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%93%AA%E2%91%A8", - "https://www.w3.org/TR/webaudio/#recording-the-input", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#computing-a-block-of-audio", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-render-quantum-size-slot%E2%91%A3", - "https://www.w3.org/TR/webaudio/#processing-an-input-buffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-input-buffer%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A6%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#error-handling-on-a-running-audio-context", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-releasing%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-queue-a-media-element-task%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-audiocontext-error%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-suspended-by-user-slot%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-state%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-suspended%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-baseaudiocontext-statechange%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-queue-a-media-element-task%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-audiocontext-error%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webaudio/#unloading-a-document", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-pending-promises-slot%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-decoding-thread%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-queuing%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-close%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#DynamicLifetime", - "https://www.w3.org/TR/webaudio/#dynamic-lifetime-background", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dynamic-lifetime-example", - "https://www.w3.org/TR/webaudio/#example-9dbf5ad3", - "https://www.w3.org/TR/webaudio/#channel-up-mixing-and-down-mixing", - "https://www.w3.org/TR/webaudio/#mixing-rules", - "https://www.w3.org/TR/webaudio/#ref-for-mixing-rules", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#up-mixing", - "https://www.w3.org/TR/webaudio/#down-mixing", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-computednumberofchannels%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-computednumberofchannels%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-up-mixing", - "https://www.w3.org/TR/webaudio/#ref-for-down-mixing", - "https://www.w3.org/TR/webaudio/#ref-for-computednumberofchannels%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-channelinterpretation%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-up-mixing%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-down-mixing%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ChannelLayouts", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-up-mixing%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-down-mixing%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ChannelOrdering", - "https://www.w3.org/TR/webaudio/#channels-tail-time", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#UpMix-sub", - "https://www.w3.org/TR/webaudio/#down-mix", - "https://www.w3.org/TR/webaudio/#ChannelRules-section", - "https://www.w3.org/TR/webaudio/#example-c5d47e05", - "https://www.w3.org/TR/webaudio/#audio-signal-values", - "https://www.w3.org/TR/webaudio/#audio-sample-format", - "https://www.w3.org/TR/webaudio/#linear-pcm", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#audio-values-rendering", - "https://www.w3.org/TR/webaudio/#Spatialization", - "https://www.w3.org/TR/webaudio/#Spatialization-background", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-audiolistener-forward%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-audiolistener-up%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#azimuth-elevation", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A6%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-k-rate%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#Spatialization-panning-algorithm", - "https://www.w3.org/TR/webaudio/#Spatialization-equal-power-panning", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-panningmodel%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panningmodeltype-equalpower%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A6%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-a-rate%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#Spatialization-hrtf-panning", - "https://www.w3.org/TR/webaudio/#stereopanner-algorithm", - "https://www.w3.org/TR/webaudio/#ref-for-stereopannernode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-computedvalue%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A6%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-stereopannernode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#Spatialization-distance-effects", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-distancemodel%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-distancemodel%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-distancemodeltype%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#Spatialization-sound-cones", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-coneinnerangle%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-coneouterangle%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#Performance", - "https://www.w3.org/TR/webaudio/#latency", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioProcessingEvent%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioDestinationNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#audio-buffer-copying", - "https://www.w3.org/TR/webaudio/#ref-for-acquire-the-content%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A6%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-getchanneldata%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-acquire-the-content%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-getchanneldata%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A6%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-getchanneldata%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A6%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-idl-ArrayBuffer%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-acquire-the-content%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A6%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/webaudio/#audioparam-transitions", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-settargetattime%E2%91%A3", - "https://www.w3.org/TR/webaudio/#audio-glitching", - "https://www.w3.org/TR/webaudio/#priv-sec", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediadevices-getusermedia%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-getoutputtimestamp%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-baselatency%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-outputlatency%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediadevices", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiodestinationnode-maxchannelcount%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediadevices-getusermedia%E2%91%A2", - "https://www.w3.org/TR/webaudio/#requirements", - "https://www.w3.org/TR/webaudio/#common-definitions", - "https://www.w3.org/TR/webaudio/#changes", - "https://www.w3.org/TR/webaudio/#acks", - "https://www.w3.org/TR/webaudio/#w3c-conformance", - "https://www.w3.org/TR/webaudio/#w3c-conventions", - "https://www.w3.org/TR/webaudio/#w3c-example", - "https://www.w3.org/TR/webaudio/#w3c-conformant-algorithms", - "https://www.w3.org/TR/webaudio/#index", - "https://www.w3.org/TR/webaudio/#index-defined-here", - "https://www.w3.org/TR/webaudio/#index-defined-elsewhere", - "https://www.w3.org/TR/webaudio/#321b1ad4", - "https://www.w3.org/TR/webaudio/#129bdae8", - "https://www.w3.org/TR/webaudio/#44a7708c", - "https://www.w3.org/TR/webaudio/#2bc0cdf4", - "https://www.w3.org/TR/webaudio/#5fd23811", - "https://www.w3.org/TR/webaudio/#acb50c28", - "https://www.w3.org/TR/webaudio/#2a9f2069", - "https://www.w3.org/TR/webaudio/#ccfe986b", - "https://www.w3.org/TR/webaudio/#f0951476", - "https://www.w3.org/TR/webaudio/#1076ec40", - "https://www.w3.org/TR/webaudio/#02fb8691", - "https://www.w3.org/TR/webaudio/#df16744f", - "https://www.w3.org/TR/webaudio/#0800bdf4", - "https://www.w3.org/TR/webaudio/#89786baf", - "https://www.w3.org/TR/webaudio/#9da834a1", - "https://www.w3.org/TR/webaudio/#2879c404", - "https://www.w3.org/TR/webaudio/#0c9b0d3c", - "https://www.w3.org/TR/webaudio/#eec46e27", - "https://www.w3.org/TR/webaudio/#3349d69f", - "https://www.w3.org/TR/webaudio/#2c82d279", - "https://www.w3.org/TR/webaudio/#d5ac3b38", - "https://www.w3.org/TR/webaudio/#b6a1ae3f", - "https://www.w3.org/TR/webaudio/#dff7b498", - "https://www.w3.org/TR/webaudio/#12b8dfc0", - "https://www.w3.org/TR/webaudio/#6a5a59a0", - "https://www.w3.org/TR/webaudio/#0e3ba9f8", - "https://www.w3.org/TR/webaudio/#8603b31a", - "https://www.w3.org/TR/webaudio/#6aa169c3", - "https://www.w3.org/TR/webaudio/#7a048f5b", - "https://www.w3.org/TR/webaudio/#b5c3b552", - "https://www.w3.org/TR/webaudio/#c2359c09", - "https://www.w3.org/TR/webaudio/#8abbe523", - "https://www.w3.org/TR/webaudio/#9a517a7d", - "https://www.w3.org/TR/webaudio/#e99bd18e", - "https://www.w3.org/TR/webaudio/#ca96a59c", - "https://www.w3.org/TR/webaudio/#d2f99df9", - "https://www.w3.org/TR/webaudio/#aa7bbf63", - "https://www.w3.org/TR/webaudio/#93252241", - "https://www.w3.org/TR/webaudio/#3b8ce5a6", - "https://www.w3.org/TR/webaudio/#59912c93", - "https://www.w3.org/TR/webaudio/#1243a891", - "https://www.w3.org/TR/webaudio/#c88f3887", - "https://www.w3.org/TR/webaudio/#84b454ff", - "https://www.w3.org/TR/webaudio/#984221ca", - "https://www.w3.org/TR/webaudio/#b2a4c232", - "https://www.w3.org/TR/webaudio/#5e59c46d", - "https://www.w3.org/TR/webaudio/#dda39259", - "https://www.w3.org/TR/webaudio/#bf1ce648", - "https://www.w3.org/TR/webaudio/#2f8afbfe", - "https://www.w3.org/TR/webaudio/#dca2de17", - "https://www.w3.org/TR/webaudio/#8855a9aa", - "https://www.w3.org/TR/webaudio/#d54f5897", - "https://www.w3.org/TR/webaudio/#9befea0b", - "https://www.w3.org/TR/webaudio/#889e932f", - "https://www.w3.org/TR/webaudio/#0a296dfe", - "https://www.w3.org/TR/webaudio/#dcf5fafa", - "https://www.w3.org/TR/webaudio/#7fb6fbc6", - "https://www.w3.org/TR/webaudio/#c9dac9f9", - "https://www.w3.org/TR/webaudio/#37afd48d", - "https://www.w3.org/TR/webaudio/#797018a7", - "https://www.w3.org/TR/webaudio/#ba556545", - "https://www.w3.org/TR/webaudio/#9eda9b58", - "https://www.w3.org/TR/webaudio/#3182eb71", - "https://www.w3.org/TR/webaudio/#bdbd19d1", - "https://www.w3.org/TR/webaudio/#ec878a66", - "https://www.w3.org/TR/webaudio/#a5c91173", - "https://www.w3.org/TR/webaudio/#b75bb3bd", - "https://www.w3.org/TR/webaudio/#82ca3efc", - "https://www.w3.org/TR/webaudio/#95d7775a", - "https://www.w3.org/TR/webaudio/#81dd847b", - "https://www.w3.org/TR/webaudio/#d0b4a948", - "https://www.w3.org/TR/webaudio/#5372cca8", - "https://www.w3.org/TR/webaudio/#495737df", - "https://www.w3.org/TR/webaudio/#6aefdf11", - "https://www.w3.org/TR/webaudio/#1fc2b625", - "https://www.w3.org/TR/webaudio/#1003edc0", - "https://www.w3.org/TR/webaudio/#e97b1447", - "https://www.w3.org/TR/webaudio/#8c800cdf", - "https://www.w3.org/TR/webaudio/#eec1be2d", - "https://www.w3.org/TR/webaudio/#92d13070", - "https://www.w3.org/TR/webaudio/#f8de33a3", - "https://www.w3.org/TR/webaudio/#efd1ec5d", - "https://www.w3.org/TR/webaudio/#7787d359", - "https://www.w3.org/TR/webaudio/#9cce47fd", - "https://www.w3.org/TR/webaudio/#4013a022", - "https://www.w3.org/TR/webaudio/#5f90bbfb", - "https://www.w3.org/TR/webaudio/#e97a9688", - "https://www.w3.org/TR/webaudio/#f14b47b8", - "https://www.w3.org/TR/webaudio/#f3fd9d04", - "https://www.w3.org/TR/webaudio/#references", - "https://www.w3.org/TR/webaudio/#normative", - "https://www.w3.org/TR/webaudio/#biblio-dom", - "https://www.w3.org/TR/webaudio/#biblio-ecmascript", - "https://www.w3.org/TR/webaudio/#biblio-fetch", - "https://www.w3.org/TR/webaudio/#biblio-hr-time-3", - "https://www.w3.org/TR/webaudio/#biblio-html", - "https://www.w3.org/TR/webaudio/#biblio-infra", - "https://www.w3.org/TR/webaudio/#biblio-mediacapture-streams", - "https://www.w3.org/TR/webaudio/#biblio-mimesniff", - "https://www.w3.org/TR/webaudio/#biblio-rfc2119", - "https://www.w3.org/TR/webaudio/#biblio-security-privacy-questionnaire", - "https://www.w3.org/TR/webaudio/#biblio-webidl", - "https://www.w3.org/TR/webaudio/#biblio-webrtc", - "https://www.w3.org/TR/webaudio/#informative", - "https://www.w3.org/TR/webaudio/#biblio-2dcontext", - "https://www.w3.org/TR/webaudio/#biblio-mediastream-recording", - "https://www.w3.org/TR/webaudio/#biblio-webaudio-usecases", - "https://www.w3.org/TR/webaudio/#biblio-webcodecs", - "https://www.w3.org/TR/webaudio/#biblio-webgl", - "https://www.w3.org/TR/webaudio/#biblio-xhr", - "https://www.w3.org/TR/webaudio/#idl-index", - "https://www.w3.org/TR/webaudio/#mathjax", - "https://www.w3.org/TR/webaudio/#MathJax_Font_Test" + "https://www.w3.org/TR/webaudio-1.0/#MathJax_Hidden", + "https://www.w3.org/TR/webaudio-1.0/#MathJax_Message", + "https://www.w3.org/TR/webaudio-1.0/#toc-nav", + "https://www.w3.org/TR/webaudio-1.0/#toc-jump", + "https://www.w3.org/TR/webaudio-1.0/#toc-toggle", + "https://www.w3.org/TR/webaudio-1.0/#title", + "https://www.w3.org/TR/webaudio-1.0/#profile-and-date", + "https://www.w3.org/TR/webaudio-1.0/#abstract", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode", + "https://www.w3.org/TR/webaudio-1.0/#sotd", + "https://www.w3.org/TR/webaudio-1.0/#w3c_process_revision", + "https://www.w3.org/TR/webaudio-1.0/#toc", + "https://www.w3.org/TR/webaudio-1.0/#contents", + "https://www.w3.org/TR/webaudio-1.0/#introductory", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audio", + "https://www.w3.org/TR/webaudio-1.0/#Features", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-AudioParam", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audio%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-video", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediaelementaudiosourcenode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamtrackaudiosourcenode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediadevices-getusermedia", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamtrackaudiosourcenode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamaudiodestinationnode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-AudioWorklet", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-AnalyserNode", + "https://www.w3.org/TR/webaudio-1.0/#ModularRouting", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#inputs", + "https://www.w3.org/TR/webaudio-1.0/#outputs", + "https://www.w3.org/TR/webaudio-1.0/#source-node", + "https://www.w3.org/TR/webaudio-1.0/#destination-node", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiodestinationnode", + "https://www.w3.org/TR/webaudio-1.0/#example-05baec05", + "https://www.w3.org/TR/webaudio-1.0/#example-86265d42", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#example-6d1537ab", + "https://www.w3.org/TR/webaudio-1.0/#APIOverview", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-AudioContext", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-analysernode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffersourcenode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiodestinationnode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pannernode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworklet", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletglobalscope", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-biquadfilternode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelmergernode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelsplitternode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-constantsourcenode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-convolvernode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delaynode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dynamicscompressornode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-gainnode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-iirfilternode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediaelementaudiosourcenode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audio%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-video%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamaudiosourcenode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastream", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamtrackaudiosourcenode%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamtrack", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamaudiodestinationnode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastream%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pannernode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-periodicwave", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-oscillatornode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-oscillatornode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-stereopannernode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-waveshapernode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-scriptprocessornode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioprocessingevent", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-scriptprocessornode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#audioapi", + "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-BaseAudioContext", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiodestinationnode%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-pending-promises-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-rendering-thread-state-slot", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-control-thread-state-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-audiocontextstate", + "https://www.w3.org/TR/webaudio-1.0/#enumdef-audiocontextstate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontextstate-suspended", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontextstate-running", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontextstate-closed", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontextstate-suspended", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontextstate-running", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontextstate-closed", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-callback-decodeerrorcallback-parameters", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-DOMException", + "https://www.w3.org/TR/webaudio-1.0/#dom-decodeerrorcallback-error", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-callback-decodesuccesscallback-parameters", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-decodesuccesscallback-decodeddata", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed", + "https://www.w3.org/TR/webaudio-1.0/#baseaudiocontext", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-eventtarget", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiodestinationnode%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-destination", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-samplerate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-listener", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-audiocontextstate%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-state", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-SameObject", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-SecureContext", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworklet%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-audioworklet", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-eventhandler", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-onstatechange", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-analysernode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createanalyser", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-biquadfilternode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createbiquadfilter", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createbuffer", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createbuffer-numberofchannels-length-samplerate-numberofchannels", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createbuffer-numberofchannels-length-samplerate-length", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createbuffer-numberofchannels-length-samplerate-samplerate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffersourcenode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createbuffersource", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelmergernode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createchannelmerger", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createchannelmerger-numberofinputs-numberofinputs", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelsplitternode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createchannelsplitter", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createchannelsplitter-numberofoutputs-numberofoutputs", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-constantsourcenode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createconstantsource", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-convolvernode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createconvolver", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delaynode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createdelay", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createdelay-maxdelaytime-maxdelaytime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dynamicscompressornode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createdynamicscompressor", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-gainnode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-creategain", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-iirfilternode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createiirfilter", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-sequence", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createiirfilter-feedforward-feedback-feedforward", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-sequence%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createiirfilter-feedforward-feedback-feedback", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-oscillatornode%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createoscillator", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pannernode%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createpanner", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-periodicwave%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createperiodicwave", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-sequence%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createperiodicwave-real-imag-constraints-real", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-sequence%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createperiodicwave-real-imag-constraints-imag", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-periodicwaveconstraints", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createperiodicwave-real-imag-constraints-constraints", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-scriptprocessornode%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createscriptprocessor", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-buffersize", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-stereopannernode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createstereopanner", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-waveshapernode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createwaveshaper", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-promise", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-decodeaudiodata", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-ArrayBuffer", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-callback-decodesuccesscallback-parameters%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-successcallback", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-callback-decodeerrorcallback-parameters%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-errorcallback", + "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContext-attributes", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-audioworklet", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworklet%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworklet%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-currenttime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontextstate-running%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-render-quantum", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-atomically", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-destination", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiodestinationnode%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiodestinationnode%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-destination%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-listener", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-onstatechange", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-eventhandler%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-event", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-offlineaudiocontext-oncomplete", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-samplerate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#--nyquist-frequency", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-state", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-audiocontextstate%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-control-thread-state-slot", + "https://www.w3.org/TR/webaudio-1.0/#BaseAudioContent-methods", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createanalyser", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-factory-method", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-analysernode%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-analysernode%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createbiquadfilter", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-factory-method%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-biquadfilternode%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-biquadfilternode%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createbuffer", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createbuffer%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createbuffer-numberofchannels", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createbuffer-length", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createbuffer-samplerate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-linear-pcm", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createbuffersource", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-factory-method%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffersourcenode%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffersourcenode%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createchannelmerger", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-factory-method%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelmergernode%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-indexsizeerror", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createchannelmerger-numberofinputs-numberofinputs%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createchannelmerger%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createchannelmerger-numberofinputs-numberofinputs", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelmergernode%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createchannelsplitter", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-factory-method%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelsplitternode%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-indexsizeerror%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createchannelsplitter-numberofoutputs-numberofoutputs%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createchannelsplitter%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createchannelsplitter-numberofoutputs-numberofoutputs", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelsplitternode%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createconstantsource", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-factory-method%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-constantsourcenode%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-constantsourcenode%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createconvolver", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-factory-method%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-convolvernode%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-convolvernode%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createdelay", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-factory-method%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delaynode%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createdelay%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createdelay-maxdelaytime-maxdelaytime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delaynode%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createdynamicscompressor", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-factory-method%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dynamicscompressornode%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dynamicscompressornode%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-creategain", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-factory-method%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-gainnode%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-gainnode%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createiirfilter", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createiirfilter%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createiirfilter-feedforward", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createiirfilter-feedback", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-iirfilternode%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createoscillator", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-factory-method%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-oscillatornode%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-oscillatornode%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createpanner", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-factory-method%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pannernode%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pannernode%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createperiodicwave", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-factory-method%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-periodicwave%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createperiodicwave-real", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createperiodicwave-imag", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-indexsizeerror%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-periodicwaveoptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createperiodicwave-real%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createperiodicwave-imag%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwaveconstraints-disablenormalization", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwaveconstraints-disablenormalization%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-periodicwave%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createperiodicwave%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createperiodicwave-real", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwaveoptions-real", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createperiodicwave-imag", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwaveoptions-imag", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createperiodicwave-constraints", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-periodicwave%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createscriptprocessor", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-factory-method%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-scriptprocessornode%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-scriptprocessornode%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-indexsizeerror%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-buffersize%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-indexsizeerror%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createscriptprocessor%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-buffersize", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-scriptprocessornode-buffersize", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-scriptprocessornode-onaudioprocess", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-scriptprocessornode-buffersize%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-indexsizeerror%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-scriptprocessornode%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createstereopanner", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-factory-method%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-stereopannernode%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-stereopannernode%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-createwaveshaper", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-factory-method%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-waveshapernode%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-waveshapernode%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-decodeaudiodata", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-ArrayBuffer%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-ArrayBuffer%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audio%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-decodeaudiodata%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-this", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-concept-relevant-global", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-concept-document-window", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-fully-active", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-a-promise-rejected-with", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-DOMException%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-pending-promises-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-ArrayBuffer%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-datacloneerror", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-pending-promises-slot%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-decodeaudiodata-errorcallback", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-thread", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-rendering-thread", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-decoding-thread", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-decoding-thread", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-linear-pcm%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-encodingerror", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-pending-promises-slot%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-decodeaudiodata-errorcallback%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-decodeaudiodata-errorcallback%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-linear-pcm%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-decodeaudiodata-successcallback", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-decodeaudiodata-successcallback%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-decodeaudiodata%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-decodeaudiodata-audiodata", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-decodeaudiodata-successcallback", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-decodeaudiodata-errorcallback", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-promise%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#callback-decodesuccesscallback-parameters", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-callback-decodesuccesscallback-parameters%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-callback-decodesuccesscallback-parameters%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-decodesuccesscallback-decodeddata", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#callback-decodeerrorcallback-parameters", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-callback-decodeerrorcallback-parameters%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-callback-decodeerrorcallback-parameters%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-decodeerrorcallback-error", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-DOMException%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#lifetime-AudioContext", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#lack-of-introspection-or-serialization-primitives", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-source-nodes", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#system-resources-associated-with-baseaudiocontext-subclasses", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#acquiring", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-suspend", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-close", + "https://www.w3.org/TR/webaudio-1.0/#releasing", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-resume", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#AudioContext", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-AudioContext%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiodestinationnode%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#enumdef-audiocontextlatencycategory", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontextlatencycategory-balanced", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontextlatencycategory-interactive", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontextlatencycategory-playback", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontextlatencycategory-balanced", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontextlatencycategory-interactive", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontextlatencycategory-playback", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#audiocontext", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-audiocontext", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audiocontextoptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-constructor-contextoptions-contextoptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-baselatency", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-outputlatency", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audiotimestamp", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-getoutputtimestamp", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-promise%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-resume%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-promise%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-suspend%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-promise%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-close%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediaelementaudiosourcenode%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-createmediaelementsource", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-htmlmediaelement", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-createmediaelementsource-mediaelement-mediaelement", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamaudiosourcenode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-createmediastreamsource", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastream%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-createmediastreamsource-mediastream-mediastream", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamtrackaudiosourcenode%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-createmediastreamtracksource", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamtrack%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-createmediastreamtracksource-mediastreamtrack-mediastreamtrack", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamaudiodestinationnode%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-createmediastreamdestination", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#allowed-to-start", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontextstate-suspended%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontextstate-running%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-concept-relevant-global%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-sticky-activation", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-suspended-by-user-slot", + "https://www.w3.org/TR/webaudio-1.0/#AudioContext-constructors", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-audiocontext", + "https://www.w3.org/TR/webaudio-1.0/#termref-for-fully-active", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-pending-resume-promises-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontextoptions-latencyhint", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontextoptions-latencyhint%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontextoptions-samplerate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-allowed-to-start", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-message", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-message%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-acquiring", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-state%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontextstate-running%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-concept-event-fire", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-audiocontext%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-constructor-contextoptions-contextoptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#AudioContext-attributes", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-baselatency", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiodestinationnode%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiodestinationnode%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiodestinationnode%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-render-quantum%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-1-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-5", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-6", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-7", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-8", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-9", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-10", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-11", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-12", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-13", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-14", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-15", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-16", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-17", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-1", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-outputlatency", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-outputlatency%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-outputlatency%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-outputlatency%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#AudioContext-methods", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-close", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-releasing", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-this%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-concept-relevant-global%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-concept-document-window%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-fully-active%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-a-promise-rejected-with%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-DOMException%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-queuing", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-message%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-rendering-thread%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-releasing%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-message%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-state%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontextstate-closed%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-state%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontextstate-closed%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-concept-event-fire%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastream%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-htmlmediaelement%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-promise%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-createmediaelementsource", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediaelementaudiosourcenode%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-htmlmediaelement%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-htmlmediaelement%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-createmediaelementsource%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-createmediaelementsource-mediaelement", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediaelementaudiosourcenode%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-createmediastreamdestination", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamaudiodestinationnode%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamaudiodestinationnode%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-createmediastreamsource", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamaudiosourcenode%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-createmediastreamsource%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-createmediastreamsource-mediastream", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamaudiosourcenode%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-createmediastreamtracksource", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamtrackaudiosourcenode%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-createmediastreamtracksource%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-createmediastreamtracksource-mediastreamtrack", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamtrack%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamtrackaudiosourcenode%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-getoutputtimestamp", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audiotimestamp%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiotimestamp-contexttime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiotimestamp-performancetime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-getoutputtimestamp%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audiotimestamp%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiotimestamp-contexttime%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-getoutputtimestamp%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#example-a967f6fb", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-getoutputtimestamp%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiotimestamp-contexttime%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-getoutputtimestamp%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-outputlatency%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audiotimestamp%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-resume", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-this%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-concept-relevant-global%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-concept-document-window%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-fully-active%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-a-promise-rejected-with%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-DOMException%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-suspended-by-user-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-allowed-to-start%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-pending-promises-slot%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-pending-resume-promises-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-queuing%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#context-resume", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-message%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-rendering-thread%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-acquiring%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-pending-resume-promises-slot%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-pending-resume-promises-slot%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-pending-promises-slot%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-pending-resume-promises-slot%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-pending-resume-promises-slot%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-pending-promises-slot%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-state%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontextstate-running%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-state%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontextstate-running%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-concept-event-fire%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-promise%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontext-suspend", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-releasing%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-this%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-concept-relevant-global%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-concept-document-window%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-fully-active%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-a-promise-rejected-with%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-DOMException%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-pending-promises-slot%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-suspended-by-user-slot%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-queuing%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-message%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-rendering-thread%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-releasing%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-state%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A5%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontextstate-suspended%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-state%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontextstate-suspended%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-concept-event-fire%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastream%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-htmlmediaelement%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-scriptprocessornode%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-analysernode%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-analysernode%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-analysernode%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-promise%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#AudioContextOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audiocontextoptions%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-AudioContextOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audiocontextoptions%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#dictdef-audiocontextoptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-audiocontextlatencycategory", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontextoptions-latencyhint%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontextoptions-samplerate%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dictionary-audiocontextoptions-members", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audiocontextoptions%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontextoptions-latencyhint", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-audiocontextlatencycategory%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-baselatency%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiocontextoptions-samplerate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontextoptions-samplerate%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A5%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#AudioTimestamp", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audiotimestamp%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-AudioTimestamp", + "https://www.w3.org/TR/webaudio-1.0/#dictdef-audiotimestamp", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiotimestamp-contexttime%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-domhighrestimestamp", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiotimestamp-performancetime%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dictionary-audiotimestamp-members", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audiotimestamp%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiotimestamp-contexttime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiotimestamp-performancetime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-domhighrestimestamp%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioContext", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-OfflineAudioContext", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#offlineaudiocontext", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-offlineaudiocontext-offlineaudiocontext", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-offlineaudiocontextoptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-offlineaudiocontext-constructor-contextoptions-contextoptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-offlineaudiocontext-offlineaudiocontext-numberofchannels-length-samplerate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-numberofchannels", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-length", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-samplerate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-promise%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-offlineaudiocontext-startrendering", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-promise%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-offlineaudiocontext-resume", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-promise%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-offlineaudiocontext-suspend", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontext-suspend-suspendtime-suspendtime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-offlineaudiocontext-length", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-eventhandler%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-offlineaudiocontext-oncomplete%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioContext-constructors", + "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontext-offlineaudiocontext", + "https://www.w3.org/TR/webaudio-1.0/#termref-for-fully-active%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiodestinationnode%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-offlineaudiocontext-offlineaudiocontext%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontext-constructor-contextoptions-contextoptions", + "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontext-offlineaudiocontext-numberofchannels-length-samplerate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-offlineaudiocontext-offlineaudiocontext-numberofchannels-length-samplerate%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-numberofchannels", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createbuffer%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-length", + "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-samplerate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-linear-pcm%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createbuffer%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioContext-attributes", + "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontext-length", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontext-oncomplete", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-eventhandler%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-OfflineAudioCompletionEvent", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioContext-methods", + "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontext-startrendering", + "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontext-rendering-started-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-thread%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-this%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-concept-relevant-global%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-concept-document-window%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-fully-active%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-a-promise-rejected-with%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-DOMException%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-offlineaudiocontext-rendering-started-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-offlineaudiocontext-rendering-started-slot%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontext-rendered-buffer-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-begin-offline-rendering", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-pending-promises-slot%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#begin-offline-rendering", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-rendering-thread%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-offlineaudiocontext-rendered-buffer-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-render-quantum%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-offlineaudiocontext-suspend%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-offlineaudiocontext-startrendering%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-offlineaudiocontext-rendered-buffer-slot%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-concept-event-fire%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocompletionevent", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-offlineaudiocontext-rendered-buffer-slot%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-promise%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontext-resume", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-this%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-concept-relevant-global%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-concept-document-window%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-fully-active%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-a-promise-rejected-with%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-DOMException%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-offlineaudiocontext-rendering-started-slot%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-queuing%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-message%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-rendering-thread%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-state%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontextstate-running%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-state%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontextstate-running%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-concept-event-fire%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-promise%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontext-suspend", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-render-quantum%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-render-quantum%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-offlineaudiocontext-suspend%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontext-suspend-suspendtime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-render-quantum%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-promise%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioContextOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-offlineaudiocontextoptions%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-OfflineAudioContextOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dictdef-offlineaudiocontextoptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-offlineaudiocontextoptions-numberofchannels", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-offlineaudiocontextoptions-length", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-offlineaudiocontextoptions-samplerate", + "https://www.w3.org/TR/webaudio-1.0/#dictionary-offlineaudiocontextoptions-members", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-offlineaudiocontextoptions%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontextoptions-length", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontextoptions-numberofchannels", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocontextoptions-samplerate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioCompletionEvent", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocompletionevent%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-OfflineAudioCompletionEvent%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-event%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#offlineaudiocompletionevent", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-event%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocompletionevent-offlineaudiocompletionevent", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-DOMString", + "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocompletionevent-offlineaudiocompletionevent-type-eventinitdict-type", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-offlineaudiocompletioneventinit", + "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocompletionevent-offlineaudiocompletionevent-type-eventinitdict-eventinitdict", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-offlineaudiocompletionevent-renderedbuffer", + "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioCompletionEvent-attributes", + "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocompletionevent-renderedbuffer", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#OfflineAudioCompletionEventInit", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-offlineaudiocompletioneventinit%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-OfflineAudioCompletionEventInit", + "https://www.w3.org/TR/webaudio-1.0/#dictdef-offlineaudiocompletioneventinit", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-eventinit", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-offlineaudiocompletioneventinit-renderedbuffer", + "https://www.w3.org/TR/webaudio-1.0/#dictionary-offlineaudiocompletioneventinit-members", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-offlineaudiocompletioneventinit%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-offlineaudiocompletioneventinit-renderedbuffer", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-offlineaudiocompletionevent-renderedbuffer%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-AudioBuffer", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-linear-pcm%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-2-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-18", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-19", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-20", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-21", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-22", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-23", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-24", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-25", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audio%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediaelementaudiosourcenode%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-number-of-channels-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-length-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-sample-rate-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-internal-data-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-sec-data-blocks", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#audiobuffer", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-audiobuffer", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audiobufferoptions", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-audiobuffer-options-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-samplerate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-length", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-duration", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-numberofchannels", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-getchanneldata", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-getchanneldata-channel-channel", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-copyfromchannel", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-copyfromchannel-destination-channelnumber-bufferoffset-destination", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-copyfromchannel-destination-channelnumber-bufferoffset-channelnumber", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-copyfromchannel-destination-channelnumber-bufferoffset-bufferoffset", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-copytochannel", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-copytochannel-source-channelnumber-bufferoffset-source", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-copytochannel-source-channelnumber-bufferoffset-channelnumber", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-copytochannel-source-channelnumber-bufferoffset-bufferoffset", + "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer-constructors", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-audiobuffer", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-constructor-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobufferoptions-numberofchannels", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobufferoptions-length", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobufferoptions-samplerate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audiobufferoptions%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-number-of-channels-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-length-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-sample-rate-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-internal-data-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-length-slot%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-number-of-channels-slot%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-audiobuffer%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-constructor-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audiobufferoptions%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer-attributes", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-duration", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-sample-rate-slot%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-length-slot%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-length-slot%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-sample-rate-slot%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-length", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-length-slot%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-numberofchannels", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-number-of-channels-slot%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-samplerate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-sample-rate-slot%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#AudioBuffer-methods", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-copyfromchannel", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-copyfromchannel%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-3-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-26", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-27", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-28", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-29", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-30", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-3", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-4-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-31", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-32", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-33", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-34", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-35", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-copyfromchannel-destination", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-5-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-36", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-37", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-38", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-copyfromchannel-bufferoffset", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-copyfromchannel-destination%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-6-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-39", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-40", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-41", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-42", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-43", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-44", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-45", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-46", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-47", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-48", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-49", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-50", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-51", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-52", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-53", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-54", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-55", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-56", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-57", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-6", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-7-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-58", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-59", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-60", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-61", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-62", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-copyfromchannel-destination%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-copyfromchannel%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-copyfromchannel-destination", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-copyfromchannel-channelnumber", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-indexsizeerror%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-copyfromchannel-bufferoffset", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-copyfromchannel-destination%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-copytochannel", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-copytochannel%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-unknownerror", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-copytochannel-source", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-8-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-63", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-64", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-65", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-66", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-67", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-8", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-9-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-68", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-69", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-70", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-71", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-72", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-9", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-copytochannel-source%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-10-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-73", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-74", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-75", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-10", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-copytochannel-bufferoffset", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-copytochannel-source%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-11-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-76", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-77", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-78", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-79", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-80", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-81", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-82", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-83", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-84", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-85", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-86", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-87", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-88", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-89", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-90", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-91", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-92", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-93", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-94", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-11", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-12-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-95", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-96", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-97", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-98", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-99", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-12", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-copytochannel%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-copytochannel-source", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-copytochannel-channelnumber", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-indexsizeerror%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-copytochannel-bufferoffset", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-copytochannel-source%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-getchanneldata", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-acquire-the-content", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dfn-get-buffer-source-reference", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dfn-get-buffer-source-copy", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-internal-data-slot%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-unknownerror%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-internal-data-slot%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-getchanneldata%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffer-getchanneldata-channel", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-number-of-channels-slot%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-indexsizeerror%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-copytochannel%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-copyfromchannel%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-copyfromchannel%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-getchanneldata%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-acquire-the-content%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#acquire-the-content", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-ArrayBuffer%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-ArrayBuffer%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-getchanneldata%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createbuffer%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-internal-data-slot%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-ArrayBuffer%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-ArrayBuffer%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-getchanneldata%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-acquire-the-content%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-start", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-acquire-the-content%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-buffer", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffersourcenode%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-start%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-acquire-the-content%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-convolvernode%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-convolvernode-buffer", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-acquire-the-content%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioprocessingevent%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-acquire-the-content%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioprocessingevent-outputbuffer", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-copytochannel%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-acquire-the-content%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#AudioBufferOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audiobufferoptions%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-AudioBufferOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobufferoptions-length%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobufferoptions-samplerate%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dictdef-audiobufferoptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobufferoptions-numberofchannels%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobufferoptions-length%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobufferoptions-samplerate%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dictionary-audiobufferoptions-members", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audiobufferoptions%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createbuffer%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobufferoptions-length", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createbuffer-length", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobufferoptions-numberofchannels", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createbuffer-numberofchannels", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobufferoptions-samplerate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createbuffer-samplerate", + "https://www.w3.org/TR/webaudio-1.0/#AudioNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-AudioNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A6%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-inputs", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-outputs", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-source-node", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#connection", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#input", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-connection", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-input", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A6%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiodestinationnode%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#audionode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-eventtarget%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-connect", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-connect-destinationnode-output-input-destinationnode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-connect-destinationnode-output-input-output", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-connect-destinationnode-output-input-input", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-connect-destinationparam-output", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-connect-destinationparam-output-destinationparam", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-connect-destinationparam-output-output", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-disconnect", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-disconnect-output", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-disconnect-output-output", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-disconnect-destinationnode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-disconnect-destinationnode-destinationnode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-disconnect-destinationnode-output", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-disconnect-destinationnode-output-destinationnode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-disconnect-destinationnode-output-output", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-disconnect-destinationnode-output-input", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-disconnect-destinationnode-output-input-destinationnode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-disconnect-destinationnode-output-input-output", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-disconnect-destinationnode-output-input-input", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-disconnect-destinationparam", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-disconnect-destinationparam-destinationparam", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-disconnect-destinationparam-output", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-disconnect-destinationparam-output-destinationparam", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-disconnect-destinationparam-output-output", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofinputs", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofoutputs", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-channelcountmode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcountmode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-channelinterpretation", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelinterpretation", + "https://www.w3.org/TR/webaudio-1.0/#AudioNode-creation", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#factory-method", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A6%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#associated", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-associated", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-factory-method%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-associated-option-object", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-associated-interface", + "https://www.w3.org/TR/webaudio-1.0/#audionode-constructor-init", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofinputs%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofoutputs%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcountmode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelinterpretation%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-value", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#associated-interface", + "https://www.w3.org/TR/webaudio-1.0/#associated-option-object", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-eventtarget%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A5%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-eventtarget%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#enumdef-channelcountmode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-max", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-clamped-max", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-explicit", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-channelcountmode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelinterpretation%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#computednumberofchannels", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-computednumberofchannels", + "https://www.w3.org/TR/webaudio-1.0/#dom-channelcountmode-max", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-computednumberofchannels%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-channelcountmode-clamped-max", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-computednumberofchannels%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-max%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-channelcountmode-explicit", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-computednumberofchannels%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#enumdef-channelinterpretation", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelinterpretation-speakers", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelinterpretation-discrete", + "https://www.w3.org/TR/webaudio-1.0/#dom-channelinterpretation-speakers", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelinterpretation-discrete%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-channelinterpretation-discrete", + "https://www.w3.org/TR/webaudio-1.0/#AudioNode-tail", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#tail-time", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#AudioNode-actively-processing", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#actively-processing", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-render-quantum%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioscheduledsourcenode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-actively-processing", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-playing", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediaelementaudiosourcenode%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-actively-processing%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediaelementaudiosourcenode-mediaelement", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamaudiosourcenode%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamtrackaudiosourcenode%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-actively-processing%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamtrack%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delaynode%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-actively-processing%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-render-quantum%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-13-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-100", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-101", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-102", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-103", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-104", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-105", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-106", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-107", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-13", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-scriptprocessornode%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-actively-processing%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-actively-processing%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletprocessor-callable-process-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-active-source", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-actively-processing%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A5%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-actively-processing%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-actively-processing%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-actively-processing%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-actively-processing%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A6%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-tail-time", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A6%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-actively-processing%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#AudioNode-attributes", + "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-channelcount", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#audionode-channelcount-constraints", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiodestinationnode%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiodestinationnode-maxchannelcount", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-indexsizeerror%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelmergernode%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelsplitternode%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-convolvernode%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dynamicscompressornode%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pannernode%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-scriptprocessornode%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-stereopannernode%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-channelcountmode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-channelcountmode%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcountmode%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-max%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#audionode-channelcountmode-constraints", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiodestinationnode%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiodestinationnode%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-destination%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelmergernode%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-explicit%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelsplitternode%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-explicit%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-convolvernode%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-max%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-max%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dynamicscompressornode%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-max%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-max%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pannernode%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-max%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-max%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-scriptprocessornode%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-explicit%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-stereopannernode%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-max%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-channelinterpretation", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-channelinterpretation%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelinterpretation%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelinterpretation-speakers%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#audionode-channelinterpretation-constraints", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelsplitternode%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelinterpretation-discrete%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-numberofinputs", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A6%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#audionode-source-nodes", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelmergernode%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-numberofoutputs", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A6%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A6%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelsplitternode%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#AudioNode-methods", + "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-connect", + "https://www.w3.org/TR/webaudio-1.0/#example-bbcc3e9e", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A6%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-connect%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-connect-destinationnode-output-input-destinationnode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A7%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A7%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A6%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidaccesserror", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A7%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A6%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A7%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A7%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-connect-destinationnode-output-input-output", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A7%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-indexsizeerror%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A7%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-connect-destinationnode-output-input-input", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A7%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-indexsizeerror%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A7%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A7%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#cycle", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A8%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A8%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A8%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A8%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-connect-destinationparam-output", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A8%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-a-rate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A8%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A8%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A8%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A8%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcountmode%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-explicit%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelinterpretation%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelinterpretation-speakers%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#example-8779522d", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-connect-destinationparam-output%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-connect-destinationparam-output-destinationparam", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-connect-destinationparam-output-destinationparam%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A8%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%93%AA%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidaccesserror%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-connect-destinationparam-output-output", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%93%AA%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-indexsizeerror%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%93%AA%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect-output", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%93%AA%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%93%AA%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-disconnect-output%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect-output-output", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%93%AA%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-indexsizeerror%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect-destinationnode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%93%AA%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%93%AA%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-disconnect-destinationnode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect-destinationnode-destinationnode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%93%AA%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidaccesserror%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect-destinationnode-output", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%93%AA%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-disconnect-destinationnode-output%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect-destinationnode-output-destinationnode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidaccesserror%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect-destinationnode-output-output", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-indexsizeerror%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect-destinationnode-output-input", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-disconnect-destinationnode-output-input%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect-destinationnode-output-input-destinationnode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidaccesserror%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect-destinationnode-output-input-output", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-indexsizeerror%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect-destinationnode-output-input-input", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-indexsizeerror%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect-destinationparam", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-disconnect-destinationparam%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect-destinationparam-destinationparam", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidaccesserror%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect-destinationparam-output", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-disconnect-destinationparam-output%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect-destinationparam-output-destinationparam", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidaccesserror%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#dom-audionode-disconnect-destinationparam-output-output", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-indexsizeerror%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#AudioNodeOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audionodeoptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-AudioNodeOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dictdef-audionodeoptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionodeoptions-channelcount", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-channelcountmode%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionodeoptions-channelcountmode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-channelinterpretation%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionodeoptions-channelinterpretation", + "https://www.w3.org/TR/webaudio-1.0/#dictionary-audionodeoptions-members", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audionodeoptions%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audionodeoptions-channelcount", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#dom-audionodeoptions-channelcountmode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-channelcountmode%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcountmode%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-audionodeoptions-channelinterpretation", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-channelinterpretation%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelinterpretation%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#AudioParam", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-AudioParam%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A6%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-a-rate%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-k-rate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-render-quantum%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-render-quantum%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#k-rate", + "https://www.w3.org/TR/webaudio-1.0/#a-rate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-a-rate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-k-rate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue", + "https://www.w3.org/TR/webaudio-1.0/#simple-nominal-range", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-14-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-108", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-109", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-110", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-111", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-112", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-113", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-114", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-115", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-116", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-117", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-118", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-119", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-120", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-121", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-122", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-123", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-124", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-125", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-126", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-127", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-128", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-129", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-130", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-131", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-132", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-14", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#most-positive-single-float", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#most-negative-single-float", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-positive-single-float", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dfn-automation-event", + "https://www.w3.org/TR/webaudio-1.0/#automation-event-time", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A7%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A7%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dfn-automation-method", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-setvalueattime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-linearramptovalueattime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-exponentialramptovalueattime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-settargetattime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-setvaluecurveattime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-automation-event-time", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-15-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-133", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-134", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-135", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-15", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-16-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-136", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-137", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-138", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-16", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-17-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-139", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-140", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-141", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-17", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-18-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-142", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-143", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-144", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-145", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-146", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-18", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dfn-automation-method", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-19-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-147", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-148", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-149", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-150", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-151", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-152", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-153", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-154", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-155", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-19", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-20-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-156", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-157", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-158", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-20", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-21-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-159", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-160", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-161", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-21", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-value%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#enumdef-automationrate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-a-rate%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-k-rate%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-automationrate-a-rate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-a-rate%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-automationrate-k-rate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-k-rate%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-current-value-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#audioparam", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-value%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-automationrate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-setvalueattime%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-setvalueattime-value-starttime-value", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-setvalueattime-value-starttime-starttime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-linearramptovalueattime%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-linearramptovalueattime-value-endtime-value", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-linearramptovalueattime-value-endtime-endtime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-exponentialramptovalueattime%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-exponentialramptovalueattime-value-endtime-value", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-exponentialramptovalueattime-value-endtime-endtime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-settargetattime%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-settargetattime-target-starttime-timeconstant-target", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-settargetattime-target-starttime-timeconstant-starttime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-settargetattime-target-starttime-timeconstant-timeconstant", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-sequence%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-setvaluecurveattime-values-starttime-duration-values", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-setvaluecurveattime-values-starttime-duration-starttime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-setvaluecurveattime-values-starttime-duration-duration", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-cancelscheduledvalues", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-cancelscheduledvalues-canceltime-canceltime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-cancelandholdattime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-cancelandholdattime-canceltime-canceltime", + "https://www.w3.org/TR/webaudio-1.0/#AudioParam-attributes", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-automationrate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-automationrate%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#audioparam-automation-rate-constraints", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffersourcenode%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-playbackrate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-detune", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-k-rate%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-a-rate%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dynamicscompressornode%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressornode-threshold", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressornode-knee", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressornode-ratio", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressornode-attack", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressornode-release", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-k-rate%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-a-rate%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pannernode%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-panningmodel", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-panningmodeltype-hrtf", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pannernode%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-k-rate%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-defaultvalue", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-maxvalue", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-nominal-range", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-minvalue", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-nominal-range%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-value", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-current-value-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-current-value-slot%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-setvalueattime%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A7%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-current-value-slot%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#AudioParam-methods", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-cancelandholdattime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-cancelscheduledvalues%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-cancelandholdattime-canceltime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-cancelandholdattime-canceltime%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-cancelandholdattime%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-cancelandholdattime%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-cancelandholdattime-canceltime%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-cancelandholdattime%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-22-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-162", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-163", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-164", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-165", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-166", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-22", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-cancelandholdattime-canceltime%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-23-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-167", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-168", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-169", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-170", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-171", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-23", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-24-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-172", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-173", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-174", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-175", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-176", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-24", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-25-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-177", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-178", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-179", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-180", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-181", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-25", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-26-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-182", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-183", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-184", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-185", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-186", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-187", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-188", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-189", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-190", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-26", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-27-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-191", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-192", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-193", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-194", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-195", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-27", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-28-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-196", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-197", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-198", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-199", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-200", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-28", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-29-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-201", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-202", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-203", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-204", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-205", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-29", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-30-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-206", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-207", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-208", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-209", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-210", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-211", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-212", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-213", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-214", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-30", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-31-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-215", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-216", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-217", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-218", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-219", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-31", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-32-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-220", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-221", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-222", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-223", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-224", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-32", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-33-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-225", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-226", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-227", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-228", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-229", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-33", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-34-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-230", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-231", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-232", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-233", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-234", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-34", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-35-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-235", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-236", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-237", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-238", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-239", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-35", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-36-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-240", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-241", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-242", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-243", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-244", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-36", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-37-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-245", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-246", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-247", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-248", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-249", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-37", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-38-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-250", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-251", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-252", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-253", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-254", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-38", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-39-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-255", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-256", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-257", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-258", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-259", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-39", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-40-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-260", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-261", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-262", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-263", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-264", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-40", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-41-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-265", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-266", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-267", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-268", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-269", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-41", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-42-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-270", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-271", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-272", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-42", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-43-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-273", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-274", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-275", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-276", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-277", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-278", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-279", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-280", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-281", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-282", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-283", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-43", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-44-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-284", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-285", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-286", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-287", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-288", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-44", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-45-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-289", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-290", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-291", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-292", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-293", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-294", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-295", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-296", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-297", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-45", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-46-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-298", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-299", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-300", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-301", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-302", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-46", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-cancelandholdattime%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-47-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-303", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-304", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-305", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-306", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-307", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-47", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-cancelandholdattime%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-cancelandholdattime-canceltime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A7%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-exceptiondef-rangeerror", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-cancelandholdattime-canceltime%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-cancelscheduledvalues", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-cancelscheduledvalues-canceltime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-automation-event-time%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-cancelscheduledvalues-canceltime%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-cancelandholdattime%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-cancelscheduledvalues-canceltime%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-48-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-308", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-309", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-310", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-311", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-312", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-48", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-49-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-313", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-314", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-315", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-316", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-317", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-49", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-setvaluecurveattime-starttime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-setvaluecurveattime-duration", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-cancelscheduledvalues-canceltime%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-50-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-318", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-319", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-320", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-321", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-322", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-323", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-324", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-325", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-326", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-327", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-328", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-329", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-330", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-331", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-332", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-50", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-cancelscheduledvalues%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-cancelscheduledvalues-canceltime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A7%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-exceptiondef-rangeerror%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-exponentialramptovalueattime", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-51-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-333", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-334", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-335", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-336", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-337", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-338", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-339", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-340", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-341", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-342", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-343", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-51", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-52-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-344", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-345", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-346", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-347", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-348", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-52", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-53-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-349", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-350", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-351", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-352", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-353", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-53", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-exponentialramptovalueattime-endtime", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-54-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-354", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-355", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-356", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-357", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-358", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-359", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-360", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-361", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-362", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-363", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-364", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-365", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-366", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-367", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-368", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-369", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-370", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-371", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-372", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-373", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-374", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-375", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-376", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-377", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-378", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-379", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-380", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-381", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-382", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-383", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-384", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-385", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-386", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-387", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-388", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-389", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-54", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-55-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-390", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-391", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-392", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-393", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-394", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-55", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-56-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-395", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-396", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-397", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-398", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-399", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-56", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-57-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-400", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-401", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-402", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-403", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-404", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-57", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-exponentialramptovalueattime-value", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-58-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-405", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-406", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-407", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-408", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-409", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-58", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-59-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-410", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-411", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-412", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-413", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-414", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-59", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-60-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-415", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-416", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-417", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-418", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-419", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-60", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-61-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-420", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-421", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-422", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-423", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-424", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-425", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-426", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-427", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-428", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-429", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-61", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-62-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-430", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-431", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-432", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-433", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-434", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-435", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-436", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-437", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-438", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-439", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-440", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-62", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-settargetattime%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-63-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-441", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-442", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-443", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-444", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-445", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-446", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-447", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-63", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-64-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-448", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-449", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-450", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-451", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-452", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-453", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-454", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-455", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-456", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-457", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-64", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-setvalueattime%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-exponentialramptovalueattime%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-65-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-458", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-459", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-460", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-461", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-462", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-65", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-66-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-463", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-464", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-465", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-466", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-467", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-66", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-67-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-468", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-469", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-470", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-471", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-472", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-67", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-68-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-473", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-474", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-475", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-476", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-477", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-68", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-69-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-478", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-479", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-480", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-481", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-482", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-69", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-70-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-483", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-484", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-485", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-486", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-487", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-70", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-71-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-488", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-489", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-490", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-491", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-492", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-71", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-exponentialramptovalueattime%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-exponentialramptovalueattime-value", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-exceptiondef-rangeerror%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-exponentialramptovalueattime-endtime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A7%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-exceptiondef-rangeerror%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-linearramptovalueattime", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-72-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-493", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-494", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-495", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-496", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-497", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-498", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-499", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-500", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-501", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-502", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-503", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-72", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-73-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-504", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-505", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-506", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-507", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-508", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-73", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-74-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-509", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-510", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-511", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-512", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-513", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-74", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-linearramptovalueattime-endtime", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-75-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-514", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-515", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-516", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-517", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-518", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-519", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-520", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-521", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-522", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-523", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-524", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-525", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-526", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-527", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-528", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-529", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-530", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-531", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-532", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-533", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-534", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-535", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-536", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-537", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-538", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-539", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-540", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-541", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-542", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-543", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-544", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-545", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-546", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-547", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-548", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-75", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-76-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-549", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-550", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-551", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-552", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-553", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-76", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-77-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-554", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-555", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-556", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-557", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-558", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-77", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-78-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-559", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-560", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-561", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-562", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-563", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-78", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-linearramptovalueattime-value", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-79-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-564", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-565", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-566", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-567", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-568", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-569", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-570", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-79", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-80-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-571", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-572", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-573", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-574", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-575", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-576", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-577", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-578", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-579", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-580", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-80", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-setvalueattime%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-linearramptovalueattime%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-81-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-581", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-582", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-583", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-584", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-585", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-81", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-82-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-586", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-587", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-588", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-589", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-590", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-82", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-83-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-591", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-592", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-593", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-594", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-595", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-83", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-84-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-596", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-597", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-598", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-599", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-600", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-84", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-85-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-601", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-602", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-603", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-604", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-605", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-85", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-86-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-606", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-607", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-608", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-609", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-610", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-86", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-87-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-611", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-612", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-613", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-614", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-615", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-87", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-linearramptovalueattime%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-linearramptovalueattime-value", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-linearramptovalueattime-endtime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A7%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-exceptiondef-rangeerror%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-settargetattime", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-88-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-616", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-617", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-618", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-619", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-620", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-621", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-622", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-88", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-89-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-623", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-624", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-625", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-626", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-627", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-89", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-settargetattime-starttime", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-90-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-628", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-629", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-630", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-631", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-632", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-633", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-634", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-635", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-636", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-637", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-638", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-639", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-640", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-641", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-642", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-643", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-644", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-645", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-646", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-647", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-648", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-649", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-650", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-651", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-652", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-653", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-654", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-655", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-656", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-657", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-658", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-659", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-660", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-661", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-662", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-663", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-664", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-90", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-91-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-665", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-666", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-667", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-668", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-669", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-91", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-current-value-slot%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-92-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-670", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-671", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-672", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-673", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-674", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-92", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-settargetattime-starttime%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-93-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-675", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-676", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-677", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-678", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-679", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-93", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-settargetattime-target", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-94-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-680", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-681", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-682", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-94", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-settargetattime-timeconstant", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-linearramptovalueattime%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-exponentialramptovalueattime%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-settargetattime%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-settargetattime-target", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-settargetattime-starttime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A7%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-exceptiondef-rangeerror%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-settargetattime-timeconstant", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-exceptiondef-rangeerror%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-95-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-683", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-684", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-685", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-686", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-687", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-688", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-689", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-690", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-691", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-95", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-setvalueattime", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-96-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-692", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-693", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-694", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-695", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-696", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-697", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-698", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-96", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-97-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-699", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-700", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-701", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-702", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-703", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-704", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-705", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-706", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-97", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-98-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-707", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-708", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-709", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-710", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-711", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-98", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-setvalueattime-starttime", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-99-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-712", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-713", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-714", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-99", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-setvalueattime-value", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-100-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-715", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-716", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-717", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-718", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-719", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-100", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-101-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-720", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-721", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-722", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-723", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-724", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-725", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-726", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-727", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-728", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-729", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-730", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-101", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-102-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-731", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-732", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-733", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-734", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-735", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-736", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-737", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-738", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-102", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-linearramptovalueattime%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-exponentialramptovalueattime%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-setvalueattime%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-setvalueattime-value", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-setvalueattime-starttime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-exceptiondef-rangeerror%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A5%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-setvaluecurveattime", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-103-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-739", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-740", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-741", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-742", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-743", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-103", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-setvaluecurveattime-starttime%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-104-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-744", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-745", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-746", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-747", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-748", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-104", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-setvaluecurveattime-duration%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-105-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-749", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-750", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-751", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-105", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-setvaluecurveattime-values", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-106-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-752", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-753", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-754", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-106", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-setvaluecurveattime-values%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-107-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-755", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-756", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-757", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-758", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-759", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-760", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-761", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-762", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-763", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-764", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-765", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-766", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-767", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-768", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-769", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-107", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-108-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-770", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-771", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-772", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-773", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-774", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-775", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-776", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-777", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-778", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-779", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-780", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-781", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-782", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-783", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-784", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-785", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-786", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-787", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-788", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-789", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-790", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-791", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-792", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-793", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-794", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-795", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-796", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-797", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-108", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-109-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-798", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-799", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-800", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-801", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-802", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-803", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-109", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-110-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-804", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-805", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-806", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-807", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-808", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-809", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-110", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-111-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-810", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-811", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-812", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-813", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-814", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-815", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-816", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-817", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-111", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-112-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-818", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-819", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-820", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-821", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-822", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-823", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-824", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-825", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-826", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-827", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-828", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-112", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-setvalueattime%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-113-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-829", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-830", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-831", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-832", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-833", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-834", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-835", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-836", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-837", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-113", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-114-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-838", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-839", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-840", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-841", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-842", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-843", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-844", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-845", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-114", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-setvaluecurveattime-values", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-setvaluecurveattime-starttime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A7%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-exceptiondef-rangeerror%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparam-setvaluecurveattime-duration", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-exceptiondef-rangeerror%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#computation-of-value", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-simple-parameter", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-compound-parameter", + "https://www.w3.org/TR/webaudio-1.0/#simple-parameter", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#compound-parameter", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#computedvalue", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-value%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dfn-automation-event", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-render-quantum%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-value%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dfn-automation-event%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-value%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-current-value-slot%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-render-quantum%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-input-audioparam-buffer", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A5%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-compound-parameter%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-computedvalue", + "https://www.w3.org/TR/webaudio-1.0/#nominal-range", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-computedvalue%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-simple-parameter%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-computedvalue%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-simple-nominal-range", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-compound-parameter%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-nominal-range%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#example-7a3be3df", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-115-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-846", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-847", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-848", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-115", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-116-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-849", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-850", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-851", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-116", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-117-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-852", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-853", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-854", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-855", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-856", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-857", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-858", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-117", + "https://www.w3.org/TR/webaudio-1.0/#example1-AudioParam", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A6%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#example-ab13e619", + "https://www.w3.org/TR/webaudio-1.0/#AudioScheduledSourceNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioscheduledsourcenode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-AudioScheduledSourceNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffersourcenode%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-constantsourcenode%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-oscillatornode%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioscheduledsourcenode-start", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioscheduledsourcenode-stop", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioscheduledsourcenode%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioscheduledsourcenode%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#playing", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioscheduledsourcenode%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioscheduledsourcenode%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioscheduledsourcenode-source-started-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#audioscheduledsourcenode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-eventhandler%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioscheduledsourcenode-onended", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioscheduledsourcenode-start%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioscheduledsourcenode-start-when-when", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioscheduledsourcenode-stop%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioscheduledsourcenode-stop-when-when", + "https://www.w3.org/TR/webaudio-1.0/#AudioScheduledSourceNode-attributes", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioscheduledsourcenode-onended", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-eventhandler%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#termref-for-eventhandler", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioscheduledsourcenode%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-event%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioscheduledsourcenode%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioscheduledsourcenode-stop%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffersourcenode%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-start-when-offset-duration-duration", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#AudioScheduledSourceNode-methods", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioscheduledsourcenode-start", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioscheduledsourcenode%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioscheduledsourcenode-source-started-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioscheduledsourcenode-source-started-slot%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioscheduledsourcenode%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-queuing%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioscheduledsourcenode%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-message%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A7%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontextstate-suspended%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-allowed-to-start%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-suspended-by-user-slot%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-start%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A8%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-allowed-to-start%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioscheduledsourcenode-start%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioscheduledsourcenode-start-when-when", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioscheduledsourcenode-start-when-when%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A8%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioscheduledsourcenode%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-exceptiondef-rangeerror%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioscheduledsourcenode-stop", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioscheduledsourcenode%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioscheduledsourcenode-source-started-slot%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-queuing%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioscheduledsourcenode%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffersourcenode%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-message%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffersourcenode%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioscheduledsourcenode-stop%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioscheduledsourcenode-stop-when-when", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioscheduledsourcenode-stop-when-when%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A8%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-exceptiondef-rangeerror%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#AnalyserNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-analysernode%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-AnalyserNode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofinputs%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofoutputs%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcountmode%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelinterpretation%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelinterpretation-speakers%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-tail-time%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#analysernode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-analysernode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-analysernode-context-options-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-analyseroptions", + "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-analysernode-context-options-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-getfloatfrequencydata", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-getfloatfrequencydata-array-array", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-getbytefrequencydata", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Uint8Array", + "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-getbytefrequencydata-array-array", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-getfloattimedomaindata", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-getfloattimedomaindata-array-array", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-getbytetimedomaindata", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Uint8Array%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-getbytetimedomaindata-array-array", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-fftsize", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-frequencybincount", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-mindecibels", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-maxdecibels", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-smoothingtimeconstant", + "https://www.w3.org/TR/webaudio-1.0/#AnalyserNode-constructors", + "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-analysernode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-constructor-init", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-analysernode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-constructor-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-analysernode%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-associated%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-constructor-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-analysernode%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#AnalyserNode-attributes", + "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-fftsize", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-indexsizeerror%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-fftsize%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-getbytefrequencydata%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-getfloatfrequencydata%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-previous-block", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-118-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-859", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-860", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-861", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-862", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-863", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-864", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-865", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-866", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-867", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-868", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-869", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-870", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-871", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-872", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-873", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-118", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-smoothing-over-time", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-119-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-874", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-875", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-876", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-119", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-fftsize%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-current-time-domain-data", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-analysernode%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-current-time-domain-data%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-fftsize%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-frequencybincount", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-maxdecibels", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-maxdecibels%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-mindecibels%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-indexsizeerror%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-mindecibels", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-mindecibels%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-maxdecibels%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-indexsizeerror%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-smoothingtimeconstant", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-indexsizeerror%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#AnalyserNode-methods", + "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-getbytefrequencydata", + "https://www.w3.org/TR/webaudio-1.0/#termref-for-dfn-get-buffer-source-reference", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Uint8Array%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-current-frequency-data", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-frequencybincount%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-frequencybincount%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-fftsize%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-getbytefrequencydata%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-getfloatfrequencydata%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-render-quantum%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-current-frequency-data%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-120-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-877", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-878", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-879", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-880", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-881", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-882", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-120", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-current-frequency-data%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-121-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-883", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-884", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-885", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-886", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-887", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-888", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-121", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-122-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-889", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-890", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-891", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-892", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-893", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-894", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-895", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-896", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-897", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-898", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-899", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-900", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-901", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-902", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-903", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-904", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-905", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-906", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-907", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-908", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-909", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-910", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-911", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-912", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-913", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-914", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-915", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-916", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-917", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-918", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-919", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-920", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-921", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-922", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-923", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-924", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-925", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-926", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-927", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-928", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-929", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-930", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-931", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-932", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-933", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-934", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-935", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-936", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-937", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-122", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-123-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-938", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-939", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-940", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-941", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-942", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-943", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-944", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-945", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-946", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-947", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-948", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-123", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-mindecibels%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-124-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-949", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-950", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-951", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-952", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-953", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-954", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-955", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-956", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-957", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-958", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-959", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-124", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-maxdecibels%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-125-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-960", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-961", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-962", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-963", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-964", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-965", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-125", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-126-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-966", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-967", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-968", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-969", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-970", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-971", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-126", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-getbytefrequencydata%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-getbytefrequencydata-array", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-getbytetimedomaindata", + "https://www.w3.org/TR/webaudio-1.0/#termref-for-dfn-get-buffer-source-reference%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Uint8Array%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-current-time-domain-data%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-fftsize%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-fftsize%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-fftsize%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-127-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-972", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-973", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-974", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-975", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-976", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-977", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-127", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-128-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-978", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-979", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-980", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-981", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-982", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-983", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-128", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-129-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-984", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-985", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-986", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-987", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-988", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-989", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-990", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-991", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-992", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-993", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-994", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-995", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-996", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-997", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-998", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-999", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1000", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1001", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1002", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1003", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-129", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-130-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1004", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1005", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1006", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1007", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1008", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1009", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-130", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-131-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1010", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1011", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1012", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1013", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1014", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1015", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-131", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-getbytetimedomaindata%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-getbytetimedomaindata-array", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-getfloatfrequencydata", + "https://www.w3.org/TR/webaudio-1.0/#termref-for-dfn-get-buffer-source-reference%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-current-frequency-data%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-frequencybincount%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-frequencybincount%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-fftsize%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-getfloatfrequencydata%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-getbytefrequencydata%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-render-quantum%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-current-frequency-data%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-getfloatfrequencydata%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-getfloatfrequencydata-array", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-getfloattimedomaindata", + "https://www.w3.org/TR/webaudio-1.0/#termref-for-dfn-get-buffer-source-reference%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-current-time-domain-data%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-fftsize%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-fftsize%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-fftsize%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-getfloattimedomaindata%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-analysernode-getfloattimedomaindata-array", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#AnalyserOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-analyseroptions%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-AnalyserOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-analysernode%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dictdef-analyseroptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audionodeoptions%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analyseroptions-fftsize", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analyseroptions-maxdecibels", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analyseroptions-mindecibels", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analyseroptions-smoothingtimeconstant", + "https://www.w3.org/TR/webaudio-1.0/#dictionary-analyseroptions-members", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-analyseroptions%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-analyseroptions-fftsize", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#dom-analyseroptions-maxdecibels", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-analyseroptions-mindecibels", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-analyseroptions-smoothingtimeconstant", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#time-domain-down-mixing", + "https://www.w3.org/TR/webaudio-1.0/#current-time-domain-data", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcountmode%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelinterpretation%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelinterpretation-speakers%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-analysernode%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-fftsize%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#fft-windowing-and-smoothing-over-time", + "https://www.w3.org/TR/webaudio-1.0/#current-frequency-data", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-current-time-domain-data%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-blackman-window", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-fourier-transform", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-smoothing-over-time%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-conversion-to-db", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-132-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1016", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1017", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1018", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-132", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-fftsize%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-analysernode%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#blackman-window", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-133-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1019", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1020", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1021", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1022", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1023", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1024", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-133", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-134-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1025", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1026", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1027", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1028", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1029", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1030", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1031", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1032", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1033", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1034", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1035", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-134", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-135-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1036", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1037", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1038", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1039", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1040", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1041", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1049", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1050", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1051", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1052", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1053", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1064", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1065", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1066", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1067", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1068", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1076", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1077", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1078", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1079", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1080", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1088", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1089", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1090", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1091", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1092", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1093", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1042", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1043", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1044", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1045", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1046", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1047", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1048", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1054", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1055", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1056", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1057", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1058", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1059", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1060", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1061", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1062", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1063", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1069", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1070", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1071", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1072", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1073", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1074", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1075", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1081", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1082", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1083", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1084", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1085", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1086", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1087", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1094", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1095", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1096", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1097", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1098", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1099", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1100", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1101", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1102", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1103", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1104", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1105", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1106", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1107", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1108", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1109", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1110", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1111", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1112", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1113", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1114", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1115", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1116", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1117", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1118", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1119", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1120", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1121", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1122", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1123", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1124", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1125", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1126", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1127", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1128", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1129", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1130", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1131", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1132", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1133", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1134", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1135", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1136", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1137", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-135", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-136-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1138", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1139", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1140", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1141", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1142", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1143", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1144", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1145", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1146", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1147", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-136", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-137-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1148", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1149", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1150", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1151", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1152", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1153", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1154", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1155", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1156", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1157", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1158", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1159", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1160", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1161", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1162", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1163", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1164", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1165", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1166", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1167", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1168", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1169", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1170", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1171", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1172", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1173", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1174", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1175", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1176", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1177", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1178", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1179", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-137", + "https://www.w3.org/TR/webaudio-1.0/#fourier-transform", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-138-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1180", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1181", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1182", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1183", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1184", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1185", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-138", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-139-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1186", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1187", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1188", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1189", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1190", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1191", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1192", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1193", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1194", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1195", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-139", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-140-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1196", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1197", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1198", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1199", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1200", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1201", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1202", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1203", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1204", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1205", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1206", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1207", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1208", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1209", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1210", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1211", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1212", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1213", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1214", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1215", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1216", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1217", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1218", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1219", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1220", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1221", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1222", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1223", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1224", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1225", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1226", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1227", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1228", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1229", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1230", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1231", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1232", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1233", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1234", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1235", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1236", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-140", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-141-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1237", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1238", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1239", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1240", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1241", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1242", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1243", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1244", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1245", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1246", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1247", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1248", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1249", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1250", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1251", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-141", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-142-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1252", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1253", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1254", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1255", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1256", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1257", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1258", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1259", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1260", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1261", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1262", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1263", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1264", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1265", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1266", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1267", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1268", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-142", + "https://www.w3.org/TR/webaudio-1.0/#smoothing-over-time", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-143-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1269", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1270", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1271", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1272", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1273", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1274", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1275", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1276", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1277", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1278", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1279", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1280", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1281", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1282", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1283", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-143", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-previous-block%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#previous-block", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-smoothing-over-time%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-144-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1284", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1285", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1286", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-144", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-smoothing-over-time%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-145-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1287", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1288", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1289", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-145", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-smoothingtimeconstant%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-analysernode%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-146-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1290", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1291", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1292", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1293", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1294", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1295", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-146", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-fourier-transform%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-147-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1296", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1297", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1298", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1299", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1300", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1301", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1302", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1303", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1304", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1305", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-147", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-148-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1306", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1307", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1308", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1309", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1310", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1311", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1312", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1313", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1314", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1315", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1316", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1317", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1318", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1319", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1320", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1321", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1322", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1323", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1324", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1325", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1326", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1327", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1328", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1329", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1330", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1331", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1332", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1333", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1334", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1335", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1336", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1337", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1338", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1339", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1340", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1341", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1342", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1343", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1344", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1345", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-148", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-149-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1346", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1347", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1348", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1349", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1350", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1351", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1352", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1353", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1354", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1355", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1356", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-149", + "https://www.w3.org/TR/webaudio-1.0/#conversion-to-db", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-150-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1357", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1358", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1359", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1360", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1361", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1362", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1363", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1364", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1365", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1366", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-150", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-smoothing-over-time%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-151-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1367", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1368", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1369", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1370", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1371", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1372", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1373", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1374", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1375", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1376", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1377", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1378", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1379", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1380", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1381", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1382", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1383", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1384", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1385", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1386", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1387", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1388", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-151", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-152-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1389", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1390", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1391", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1392", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1393", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1394", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1395", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1396", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1397", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1398", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1399", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-152", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-153-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1400", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1401", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1402", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1403", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1404", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1405", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-153", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-getfloatfrequencydata%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-getbytefrequencydata%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-154-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1406", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1407", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1408", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1409", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1410", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1411", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-154", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-mindecibels%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-maxdecibels%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-mindecibels%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-analysernode-maxdecibels%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffersourcenode%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-AudioBufferSourceNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioscheduledsourcenode-start%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioscheduledsourcenode-start%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loop", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioscheduledsourcenode-stop%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioscheduledsourcenode-start%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioscheduledsourcenode-stop%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofinputs%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofoutputs%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcountmode%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelinterpretation%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelinterpretation-speakers%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-tail-time%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffersourcenode%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-start-when-offset-duration-duration%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioscheduledsourcenode-stop-when-when%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#playhead-position", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffersourcenode%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-detune%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-playbackrate%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-detune%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-compound-parameter%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#computedplaybackrate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-nominal-range%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-compound-parameter%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-155-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1412", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1413", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1414", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1415", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1416", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1417", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1418", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1419", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-155", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffersourcenode%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-buffer-set-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#audiobuffersourcenode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioscheduledsourcenode%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-audiobuffersourcenode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-audiobuffersourcenode-context-options-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audiobuffersourceoptions", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-audiobuffersourcenode-context-options-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A6%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-playbackrate%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-detune%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-boolean", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loop%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loopstart", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loopend", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-start%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-start-when-offset-duration-when", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-start-when-offset-duration-offset", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-start-when-offset-duration-duration%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceNode-constructors", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-constructor-audiobuffersourcenode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-constructor-init%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-audiobuffersourcenode", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-constructor-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffersourcenode%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-associated%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-constructor-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffersourcenode%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceNode-attributes", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-buffer", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-buffer-set-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-buffer-set-slot%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-acquire-the-content%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-detune", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A6%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-compound-parameter%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-playbackrate%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-computedplaybackrate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-negative-single-float", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-positive-single-float%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-k-rate%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam-automation-rate-constraints", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-loop", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-boolean%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-loopend", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-playhead-position", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loop%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-loopstart", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-playhead-position%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loop%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-playbackrate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-compound-parameter%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-detune%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-computedplaybackrate%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-negative-single-float%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-positive-single-float%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-k-rate%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam-automation-rate-constraints%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceNode-methods", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-start", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffersourcenode%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioscheduledsourcenode-source-started-slot%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioscheduledsourcenode-source-started-slot%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffersourcenode%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-queuing%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffersourcenode%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-acquire-the-content%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-message%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A8%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontextstate-suspended%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-allowed-to-start%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-suspended-by-user-slot%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-start%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A8%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-allowed-to-start%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-message%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffersourcenode%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-start%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-start-when-offset-duration-when", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A8%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-exceptiondef-rangeerror%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-start-when-offset-duration-offset", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-playhead-position%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-exceptiondef-rangeerror%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-playbackrate%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loop%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-playbackrate%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loop%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourcenode-start-when-offset-duration-duration", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-start-when-offset-duration-duration%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-start-when-offset-duration-duration%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-playbackrate%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-start-when-offset-duration-duration%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-exceptiondef-rangeerror%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#AudioBufferSourceOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audiobuffersourceoptions%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-AudioBufferSourceOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffersourcenode%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#dictdef-audiobuffersourceoptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourceoptions-buffer", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourceoptions-detune", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-boolean%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourceoptions-loop", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourceoptions-loopend", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourceoptions-loopstart", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourceoptions-playbackrate", + "https://www.w3.org/TR/webaudio-1.0/#dictionary-audiobuffersourceoptions-members", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audiobuffersourceoptions%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourceoptions-buffer", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourceoptions-buffer%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffersourcenode%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourceoptions-detune", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-detune%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourceoptions-loop", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-boolean%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loop%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourceoptions-loopend", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourceoptions-loopstart", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiobuffersourceoptions-playbackrate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-playbackrate%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#looping-AudioBufferSourceNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loop%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loop%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioscheduledsourcenode-stop%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-start%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-start%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-playbackrate%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#playback-AudioBufferSourceNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-computedplaybackrate%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffersourcenode%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffersourcenode-start%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffersourcenode%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffersourcenode%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffersourcenode%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffersourcenode%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffersourcenode%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#AudioDestinationNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiodestinationnode%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-AudioDestinationNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A8%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A8%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A8%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiodestinationnode%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A8%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamaudiodestinationnode%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiodestinationnode%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%93%AA%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%93%AA%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofinputs%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofoutputs%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcountmode%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-explicit%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelinterpretation%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelinterpretation-speakers%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-tail-time%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiodestinationnode-maxchannelcount%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-indexsizeerror%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofinputs%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofoutputs%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcountmode%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-explicit%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelinterpretation-speakers%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-tail-time%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#audiodestinationnode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiodestinationnode-maxchannelcount%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#AudioDestinationNode-attributes", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiodestinationnode-maxchannelcount", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiodestinationnode%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiodestinationnode-maxchannelcount%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#AudioListener", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-AudioListener", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pannernode%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-listener%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-positionx", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-positiony", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-positionz", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pannernode%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-forwardx", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-forwardy", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-forwardz", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#audiolistener", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-positionx%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A6%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-positiony%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A6%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-positionz%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A6%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-forwardx%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A7%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-forwardy%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A7%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-forwardz%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A7%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-upx", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A7%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-upy", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A7%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-upz", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-setposition", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setposition-x-y-z-x", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setposition-x-y-z-y", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setposition-x-y-z-z", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-setorientation", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-x", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-y", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-z", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-xup", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-yup", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-zup", + "https://www.w3.org/TR/webaudio-1.0/#AudioListener-attributes", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-forwardx", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A7%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-negative-single-float%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-positive-single-float%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-a-rate%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-forwardy", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A7%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-negative-single-float%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-positive-single-float%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-a-rate%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-forwardz", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A7%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-negative-single-float%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-positive-single-float%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-a-rate%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-positionx", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A7%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-negative-single-float%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-positive-single-float%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-a-rate%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-positiony", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A7%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-negative-single-float%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-positive-single-float%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-a-rate%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-positionz", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A8%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-negative-single-float%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-positive-single-float%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-a-rate%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-upx", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A8%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-negative-single-float%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-positive-single-float%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-upy", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A8%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-negative-single-float%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-positive-single-float%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-upz", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A8%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-negative-single-float%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#AudioListener-methods", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setorientation", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-forwardx%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-value%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-forwardy%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-value%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-forwardz%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-value%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-upx%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-value%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-upy%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-value%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-upz%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-forwardx%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-forwardy%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-forwardz%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-upx%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-upy%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-upz%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A8%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-setorientation%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener-forward", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener-up", + "https://www.w3.org/TR/webaudio-1.0/#audiolistener-forward", + "https://www.w3.org/TR/webaudio-1.0/#audiolistener-up", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-setorientation-x", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-setorientation-y", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-setorientation-z", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener-forward%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-setorientation-xup", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-setorientation-yup", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-setorientation-zup", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener-up%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-setorientation%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setorientation-x", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setorientation-y", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setorientation-z", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setorientation-xup", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setorientation-yup", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setorientation-zup", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setposition", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-positionx%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-positiony%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-positionz%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-positionx%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-positiony%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-positionz%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A8%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-setposition%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pannernode%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-setposition-x", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-setposition-y", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-setposition-z", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiolistener-setposition%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setposition-x", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setposition-y", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-audiolistener-setposition-z", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#listenerprocessing", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pannernode%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pannernode%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#AudioProcessingEvent", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioprocessingevent%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-AudioProcessingEvent", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-event%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-scriptprocessornode%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioprocessingevent-outputbuffer%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#audioprocessingevent", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-event%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioprocessingevent-audioprocessingevent", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-DOMString%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioprocessingevent-audioprocessingevent-type-eventinitdict-type", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audioprocessingeventinit", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioprocessingevent-audioprocessingevent-type-eventinitdict-eventinitdict", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioprocessingevent-playbacktime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioprocessingevent-inputbuffer", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioprocessingevent-outputbuffer%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#AudioProcessingEvent-attributes", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioprocessingevent-inputbuffer", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A5%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-scriptprocessornode-onaudioprocess%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioprocessingevent-outputbuffer", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-scriptprocessornode-onaudioprocess%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioprocessingevent-playbacktime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%93%AA%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#AudioProcessingEventInit", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audioprocessingeventinit%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-AudioProcessingEventInit", + "https://www.w3.org/TR/webaudio-1.0/#dictdef-audioprocessingeventinit", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-eventinit%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioprocessingeventinit-playbacktime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioprocessingeventinit-inputbuffer", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioprocessingeventinit-outputbuffer", + "https://www.w3.org/TR/webaudio-1.0/#dictionary-audioprocessingeventinit-members", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audioprocessingeventinit%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioprocessingeventinit-inputbuffer", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioprocessingevent-inputbuffer%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioprocessingeventinit-outputbuffer", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioprocessingevent-outputbuffer%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioprocessingeventinit-playbacktime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioprocessingevent-playbacktime%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-biquadfilternode%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-BiquadFilterNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-biquadfilternode%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-biquadfilternode%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfilternode-frequency", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-biquadfilternode%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfilternode-frequency%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfilternode-detune", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-compound-parameter%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-a-rate%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#computedfrequency", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-nominal-range%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-compound-parameter%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for---nyquist-frequency", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofinputs%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofoutputs%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelinterpretation-speakers%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-tail-time%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#enumdef-biquadfiltertype", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfiltertype-lowpass", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfiltertype-highpass", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfiltertype-bandpass", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfiltertype-lowshelf", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfiltertype-highshelf", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfiltertype-peaking", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfiltertype-notch", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfiltertype-allpass", + "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfiltertype-lowpass", + "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfiltertype-highpass", + "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfiltertype-bandpass", + "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfiltertype-lowshelf", + "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfiltertype-highshelf", + "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfiltertype-peaking", + "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfiltertype-notch", + "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfiltertype-allpass", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-biquadfilternode%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-a-rate%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A8%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#biquadfilternode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-biquadfilternode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-biquadfilternode-context-options-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-biquadfilteroptions", + "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-biquadfilternode-context-options-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-biquadfiltertype", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfilternode-type", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A8%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfilternode-frequency%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A8%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfilternode-detune%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A8%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfilternode-q", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%93%AA%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfilternode-gain", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfilternode-getfrequencyresponse", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-frequencyhz", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-magresponse", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-phaseresponse", + "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode-constructors", + "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-biquadfilternode-context-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-constructor-init%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfilternode-biquadfilternode", + "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-constructor-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-biquadfilternode%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-associated%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-constructor-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-biquadfilternode%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode-attributes", + "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-q", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%93%AA%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfiltertype-lowpass%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfiltertype-highpass%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfilternode-q%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-156-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1420", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1421", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1422", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1423", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1424", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1425", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1426", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1427", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1428", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1429", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1430", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1431", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1432", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1433", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1434", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1435", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1436", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1437", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1438", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1439", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-156", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-157-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1440", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1441", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1442", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1443", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1444", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1445", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1446", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1447", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1448", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-157", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-158-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1449", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1450", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1451", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1452", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1453", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1454", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1455", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1456", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1457", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1458", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1459", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-158", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-159-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1460", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1461", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1462", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-159", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfiltertype-bandpass%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfiltertype-notch%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfiltertype-allpass%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfiltertype-peaking%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-160-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1463", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1464", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1465", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1466", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1467", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1468", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1469", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1470", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1471", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-160", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfiltertype-lowshelf%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfiltertype-highshelf%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-detune", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%93%AA%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-compound-parameter%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfilternode-frequency%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-computedfrequency", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-161-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1472", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1473", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1474", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1475", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1476", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-161", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-162-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1477", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1478", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1479", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1480", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-162", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-163-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1481", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1482", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1483", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1484", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1485", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1486", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1487", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1488", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1489", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1490", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1491", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1492", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1493", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1494", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1495", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1496", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1497", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-163", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-frequency", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%93%AA%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-biquadfilternode%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-compound-parameter%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfilternode-detune%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-computedfrequency%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for---nyquist-frequency%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-gain", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%93%AA%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfiltertype-lowshelf%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfiltertype-highshelf%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfiltertype-peaking%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-164-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1498", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1499", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1500", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1501", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-164", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-165-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1502", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1503", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1504", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1505", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1506", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1507", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1508", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1509", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1510", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1511", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1512", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1513", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1514", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1515", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1516", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1517", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1518", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1519", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1520", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-165", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-type", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-biquadfiltertype%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-biquadfilternode%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfiltertype-lowpass%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfilternode-type%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterNode-methods", + "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-getfrequencyresponse", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-current-value-slot%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidaccesserror%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%93%AA%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfilternode-getfrequencyresponse%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-getfrequencyresponse-frequencyhz", + "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-getfrequencyresponse-magresponse", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%93%AA%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilternode-getfrequencyresponse-phaseresponse", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%93%AA%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#BiquadFilterOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-biquadfilteroptions%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-BiquadFilterOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-biquadfilternode%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dictdef-biquadfilteroptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audionodeoptions%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-biquadfiltertype%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfilteroptions-type", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfilteroptions-q", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfilteroptions-detune", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfilteroptions-frequency", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfilteroptions-gain", + "https://www.w3.org/TR/webaudio-1.0/#dictionary-biquadfilteroptions-members", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-biquadfilteroptions%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilteroptions-q", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfilternode-q%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilteroptions-detune", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfilternode-detune%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilteroptions-frequency", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfilternode-frequency%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilteroptions-gain", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfilternode-gain%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-biquadfilteroptions-type", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-biquadfiltertype%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#filters-characteristics", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-biquadfilternode%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dfn-conforming-implementation", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-biquadfilternode%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-166-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1521", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1522", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1523", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1524", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1525", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1526", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1527", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1528", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1529", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1530", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1531", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1532", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1533", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1534", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1535", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1536", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1537", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1538", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1539", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1540", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1541", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1542", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1543", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1544", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1545", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1546", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1547", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1548", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1549", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1550", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1551", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1552", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1553", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1554", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1555", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1556", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1557", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1558", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1559", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1560", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1561", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1562", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1563", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1564", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1565", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1566", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1567", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1568", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1569", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1570", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1571", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1572", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1573", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1574", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1575", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1576", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1577", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1578", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1579", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1580", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1581", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1582", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1583", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1584", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1585", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1586", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1587", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1588", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1589", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1590", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1591", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1592", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1593", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1594", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-166", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-167-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1595", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1596", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1597", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1598", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1599", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1600", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1601", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1602", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1603", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1604", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1605", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1606", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1607", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1608", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1609", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1610", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1611", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1612", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1613", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1614", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1615", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1616", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1617", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1618", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1619", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1620", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1621", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1622", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1623", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1624", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1625", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1626", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1627", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1628", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1629", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1630", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1631", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1632", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1633", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1634", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1635", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1636", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1637", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1638", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1639", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1640", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1641", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1642", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1643", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1644", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1645", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1646", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1647", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1648", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1649", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1650", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1651", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-167", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%93%AA%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-computedvalue%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%93%AA%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-biquadfilternode%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-168-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1652", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1653", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1654", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1655", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1656", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-168", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%93%AA%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-169-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1657", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1658", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1659", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1660", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1661", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-169", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-computedfrequency%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-170-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1662", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1663", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1664", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-170", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfilternode-gain%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%93%AA%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-171-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1665", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1666", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1667", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-171", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfilternode-q%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%93%AA%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-172-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1668", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1669", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1670", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1671", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1672", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1673", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1685", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1686", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1687", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1688", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1689", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1703", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1704", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1705", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1706", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1707", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1722", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1723", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1724", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1725", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1726", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1727", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1728", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1729", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1730", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1731", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1732", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1733", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1757", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1758", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1759", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1765", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1766", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1767", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1768", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1769", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1674", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1675", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1676", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1677", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1678", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1679", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1680", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1681", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1682", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1683", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1684", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1690", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1691", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1692", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1693", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1694", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1695", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1696", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1697", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1698", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1699", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1700", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1701", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1702", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1708", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1709", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1710", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1711", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1712", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1713", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1714", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1715", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1716", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1717", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1718", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1719", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1720", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1721", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1734", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1735", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1736", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1737", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1738", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1739", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1740", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1741", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1742", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1743", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1744", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1745", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1746", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1747", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1748", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1749", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1750", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1751", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1752", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1753", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1754", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1755", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1756", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1760", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1761", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1762", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1763", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1764", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1770", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1771", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1772", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1773", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1774", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1775", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1776", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1777", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1778", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1779", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1780", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1781", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1782", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1783", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1784", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1785", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1786", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1787", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1788", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1789", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1790", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1791", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1792", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1793", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1794", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1795", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1796", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1797", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1798", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1799", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1800", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1801", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-172", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-173-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1802", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1803", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1804", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1805", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1806", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1807", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1808", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1809", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1810", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1811", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1812", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1813", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1814", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1815", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1816", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1817", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1818", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1819", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1820", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1821", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1822", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1823", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1824", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1825", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1826", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-173", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfiltertype-lowpass%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-174-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1827", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1828", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1829", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1830", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1831", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1832", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1833", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1834", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1849", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1850", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1851", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1852", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1853", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1865", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1866", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1867", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1868", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1869", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1884", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1885", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1886", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1887", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1888", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1905", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1906", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1907", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1908", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1909", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1921", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1922", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1923", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1924", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1925", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1835", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1836", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1837", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1838", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1839", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1840", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1841", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1842", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1843", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1844", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1845", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1846", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1847", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1848", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1854", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1855", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1856", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1857", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1858", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1859", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1860", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1861", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1862", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1863", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1864", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1870", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1871", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1872", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1873", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1874", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1875", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1876", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1877", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1878", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1879", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1880", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1881", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1882", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1883", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1889", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1890", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1891", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1892", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1893", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1894", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1895", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1896", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1897", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1898", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1899", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1900", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1901", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1902", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1903", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1904", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1910", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1911", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1912", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1913", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1914", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1915", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1916", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1917", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1918", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1919", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1920", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1926", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1927", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1928", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1929", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1930", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1931", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1932", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1933", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1934", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1935", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1936", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1937", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1938", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1939", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1940", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1941", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-174", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfiltertype-highpass%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-175-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1942", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1943", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1944", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1945", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1946", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1947", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1948", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1949", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1964", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1965", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1966", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1967", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1968", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1983", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1984", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1985", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1986", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1987", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2002", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2003", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2004", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2005", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2006", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2023", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2024", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2025", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2026", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2027", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2039", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2040", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2041", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2042", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2043", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1950", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1951", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1952", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1953", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1954", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1955", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1956", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1957", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1958", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1959", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1960", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1961", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1962", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1963", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1969", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1970", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1971", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1972", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1973", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1974", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1975", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1976", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1977", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1978", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1979", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1980", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1981", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1982", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1988", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1989", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1990", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1991", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1992", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1993", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1994", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1995", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1996", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1997", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1998", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-1999", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2000", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2001", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2007", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2008", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2009", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2010", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2011", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2012", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2013", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2014", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2015", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2016", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2017", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2018", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2019", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2020", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2021", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2022", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2028", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2029", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2030", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2031", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2032", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2033", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2034", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2035", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2036", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2037", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2038", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2044", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2045", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2046", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2047", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2048", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2049", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2050", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2051", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2052", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2053", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2054", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2055", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2056", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2057", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2058", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2059", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-175", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfiltertype-bandpass%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-176-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2060", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2061", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2062", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2063", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2064", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2065", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2066", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2067", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2075", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2076", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2077", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2078", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2079", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2085", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2086", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2087", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2088", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2089", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2098", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2099", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2100", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2101", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2102", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2112", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2113", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2114", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2115", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2116", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2128", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2129", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2130", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2131", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2132", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2068", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2069", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2070", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2071", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2072", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2073", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2074", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2080", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2081", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2082", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2083", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2084", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2090", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2091", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2092", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2093", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2094", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2095", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2096", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2097", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2103", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2104", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2105", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2106", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2107", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2108", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2109", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2110", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2111", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2117", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2118", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2119", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2120", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2121", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2122", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2123", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2124", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2125", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2126", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2127", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2133", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2134", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2135", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2136", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2137", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2138", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2139", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2140", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2141", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-176", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfiltertype-notch%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-177-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2142", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2143", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2144", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2145", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2146", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2147", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2148", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2149", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2155", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2156", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2157", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2158", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2159", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2171", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2172", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2173", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2174", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2175", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2181", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2182", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2183", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2184", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2185", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2195", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2196", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2197", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2198", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2199", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2211", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2212", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2213", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2214", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2215", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2150", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2151", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2152", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2153", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2154", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2160", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2161", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2162", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2163", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2164", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2165", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2166", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2167", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2168", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2169", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2170", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2176", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2177", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2178", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2179", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2180", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2186", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2187", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2188", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2189", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2190", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2191", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2192", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2193", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2194", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2200", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2201", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2202", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2203", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2204", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2205", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2206", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2207", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2208", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2209", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2210", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2216", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2217", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2218", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2219", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2220", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2221", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2222", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2223", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2224", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-177", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfiltertype-allpass%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-178-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2225", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2226", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2227", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2228", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2229", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2230", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2231", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2232", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2242", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2243", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2244", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2245", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2246", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2258", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2259", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2260", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2261", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2262", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2272", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2273", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2274", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2275", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2276", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2286", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2287", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2288", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2289", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2290", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2302", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2303", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2304", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2305", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2306", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2233", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2234", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2235", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2236", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2237", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2238", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2239", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2240", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2241", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2247", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2248", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2249", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2250", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2251", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2252", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2253", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2254", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2255", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2256", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2257", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2263", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2264", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2265", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2266", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2267", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2268", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2269", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2270", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2271", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2277", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2278", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2279", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2280", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2281", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2282", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2283", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2284", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2285", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2291", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2292", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2293", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2294", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2295", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2296", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2297", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2298", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2299", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2300", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2301", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2307", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2308", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2309", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2310", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2311", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2312", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2313", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2314", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2315", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-178", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfiltertype-peaking%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-179-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2316", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2317", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2318", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2319", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2320", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2321", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2322", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2323", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2335", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2336", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2337", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2338", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2339", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2351", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2352", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2353", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2354", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2355", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2367", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2368", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2369", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2370", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2371", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2383", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2384", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2385", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2386", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2387", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2399", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2400", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2401", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2402", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2403", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2324", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2325", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2326", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2327", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2328", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2329", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2330", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2331", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2332", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2333", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2334", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2340", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2341", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2342", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2343", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2344", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2345", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2346", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2347", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2348", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2349", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2350", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2356", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2357", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2358", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2359", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2360", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2361", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2362", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2363", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2364", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2365", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2366", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2372", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2373", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2374", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2375", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2376", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2377", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2378", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2379", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2380", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2381", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2382", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2388", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2389", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2390", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2391", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2392", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2393", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2394", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2395", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2396", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2397", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2398", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2404", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2405", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2406", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2407", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2408", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2409", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2410", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2411", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2412", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2413", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2414", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-179", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfiltertype-lowshelf%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-180-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2415", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2416", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2417", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2418", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2419", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2420", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2421", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2422", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2456", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2457", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2458", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2459", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2460", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2487", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2488", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2489", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2490", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2491", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2525", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2526", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2527", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2528", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2529", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2558", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2559", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2560", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2561", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2562", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2588", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2589", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2590", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2591", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2592", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2423", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2424", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2425", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2426", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2427", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2428", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2429", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2430", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2431", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2432", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2433", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2434", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2435", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2436", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2437", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2438", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2439", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2440", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2441", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2442", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2443", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2444", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2445", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2446", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2447", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2448", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2449", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2450", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2451", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2452", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2453", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2454", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2455", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2461", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2462", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2463", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2464", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2465", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2466", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2467", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2468", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2469", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2470", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2471", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2472", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2473", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2474", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2475", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2476", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2477", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2478", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2479", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2480", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2481", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2482", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2483", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2484", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2485", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2486", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2492", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2493", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2494", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2495", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2496", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2497", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2498", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2499", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2500", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2501", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2502", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2503", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2504", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2505", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2506", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2507", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2508", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2509", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2510", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2511", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2512", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2513", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2514", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2515", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2516", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2517", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2518", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2519", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2520", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2521", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2522", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2523", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2524", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2530", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2531", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2532", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2533", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2534", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2535", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2536", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2537", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2538", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2539", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2540", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2541", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2542", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2543", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2544", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2545", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2546", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2547", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2548", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2549", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2550", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2551", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2552", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2553", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2554", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2555", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2556", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2557", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2563", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2564", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2565", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2566", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2567", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2568", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2569", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2570", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2571", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2572", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2573", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2574", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2575", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2576", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2577", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2578", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2579", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2580", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2581", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2582", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2583", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2584", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2585", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2586", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2587", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2593", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2594", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2595", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2596", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2597", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2598", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2599", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2600", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2601", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2602", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2603", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2604", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2605", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2606", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2607", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2608", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2609", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2610", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2611", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2612", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2613", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2614", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2615", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2616", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2617", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2618", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2619", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2620", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2621", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-180", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-biquadfiltertype-highshelf%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-181-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2622", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2623", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2624", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2625", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2626", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2627", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2628", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2629", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2663", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2664", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2665", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2666", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2667", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2695", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2696", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2697", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2698", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2699", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2733", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2734", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2735", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2736", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2737", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2766", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2767", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2768", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2769", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2770", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2795", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2796", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2797", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2798", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2799", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2630", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2631", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2632", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2633", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2634", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2635", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2636", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2637", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2638", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2639", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2640", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2641", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2642", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2643", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2644", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2645", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2646", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2647", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2648", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2649", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2650", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2651", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2652", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2653", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2654", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2655", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2656", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2657", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2658", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2659", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2660", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2661", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2662", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2668", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2669", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2670", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2671", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2672", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2673", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2674", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2675", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2676", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2677", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2678", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2679", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2680", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2681", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2682", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2683", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2684", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2685", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2686", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2687", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2688", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2689", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2690", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2691", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2692", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2693", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2694", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2700", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2701", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2702", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2703", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2704", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2705", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2706", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2707", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2708", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2709", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2710", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2711", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2712", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2713", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2714", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2715", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2716", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2717", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2718", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2719", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2720", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2721", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2722", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2723", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2724", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2725", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2726", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2727", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2728", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2729", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2730", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2731", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2732", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2738", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2739", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2740", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2741", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2742", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2743", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2744", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2745", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2746", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2747", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2748", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2749", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2750", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2751", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2752", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2753", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2754", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2755", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2756", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2757", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2758", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2759", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2760", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2761", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2762", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2763", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2764", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2765", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2771", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2772", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2773", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2774", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2775", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2776", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2777", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2778", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2779", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2780", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2781", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2782", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2783", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2784", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2785", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2786", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2787", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2788", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2789", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2790", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2791", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2792", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2793", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2794", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2800", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2801", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2802", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2803", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2804", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2805", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2806", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2807", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2808", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2809", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2810", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2811", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2812", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2813", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2814", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2815", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2816", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2817", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2818", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2819", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2820", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2821", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2822", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2823", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2824", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2825", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2826", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2827", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-181", + "https://www.w3.org/TR/webaudio-1.0/#ChannelMergerNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelmergernode%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-ChannelMergerNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelmergernode%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelsplitternode%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofinputs%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-channelmergeroptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelmergeroptions-numberofinputs", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createchannelmerger%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofoutputs%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-channelcount-constraints", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-explicit%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-channelcountmode-constraints", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelinterpretation-speakers%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-tail-time%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-actively-processing%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-actively-processing%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#example-c8345030", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelmergernode%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelmergernode%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#channelmergernode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#dom-channelmergernode-channelmergernode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-channelmergernode-channelmergernode-context-options-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-channelmergeroptions%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-channelmergernode-channelmergernode-context-options-options", + "https://www.w3.org/TR/webaudio-1.0/#ChannelMergerNode-constructors", + "https://www.w3.org/TR/webaudio-1.0/#dom-channelmergernode-constructor-channelmergernode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-constructor-init%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelmergernode-channelmergernode", + "https://www.w3.org/TR/webaudio-1.0/#dom-channelmergernode-constructor-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelmergernode%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-associated%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-channelmergernode-constructor-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelmergernode%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ChannelMergerOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-channelmergeroptions%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-ChannelMergerOptions", + "https://www.w3.org/TR/webaudio-1.0/#dictdef-channelmergeroptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audionodeoptions%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelmergeroptions-numberofinputs%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dictionary-channelmergeroptions-members", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-channelmergeroptions%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-channelmergeroptions-numberofinputs", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelmergernode%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createchannelmerger%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ChannelSplitterNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelsplitternode%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-ChannelSplitterNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelsplitternode%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelmergernode%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofinputs%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofoutputs%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelsplitteroptions-numberofoutputs", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createchannelsplitter%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelsplitteroptions-numberofoutputs%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-channelsplitteroptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelsplitternode-channelsplitternode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofoutputs%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-channelcount-constraints%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-explicit%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-channelcountmode-constraints%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelinterpretation-discrete%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-channelinterpretation-constraints", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-tail-time%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelsplitternode%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%93%AA%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createchannelsplitter%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#example-889bcff3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelsplitternode%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#channelsplitternode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#dom-channelsplitternode-channelsplitternode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-channelsplitternode-channelsplitternode-context-options-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-channelsplitteroptions%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-channelsplitternode-channelsplitternode-context-options-options", + "https://www.w3.org/TR/webaudio-1.0/#ChannelSplitterNode-constructors", + "https://www.w3.org/TR/webaudio-1.0/#dom-channelsplitternode-constructor-channelsplitternode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-constructor-init%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelsplitternode-channelsplitternode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-channelsplitternode-constructor-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelsplitternode%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-associated%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-channelsplitternode-constructor-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelsplitternode%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ChannelSplitterOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-channelsplitteroptions%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-ChannelSplitterOptions", + "https://www.w3.org/TR/webaudio-1.0/#dictdef-channelsplitteroptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audionodeoptions%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelsplitteroptions-numberofoutputs%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dictionary-channelsplitteroptions-members", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-channelsplitteroptions%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-channelsplitteroptions-numberofoutputs", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelsplitternode%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createchannelsplitter%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ConstantSourceNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-constantsourcenode%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-ConstantSourceNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-constantsourcenode-offset", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofinputs%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-tail-time%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#constantsourcenode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioscheduledsourcenode%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-constantsourcenode-constantsourcenode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#dom-constantsourcenode-constantsourcenode-context-options-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-constantsourceoptions", + "https://www.w3.org/TR/webaudio-1.0/#dom-constantsourcenode-constantsourcenode-context-options-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-constantsourcenode-offset%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ConstantSourceNode-constructors", + "https://www.w3.org/TR/webaudio-1.0/#dom-constantsourcenode-constructor-constantsourcenode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-constructor-init%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-constantsourcenode-constantsourcenode", + "https://www.w3.org/TR/webaudio-1.0/#dom-constantsourcenode-constructor-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-constantsourcenode%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-associated%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#dom-constantsourcenode-constructor-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-constantsourcenode%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ConstantSourceNode-attributes", + "https://www.w3.org/TR/webaudio-1.0/#dom-constantsourcenode-offset", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ConstantSourceOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-constantsourceoptions%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-ConstantSourceOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-constantsourcenode%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#dictdef-constantsourceoptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-constantsourceoptions-offset", + "https://www.w3.org/TR/webaudio-1.0/#dictionary-constantsourceoptions-members", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-constantsourceoptions%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-constantsourceoptions-offset", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-constantsourcenode-offset%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ConvolverNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-convolvernode%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-ConvolverNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-channelcount-constraints%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-clamped-max%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-channelcountmode-constraints%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-tail-time%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-convolvernode-buffer%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-channelcount-constraints%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-channelcountmode-constraints%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#convolvernode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-convolvernode-convolvernode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-convolvernode-convolvernode-context-options-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-convolveroptions", + "https://www.w3.org/TR/webaudio-1.0/#dom-convolvernode-convolvernode-context-options-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-convolvernode-buffer%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-boolean%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-convolvernode-normalize", + "https://www.w3.org/TR/webaudio-1.0/#ConvolverNode-constructors", + "https://www.w3.org/TR/webaudio-1.0/#dom-convolvernode-constructor-convolvernode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-convolvernode-normalize%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-convolveroptions-disablenormalization", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-convolvernode-buffer%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-convolvernode-buffer%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-convolvernode-normalize%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audionodeoptions%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionodeoptions-channelcount%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionodeoptions-channelcount%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionodeoptions-channelcountmode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionodeoptions-channelcountmode%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionodeoptions-channelinterpretation%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionodeoptions-channelinterpretation%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-constructor-init%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-convolvernode-convolvernode", + "https://www.w3.org/TR/webaudio-1.0/#dom-convolvernode-constructor-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-convolvernode%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-associated%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#dom-convolvernode-constructor-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-convolvernode%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ConvolverNode-attributes", + "https://www.w3.org/TR/webaudio-1.0/#dom-convolvernode-buffer", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A5%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-convolvernode-buffer%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-convolvernode-normalize%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-convolvernode%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#dom-convolvernode-buffer-attribute", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-numberofchannels%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-samplerate%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-associated%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-acquire-the-content%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-convolvernode-buffer%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-convolvernode%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-convolvernode%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-convolvernode-buffer%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-convolvernode-buffer%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-convolvernode%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-convolvernode-normalize", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-boolean%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-convolvernode-buffer%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-convolvernode-normalize%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-convolvernode-buffer%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-convolvernode-normalize%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-convolvernode-buffer%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-convolvernode%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-convolvernode-buffer%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-convolvernode-normalize%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-convolvernode-buffer%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-convolvernode%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-convolvernode-buffer%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-convolvernode-buffer%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ConvolverOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-convolveroptions%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-ConvolverOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-convolvernode%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#dictdef-convolveroptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audionodeoptions%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-convolveroptions-buffer", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-boolean%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-convolveroptions-disablenormalization%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dictionary-convolveroptions-members", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-convolveroptions%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-convolveroptions-buffer", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A6%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-convolvernode%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-convolveroptions-disablenormalization%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-convolveroptions-disablenormalization", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-boolean%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-convolvernode-normalize%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-convolvernode%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#Convolution-channel-configurations", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-convolvernode%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-convolvernode-buffer%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelsplitternode%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-convolvernode%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelmergernode%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-actively-processing%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-actively-processing%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#convolver-diagram", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-convolvernode%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#DelayNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delaynode%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-DelayNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-tail-time%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-delayoptions-maxdelaytime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delaynode%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delaynode%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#delaynode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-delaynode-delaynode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-delaynode-delaynode-context-options-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-delayoptions", + "https://www.w3.org/TR/webaudio-1.0/#dom-delaynode-delaynode-context-options-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-delaynode-delaytime", + "https://www.w3.org/TR/webaudio-1.0/#DelayNode-constructors", + "https://www.w3.org/TR/webaudio-1.0/#dom-delaynode-constructor-delaynode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-constructor-init%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-delaynode-delaynode", + "https://www.w3.org/TR/webaudio-1.0/#dom-delaynode-constructor-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delaynode%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-associated%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#dom-delaynode-constructor-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delaynode%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#DelayNode-attributes", + "https://www.w3.org/TR/webaudio-1.0/#dom-delaynode-delaytime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createdelay-maxdelaytime-maxdelaytime%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%93%AA%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createdelay%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-delayoptions-maxdelaytime%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-delayoptions%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-delaynode-delaynode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delaynode%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-cycle", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-delaynode-delaytime%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-render-quantum%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-delayoptions-maxdelaytime%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#DelayOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-delayoptions%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-DelayOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delaynode%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dictdef-delayoptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audionodeoptions%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-delayoptions-maxdelaytime%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-delayoptions-delaytime", + "https://www.w3.org/TR/webaudio-1.0/#dictionary-delayoptions-members", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-delayoptions%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-delayoptions-delaytime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-delayoptions-maxdelaytime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createdelay-maxdelaytime-maxdelaytime%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#DelayNode-processing", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delaynode%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delaynode%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delaynode%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delaynode%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#delaywriter", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delaynode%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delaynode%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delaynode%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#delayreader", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delaynode%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delaynode%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delaynode%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delayreader", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-source-node%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delaywriter", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delaynode%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delayreader%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delaywriter%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delaynode%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dynamicscompressornode%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-DynamicsCompressorNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dynamicscompressornode%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-channelcount-constraints%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-clamped-max%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-channelcountmode-constraints%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-tail-time%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-tail-time%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#dynamicscompressornode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressornode-dynamicscompressornode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressornode-dynamicscompressornode-context-options-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-dynamicscompressoroptions", + "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressornode-dynamicscompressornode-context-options-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressornode-threshold%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressornode-knee%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressornode-ratio%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressornode-reduction", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressornode-attack%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressornode-release%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorNode-constructors", + "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressornode-constructor-dynamicscompressornode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-constructor-init%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressornode-internal-reduction-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressornode-internal-reduction-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressornode-dynamicscompressornode", + "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressornode-constructor-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dynamicscompressornode%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-associated%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressornode-constructor-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dynamicscompressornode%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorNode-attributes", + "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressornode-attack", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-k-rate%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam-automation-rate-constraints%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressornode-knee", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-k-rate%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam-automation-rate-constraints%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressornode-ratio", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-k-rate%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam-automation-rate-constraints%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressornode-reduction", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressornode-internal-reduction-slot%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressornode-release", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-k-rate%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam-automation-rate-constraints%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressornode-threshold", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-k-rate%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam-automation-rate-constraints%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-dynamicscompressoroptions%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-DynamicsCompressorOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dynamicscompressornode%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dictdef-dynamicscompressoroptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audionodeoptions%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressoroptions-attack", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressoroptions-knee", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressoroptions-ratio", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressoroptions-release", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressoroptions-threshold", + "https://www.w3.org/TR/webaudio-1.0/#dictionary-dynamicscompressoroptions-members", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-dynamicscompressoroptions%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressoroptions-attack", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressornode-attack%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressoroptions-knee", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A5%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressornode-knee%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressoroptions-ratio", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressornode-ratio%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressoroptions-release", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressornode-release%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressoroptions-threshold", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressornode-threshold%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#DynamicsCompressorOptions-processing", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dynamicscompressornode%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dynamicscompressornode%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dynamicscompressornode%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-182-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2828", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2829", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2830", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2831", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2832", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2833", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2834", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2835", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-182", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-183-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2836", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2837", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2838", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2839", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2840", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2841", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2842", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2843", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2844", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2845", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2846", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2847", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2848", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2849", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2850", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2851", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2852", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-183", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dynamicscompressornode%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A5%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dynamicscompressornode%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#envelopefollower", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dynamicscompressornode%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-envelopefollower", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-envelopefollower%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressornode-detector-average-slot", + "https://www.w3.org/TR/webaudio-1.0/#dom-dynamicscompressornode-compressor-gain-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressornode-attack%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressornode-release%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-k-rate%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dynamicscompressornode%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-associated%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressornode-detector-average-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressornode-compressor-gain-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-compression-curve", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-detector-curve", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-computing-the-envelope-rate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-computing-the-makeup-gain", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-linear-to-decibel", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressornode-compressor-gain-slot%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressornode-detector-average-slot%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-atomically%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressornode-internal-reduction-slot%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#computing-the-makeup-gain", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-compression-curve%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#computing-the-envelope-rate", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-184-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2853", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2854", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2855", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2856", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2857", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2858", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2859", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-184", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressornode-attack%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressornode-release%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#detector-curve", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-185-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2860", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2861", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2862", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2863", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2864", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2865", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2866", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-185", + "https://www.w3.org/TR/webaudio-1.0/#compression-curve", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressornode-threshold%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressornode-knee%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-decibels-to-linear-gain-unit", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-k-rate%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressornode-threshold%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressornode-knee%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-k-rate%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-decibels-to-linear-gain-unit%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-dynamicscompressornode-ratio%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-k-rate%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-186-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2867", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2868", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2869", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2870", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2871", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2872", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2873", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2874", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-186", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dynamicscompressornode%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-187-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2875", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2876", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2877", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2878", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2879", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2880", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2881", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2882", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2883", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2884", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2885", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2886", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2887", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2888", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2889", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2890", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2891", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-187", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-188-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2892", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2893", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2894", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-188", + "https://www.w3.org/TR/webaudio-1.0/#linear-to-decibel", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-189-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2895", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2896", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2897", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-189", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-190-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2898", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2899", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2900", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2901", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2902", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2903", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2904", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2905", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2906", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2907", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2908", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2909", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2910", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-190", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-191-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2911", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2912", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2913", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-191", + "https://www.w3.org/TR/webaudio-1.0/#decibels-to-linear-gain-unit", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-192-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2914", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2915", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2916", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2917", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2918", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2919", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2920", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2921", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2922", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2923", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2924", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-192", + "https://www.w3.org/TR/webaudio-1.0/#GainNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-gainnode%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-GainNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-tail-time%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-gainnode%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-computedvalue%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-gainnode-gain", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#gainnode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#dom-gainnode-gainnode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-gainnode-gainnode-context-options-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-gainoptions", + "https://www.w3.org/TR/webaudio-1.0/#dom-gainnode-gainnode-context-options-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-gainnode-gain%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#GainNode-constructors", + "https://www.w3.org/TR/webaudio-1.0/#dom-gainnode-constructor-gainnode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-constructor-init%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-gainnode-gainnode", + "https://www.w3.org/TR/webaudio-1.0/#dom-gainnode-constructor-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-gainnode%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-associated%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-gainnode-constructor-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-gainnode%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#GainNode-attributes", + "https://www.w3.org/TR/webaudio-1.0/#dom-gainnode-gain", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#GainOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-gainoptions%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-GainOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-gainnode%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#dictdef-gainoptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audionodeoptions%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-gainoptions-gain", + "https://www.w3.org/TR/webaudio-1.0/#dictionary-gainoptions-members", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-gainoptions%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-gainoptions-gain", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-gainnode-gain%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#IIRFilterNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-iirfilternode%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-IIRFilterNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-iirfilternode%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-biquadfilternode%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-tail-time%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#iirfilternode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#dom-iirfilternode-iirfilternode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#dom-iirfilternode-iirfilternode-context-options-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-iirfilteroptions", + "https://www.w3.org/TR/webaudio-1.0/#dom-iirfilternode-iirfilternode-context-options-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-iirfilternode-getfrequencyresponse", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#dom-iirfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-frequencyhz", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#dom-iirfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-magresponse", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#dom-iirfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-phaseresponse", + "https://www.w3.org/TR/webaudio-1.0/#IIRFilterNode-constructors", + "https://www.w3.org/TR/webaudio-1.0/#dom-iirfilternode-constructor-iirfilternode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-constructor-init%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-iirfilternode-iirfilternode", + "https://www.w3.org/TR/webaudio-1.0/#dom-iirfilternode-constructor-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A5%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-iirfilternode%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-associated%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-iirfilternode-constructor-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-iirfilternode%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#IIRFilterNode-methods", + "https://www.w3.org/TR/webaudio-1.0/#dom-iirfilternode-getfrequencyresponse", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidaccesserror%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-iirfilternode-getfrequencyresponse%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-iirfilternode-getfrequencyresponse-frequencyhz", + "https://www.w3.org/TR/webaudio-1.0/#dom-iirfilternode-getfrequencyresponse-magresponse", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%93%AA%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#dom-iirfilternode-getfrequencyresponse-phaseresponse", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%93%AA%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#IIRFilterOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-iirfilteroptions%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-IIRFilterOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-iirfilternode%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#dictdef-iirfilteroptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audionodeoptions%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-sequence%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-iirfilteroptions-feedforward", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-sequence%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-iirfilteroptions-feedback", + "https://www.w3.org/TR/webaudio-1.0/#dictionary-iirfilteroptions-members", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-iirfilteroptions%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-iirfilteroptions-feedforward", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-iirfilternode%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createiirfilter-feedforward", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createiirfilter%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-iirfilteroptions-feedback", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-iirfilternode%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createiirfilter-feedback", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createiirfilter%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#IIRFilterNode-filter-definition", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-193-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2925", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2926", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2927", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2928", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2929", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-193", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-194-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2930", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2931", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2932", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2933", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2934", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-194", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createiirfilter%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-iirfilteroptions%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-iirfilternode-iirfilternode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-195-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2935", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2936", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2937", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2938", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2939", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2940", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2941", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2942", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2943", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2944", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2945", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2946", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2947", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2948", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2949", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2950", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2951", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2952", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2953", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2954", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2955", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2956", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2957", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2958", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2959", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2960", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2961", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2962", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2963", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2964", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2965", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2966", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2967", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2968", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2969", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2970", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2971", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2972", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2973", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2974", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2975", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2976", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2977", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2978", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2979", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2980", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2981", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2982", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-195", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-196-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2983", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2984", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2985", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2986", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2987", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-196", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-197-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2988", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2989", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2990", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-197", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-198-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2991", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2992", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2993", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2994", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2995", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-198", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-199-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2996", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2997", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2998", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-199", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-200-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-2999", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3000", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3001", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3002", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3003", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-200", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createiirfilter-feedback%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createiirfilter%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-201-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3004", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3005", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3006", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3007", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3008", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-201", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createiirfilter-feedforward%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createiirfilter%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-202-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3009", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3010", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3011", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3012", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3013", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3014", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3015", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3016", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3017", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3018", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3019", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3020", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3021", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3022", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3023", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3024", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3025", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3026", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3027", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3028", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3029", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3030", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3031", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3032", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3033", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3034", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3035", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3036", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3037", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3038", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3039", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3040", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3041", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3042", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3043", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3044", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3045", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3046", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3047", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3048", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3049", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-202", + "https://www.w3.org/TR/webaudio-1.0/#MediaElementAudioSourceNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediaelementaudiosourcenode%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-MediaElementAudioSourceNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audio%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-video%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-tail-time%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-htmlmediaelement%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-htmlmediaelement%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-htmlmediaelement%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediaelementaudiosourcenode%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-htmlmediaelement%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-createmediaelementsource%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediaelementaudiosourceoptions-mediaelement", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-mediaelementaudiosourceoptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-htmlmediaelement%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-createmediaelementsource%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-htmlmediaelement%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediaelementaudiosourcenode%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediaelementaudiosourcenode%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediaelementaudiosourcenode%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#example-92c31c2c", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#mediaelementaudiosourcenode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode-context-options-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-mediaelementaudiosourceoptions%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode-context-options-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-SameObject%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediaelementaudiosourcenode-mediaelement%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#MediaElementAudioSourceNode-constructors", + "https://www.w3.org/TR/webaudio-1.0/#dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-mediaelementaudiosourcenode-constructor-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediaelementaudiosourcenode%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-associated%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-mediaelementaudiosourcenode-constructor-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediaelementaudiosourcenode%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#MediaElementAudioSourceNode-attributes", + "https://www.w3.org/TR/webaudio-1.0/#dom-mediaelementaudiosourcenode-mediaelement", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediaelementaudiosourcenode%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#MediaElementAudioSourceOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-mediaelementaudiosourceoptions%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-MediaElementAudioSourceOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediaelementaudiosourcenode%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dictdef-mediaelementaudiosourceoptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediaelementaudiosourceoptions-mediaelement%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dictionary-mediaelementaudiosourceoptions-members", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-mediaelementaudiosourceoptions%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-mediaelementaudiosourceoptions-mediaelement", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#MediaElementAudioSourceOptions-security", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediaelementaudiosourcenode%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-scriptprocessornode%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediaelementaudiosourcenode%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-htmlmediaelement%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioDestinationNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamaudiodestinationnode%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-MediaStreamAudioDestinationNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastream%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamtrack%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastream%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamaudiodestinationnode-stream", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastream%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediadevices-getusermedia%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-explicit%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-tail-time%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#mediastreamaudiodestinationnode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode-context-options-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audionodeoptions%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode-context-options-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastream%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamaudiodestinationnode-stream%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioDestinationNode-constructors", + "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamaudiodestinationnode-constructor-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamaudiodestinationnode%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-associated%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamaudiodestinationnode-constructor-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamaudiodestinationnode%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioDestinationNode-attributes", + "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamaudiodestinationnode-stream", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastream%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastream%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamtrack%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioSourceNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamaudiosourcenode%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-MediaStreamAudioSourceNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastream%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-tail-time%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamtrack%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamtrack%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A5%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamtrack%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamtrack%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#mediastreamaudiosourcenode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode-context-options-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-mediastreamaudiosourceoptions", + "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode-context-options-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-SameObject%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastream%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamaudiosourcenode-mediastream", + "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioSourceNode-constructors", + "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamaudiosourceoptions-mediastream", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode-context-options-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastream%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-code-unit", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamaudiosourcenode-input-track-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamaudiosourcenode%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamaudiosourcenode%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastream%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamaudiosourcenode-input-track-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamaudiosourcenode%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastream%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamaudiosourcenode%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamtrackaudiosourcenode%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamaudiosourcenode-constructor-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamaudiosourcenode%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-associated%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamaudiosourcenode-constructor-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamaudiosourcenode%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioSourceNode-attributes", + "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamaudiosourcenode-mediastream", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastream%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastream%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamaudiosourcenode%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#MediaStreamAudioSourceOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-mediastreamaudiosourceoptions%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-MediaStreamAudioSourceOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamaudiosourcenode%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dictdef-mediastreamaudiosourceoptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastream%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamaudiosourceoptions-mediastream%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dictionary-mediastreamaudiosourceoptions-members", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-mediastreamaudiosourceoptions%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamaudiosourceoptions-mediastream", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastream%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#MediaStreamTrackAudioSourceNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamtrackaudiosourcenode%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-MediaStreamTrackAudioSourceNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-tail-time%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamtrackaudiosourceoptions-mediastreamtrack", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamtrackaudiosourceoptions-mediastreamtrack%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#mediastreamtrackaudiosourcenode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode-context-options-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-mediastreamtrackaudiosourceoptions", + "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode-context-options-options", + "https://www.w3.org/TR/webaudio-1.0/#MediaStreamTrackAudioSourceNode-constructors", + "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamtrackaudiosourceoptions-mediastreamtrack%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamtrackaudiosourcenode-constructor-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamtrackaudiosourcenode%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-associated%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamtrackaudiosourcenode-constructor-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamtrackaudiosourcenode%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#MediaStreamTrackAudioSourceOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-mediastreamtrackaudiosourceoptions%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-MediaStreamTrackAudioSourceOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamtrackaudiosourcenode%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dictdef-mediastreamtrackaudiosourceoptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamtrackaudiosourceoptions-mediastreamtrack%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dictionary-mediastreamtrackaudiosourceoptions-members", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-mediastreamtrackaudiosourceoptions%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-mediastreamtrackaudiosourceoptions-mediastreamtrack", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#OscillatorNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-oscillatornode%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-OscillatorNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-oscillatornode%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-periodicwave%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioscheduledsourcenode-start%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for---nyquist-frequency%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for---nyquist-frequency%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for---nyquist-frequency%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatornode-frequency", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatornode-detune", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-a-rate%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-compound-parameter%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#computedoscfrequency", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-computedoscfrequency", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-nominal-range%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for---nyquist-frequency%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for---nyquist-frequency%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofoutputs%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcountmode%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-tail-time%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#enumdef-oscillatortype", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatortype-sine", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatortype-square", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatortype-sawtooth", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatortype-triangle", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatortype-custom", + "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatortype-sine", + "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatortype-square", + "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatortype-sawtooth", + "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatortype-triangle", + "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatortype-custom", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#oscillatornode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioscheduledsourcenode%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatornode-oscillatornode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatornode-oscillatornode-context-options-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-oscillatoroptions", + "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatornode-oscillatornode-context-options-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-oscillatortype", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatornode-type", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatornode-frequency%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatornode-detune%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatornode-setperiodicwave", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-periodicwave%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatornode-setperiodicwave-periodicwave-periodicwave", + "https://www.w3.org/TR/webaudio-1.0/#OscillatorNode-constructors", + "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatornode-oscillatornode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A6%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatornode-oscillatornode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatornode-constructor-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A6%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-oscillatornode%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-associated%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatornode-constructor-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-oscillatornode%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#OscillatorNode-attributes", + "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatornode-detune", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatornode-frequency%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-a-rate%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-compound-parameter%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatornode-frequency%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-computedoscfrequency%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatornode-frequency%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-203-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3050", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3051", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3052", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3053", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3054", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-203", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-204-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3055", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3056", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3057", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3058", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-204", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-205-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3059", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3060", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3061", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3062", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3063", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3064", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3065", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3066", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3067", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3068", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3069", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3070", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3071", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3072", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3073", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3074", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3075", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-205", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatornode-frequency", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-a-rate%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-compound-parameter%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatornode-detune%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-computedoscfrequency%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-nominal-range%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for---nyquist-frequency%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for---nyquist-frequency%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for---nyquist-frequency%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for---nyquist-frequency%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatornode-type", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-oscillatortype%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatortype-custom%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatornode-setperiodicwave%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatortype-custom%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatortype-sine%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#OscillatorNode-methods", + "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatornode-setperiodicwave", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-periodicwave%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatornode-setperiodicwave%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatornode-setperiodicwave-periodicwave", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#OscillatorOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-oscillatoroptions%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-OscillatorOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-oscillatornode%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#dictdef-oscillatoroptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audionodeoptions%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-oscillatortype%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatoroptions-type", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A5%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatoroptions-frequency", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatoroptions-detune", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-periodicwave%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatoroptions-periodicwave", + "https://www.w3.org/TR/webaudio-1.0/#dictionary-oscillatoroptions-members", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-oscillatoroptions%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatoroptions-detune", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-oscillatornode%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatoroptions-frequency", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A6%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-oscillatornode%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatoroptions-periodicwave", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-periodicwave%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-periodicwave%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-oscillatornode%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatoroptions-type%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatortype-custom%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-oscillatoroptions-type", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-oscillatortype%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatoroptions-periodicwave%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatoroptions-periodicwave%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatoroptions-type%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#basic-waveform-phase", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-periodicwave%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwaveconstraints-disablenormalization%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatortype-sine%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-206-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3076", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3077", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3078", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3079", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3080", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3081", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3082", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3083", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3084", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3085", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-206", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatortype-square%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-207-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3086", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3087", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3088", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3089", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3090", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3091", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3092", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3093", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3094", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3095", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3096", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3097", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3098", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3109", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3110", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3111", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3112", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3099", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3100", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3101", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3102", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3103", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3104", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3105", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3106", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3107", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3108", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3113", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3114", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3115", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3116", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3117", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3118", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3119", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3120", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3121", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3122", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3123", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3124", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-207", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-208-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3125", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3126", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3127", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-208", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-209-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3128", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3129", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3130", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3131", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-209", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatortype-sawtooth%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-210-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3132", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3133", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3134", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3135", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3136", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3137", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3138", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3139", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3140", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3141", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3142", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3143", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3144", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3145", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3146", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3147", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3148", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3149", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3150", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3151", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-210", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-211-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3152", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3153", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3154", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-211", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-212-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3155", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3156", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3157", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3158", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-212", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatortype-triangle%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-213-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3159", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3160", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3161", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3162", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3163", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3164", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3165", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3166", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3167", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3168", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3169", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3170", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3171", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3172", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3173", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3174", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3187", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3188", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3189", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3190", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3191", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3192", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3193", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3194", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3195", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3196", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3197", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3198", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3199", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3200", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3201", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3175", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3176", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3177", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3178", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3179", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3180", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3181", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3182", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3183", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3184", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3185", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3186", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3202", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3203", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3204", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3205", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3206", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3207", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3208", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3209", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3210", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3211", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3212", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3213", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3214", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3215", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-213", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-214-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3216", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3217", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3218", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-214", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-215-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3219", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3220", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3221", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3222", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-215", + "https://www.w3.org/TR/webaudio-1.0/#PannerNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pannernode%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-PannerNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-listener%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofinputs%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofoutputs%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-channelcount-constraints%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcountmode%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-clamped-max%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-channelcountmode-constraints%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-tail-time%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-panningmodel%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-panningmodeltype-hrtf%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-actively-processing%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-actively-processing%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-panningmodeltype", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-panningmodeltype-equalpower", + "https://www.w3.org/TR/webaudio-1.0/#enumdef-panningmodeltype", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-panningmodeltype-equalpower%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-panningmodeltype-hrtf%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-panningmodeltype-equalpower", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-a-rate%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#dom-panningmodeltype-hrtf", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-k-rate%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#effective-automation-rate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pannernode%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-panningmodel%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-panningmodel%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-panningmodeltype-hrtf%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-effective-automation-rate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-k-rate%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-effective-automation-rate%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-distancemodeltype", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-distancemodeltype-inverse", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-216-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3223", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3224", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3225", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-216", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-217-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3226", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3227", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3228", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3229", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3230", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3231", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3232", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3233", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3234", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-217", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-refdistance", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-218-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3235", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3236", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3237", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3238", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3239", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3240", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3241", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3242", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3243", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-218", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-maxdistance", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-219-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3244", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3245", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3246", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-219", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-rollofffactor", + "https://www.w3.org/TR/webaudio-1.0/#enumdef-distancemodeltype", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-distancemodeltype-linear", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-distancemodeltype-inverse%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-distancemodeltype-exponential", + "https://www.w3.org/TR/webaudio-1.0/#dom-distancemodeltype-linear", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-220-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3247", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3248", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3249", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3250", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3251", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3252", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3253", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3254", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3255", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3256", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3257", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3258", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3259", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3260", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3261", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3262", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3263", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3264", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3265", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3266", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3267", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3268", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3269", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3270", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3271", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3272", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3273", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3274", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3275", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3276", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3277", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3278", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3279", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3280", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3281", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3282", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3283", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3284", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3285", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3286", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3287", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3288", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3289", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3290", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3291", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3292", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3293", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3294", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3295", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3296", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3297", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3298", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3299", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3300", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3301", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3302", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3303", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3304", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3305", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3306", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3307", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3308", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-220", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-221-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3309", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3310", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3311", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3312", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3313", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3314", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3315", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3316", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3317", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3318", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3319", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3320", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3321", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3322", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3323", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3324", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3325", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3326", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3327", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3328", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3329", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3330", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3331", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3332", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3333", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3334", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3335", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3336", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3337", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3338", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-221", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-222-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3339", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3340", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3341", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3342", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3343", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3344", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3345", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3346", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3347", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3348", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3349", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3350", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3351", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3352", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3353", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3354", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3355", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3356", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3357", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3358", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3359", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3360", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3361", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3362", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3363", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3364", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3365", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3366", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3367", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3368", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-222", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-223-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3369", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3370", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3371", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3372", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3373", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3374", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3375", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3376", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3377", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3378", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3379", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3380", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3381", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3382", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3383", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3384", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3385", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3386", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3387", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-223", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-224-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3388", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3389", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3390", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3391", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3392", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-224", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-225-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3393", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3394", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3395", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-225", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-226-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3396", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3397", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3398", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3399", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3400", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3401", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3402", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3403", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3404", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3405", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3406", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3407", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3408", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3409", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3410", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3411", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3412", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3413", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3414", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3415", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3416", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3417", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3418", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-226", + "https://www.w3.org/TR/webaudio-1.0/#dom-distancemodeltype-inverse", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-227-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3419", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3420", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3421", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3422", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3423", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3424", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3425", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3426", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3427", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3428", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3429", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3430", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3431", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3432", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3433", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3434", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3435", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3436", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3437", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3438", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3439", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3440", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3441", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3442", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3443", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3444", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3445", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3446", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3447", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3448", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3449", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3450", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3451", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3452", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3453", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3454", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3455", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3456", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3457", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3458", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3459", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3460", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3461", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3462", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3463", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-227", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-228-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3464", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3465", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3466", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-228", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-229-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3467", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3468", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3469", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3470", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3471", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3472", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3473", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3474", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3475", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3476", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3477", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3478", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3479", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3480", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3481", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-229", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-230-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3482", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3483", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3484", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3485", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3486", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3487", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3488", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3489", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3490", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3491", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3492", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-230", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-231-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3493", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3494", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3495", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-231", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-232-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3496", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3497", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3498", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-232", + "https://www.w3.org/TR/webaudio-1.0/#dom-distancemodeltype-exponential", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-233-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3499", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3500", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3501", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3502", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3503", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3504", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3505", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3506", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3507", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3508", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3509", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3510", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3511", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3512", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3513", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3514", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3515", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3516", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3517", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3518", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3519", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3520", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3521", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3522", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3523", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3524", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3525", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3526", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3527", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3528", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3529", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3530", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-233", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-234-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3531", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3532", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3533", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-234", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-235-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3534", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3535", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3536", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3537", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3538", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3539", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3540", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3541", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3542", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3543", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3544", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3545", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3546", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3547", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3548", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-235", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-236-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3549", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3550", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3551", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3552", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3553", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3554", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3555", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3556", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3557", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3558", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3559", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-236", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-237-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3560", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3561", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3562", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-237", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-238-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3563", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3564", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3565", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-238", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#pannernode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-pannernode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A6%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-pannernode-context-options-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-panneroptions", + "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-pannernode-context-options-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-panningmodeltype%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-panningmodel%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-positionx", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-positiony", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-positionz", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-orientationx", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-orientationy", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-orientationz", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-distancemodeltype%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-distancemodel", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-refdistance%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A5%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-maxdistance%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-rollofffactor%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-coneinnerangle", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-coneouterangle", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-coneoutergain", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-setposition", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A6%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-setposition-x-y-z-x", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-setposition-x-y-z-y", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A6%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-setposition-x-y-z-z", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-setorientation", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-setorientation-x-y-z-x", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-setorientation-x-y-z-y", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A6%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-setorientation-x-y-z-z", + "https://www.w3.org/TR/webaudio-1.0/#PannerNode-constructors", + "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-pannernode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-pannernode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-constructor-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pannernode%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-associated%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-constructor-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pannernode%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#PannerNode-attributes", + "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-coneinnerangle", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-coneouterangle", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-coneoutergain%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-coneoutergain", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A5%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-coneouterangle%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-distancemodel", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-distancemodeltype%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pannernode%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-distancemodeltype-inverse%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-maxdistance", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-exceptiondef-rangeerror%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-orientationx", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-239-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3566", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3567", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3568", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-239", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam-automation-rate-constraints%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-orientationy", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-240-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3569", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3570", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3571", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-240", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam-automation-rate-constraints%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-orientationz", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-241-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3572", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3573", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3574", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-241", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam-automation-rate-constraints%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-panningmodel", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-panningmodeltype%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pannernode%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-panningmodeltype-equalpower%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-positionx", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-242-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3575", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3576", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3577", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-242", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam-automation-rate-constraints%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-positiony", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-243-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3578", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3579", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3580", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-243", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-positive-single-float%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam-automation-rate-constraints%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-positionz", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-244-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3581", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3582", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3583", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-244", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-negative-single-float%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-most-positive-single-float%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam-automation-rate-constraints%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-refdistance", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-exceptiondef-rangeerror%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-rollofffactor", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A6%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-exceptiondef-rangeerror%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-rollofffactor%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-distancemodel%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-distancemodeltype-linear%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-245-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3584", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3585", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3586", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3587", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3588", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3589", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3590", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-245", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-distancemodeltype-inverse%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-246-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3591", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3592", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3593", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3594", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3595", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3596", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3597", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-246", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-distancemodeltype-exponential%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-247-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3598", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3599", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3600", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3601", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3602", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3603", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3604", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-247", + "https://www.w3.org/TR/webaudio-1.0/#PannerNode-methods", + "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-setorientation", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-orientationx%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-orientationy%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-orientationz%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-orientationx%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-orientationy%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-orientationz%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-setorientation%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-setorientation-x", + "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-setorientation-y", + "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-setorientation-z", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-setposition", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-positionx%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-positiony%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-positionz%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-value%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-positionx%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-positiony%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-positionz%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-listener%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-setposition%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-setposition-x", + "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-setposition-y", + "https://www.w3.org/TR/webaudio-1.0/#dom-pannernode-setposition-z", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#PannerOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-panneroptions%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-PannerOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pannernode%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#dictdef-panneroptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audionodeoptions%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-panningmodeltype%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-panneroptions-panningmodel", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-distancemodeltype%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-panneroptions-distancemodel", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A6%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-panneroptions-positionx", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A6%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-panneroptions-positiony", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A7%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-panneroptions-positionz", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A7%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-panneroptions-orientationx", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A7%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-panneroptions-orientationy", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A7%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-panneroptions-orientationz", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A6%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-panneroptions-refdistance", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-panneroptions-maxdistance", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A6%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-panneroptions-rollofffactor", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-panneroptions-coneinnerangle", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-panneroptions-coneouterangle", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A6%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-panneroptions-coneoutergain", + "https://www.w3.org/TR/webaudio-1.0/#dictionary-pannernode-members", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-panneroptions%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-panneroptions-coneinnerangle", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A6%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-coneinnerangle%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-panneroptions-coneouterangle", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A6%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-coneouterangle%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-panneroptions-coneoutergain", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A7%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-coneoutergain%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-panneroptions-distancemodel", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-distancemodeltype%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-panneroptions-maxdistance", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A7%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-maxdistance%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-panneroptions-orientationx", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A7%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-248-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3605", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3606", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3607", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-248", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-orientationx%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-panneroptions-orientationy", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A7%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-249-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3608", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3609", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3610", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-249", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-orientationy%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-panneroptions-orientationz", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A7%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-250-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3611", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3612", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3613", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-250", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-orientationz%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-panneroptions-panningmodel", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-panningmodeltype%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-panneroptions-positionx", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A7%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-251-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3614", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3615", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3616", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-251", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-positionx%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-panneroptions-positiony", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A7%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-252-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3617", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3618", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3619", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-252", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-positiony%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-panneroptions-positionz", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A7%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-253-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3620", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3621", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3622", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-253", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-positionz%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-panneroptions-refdistance", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A7%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-refdistance%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-panneroptions-rollofffactor", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A7%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-rollofffactor%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#panner-channel-limitations", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-stereopannernode%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pannernode%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#PeriodicWave", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-periodicwave%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-PeriodicWave", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-periodicwave%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-oscillatornode%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dfn-conforming-implementation%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-periodicwave%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#periodicwave", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwave-periodicwave", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A6%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#dom-periodicwave-periodicwave-context-options-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-periodicwaveoptions%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-periodicwave-periodicwave-context-options-options", + "https://www.w3.org/TR/webaudio-1.0/#PeriodicWave-constructors", + "https://www.w3.org/TR/webaudio-1.0/#dom-periodicwave-periodicwave", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-periodicwave%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-periodicwave-real-slot", + "https://www.w3.org/TR/webaudio-1.0/#dom-periodicwave-imag-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#dom-periodicwave-normalize-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwave-periodicwave-context-options-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwaveoptions-real%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwaveoptions-imag%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwaveoptions-real%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwaveoptions-imag%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-indexsizeerror%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwave-real-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwave-imag-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwaveoptions-real%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwaveoptions-real%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwave-real-slot%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwaveoptions-imag%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwave-imag-slot%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwaveoptions-real%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwaveoptions-real%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-indexsizeerror%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwave-real-slot%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwave-imag-slot%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwaveoptions-real%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwaveoptions-real%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwave-real-slot%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwave-imag-slot%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwaveoptions-imag%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwaveoptions-imag%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-indexsizeerror%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwave-real-slot%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwave-imag-slot%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwaveoptions-real%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwaveoptions-imag%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwave-imag-slot%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwave-real-slot%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwave-real-slot%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwave-imag-slot%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwave-imag-slot%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-periodicwave%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-oscillatornode%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatortype-sine%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwave-real-slot%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwave-imag-slot%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwave-normalize-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwaveconstraints-disablenormalization%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-periodicwaveconstraints%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-periodicwaveoptions%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwave-periodicwave%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-periodicwave-constructor-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A6%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-periodicwave%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-associated%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A6%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-periodicwave%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A6%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#dom-periodicwave-constructor-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-periodicwave%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#PeriodicWaveConstraints", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-periodicwaveconstraints%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-PeriodicWaveConstraints", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-periodicwaveconstraints%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dictdef-periodicwaveconstraints", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-boolean%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwaveconstraints-disablenormalization%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dictionary-periodicwaveconstraints-members", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-periodicwaveconstraints%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-periodicwaveconstraints-disablenormalization", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-boolean%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#PeriodicWaveOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-periodicwaveoptions%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-PeriodicWaveOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-periodicwaveoptions%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwaveoptions-real%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwaveoptions-imag%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-periodicwave%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-oscillatornode%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatornode-type%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatortype-sine%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#dictdef-periodicwaveoptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-periodicwaveconstraints%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-sequence%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A8%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwaveoptions-real%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-sequence%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A8%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwaveoptions-imag%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#dictionary-periodicwaveoptions-members", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-periodicwaveoptions%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-periodicwaveoptions-imag", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A8%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwaveoptions-imag%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#dom-periodicwaveoptions-real", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A8%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwaveoptions-real%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#waveform-generation", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createperiodicwave%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-periodicwave%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-254-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3623", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3624", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3625", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-254", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-255-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3626", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3627", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3628", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-255", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwave-real-slot%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwave-imag-slot%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-256-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3629", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3630", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3631", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-256", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-257-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3632", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3633", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3634", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3635", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3636", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3637", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-257", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-258-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3638", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3639", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3640", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3641", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3642", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3643", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3644", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3645", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3646", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3647", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3648", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3649", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3650", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3651", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3652", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3653", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3654", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3655", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3656", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3657", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3658", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3659", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3660", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3661", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3662", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3663", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3664", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3665", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3666", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3667", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3668", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3669", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3670", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3671", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3672", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3673", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3674", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3675", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3676", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3677", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3678", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3679", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3680", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-258", + "https://www.w3.org/TR/webaudio-1.0/#waveform-normalization", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-periodicwave-normalize-slot%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-periodicwave%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-259-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3681", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3682", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3683", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3684", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3685", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3686", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3687", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3688", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3689", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3690", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3691", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3692", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3693", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3694", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3695", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3696", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3697", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3698", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3699", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3700", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3701", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3702", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3703", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3704", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3705", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3706", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3707", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3708", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3709", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3710", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3711", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3712", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3713", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3714", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3715", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3716", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3717", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3718", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3719", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3720", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3721", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3722", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3723", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3724", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3725", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3726", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3727", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3728", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3729", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3730", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3731", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3732", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3733", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-259", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-260-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3734", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3735", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3736", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-260", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-261-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3737", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3738", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3739", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3740", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3741", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3742", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3743", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3744", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3745", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3746", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-261", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-262-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3747", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3748", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3749", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-262", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-263-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3750", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3751", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3752", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3753", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3754", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3755", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3756", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3757", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3758", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3759", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3760", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3761", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3762", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3763", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3764", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3765", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3766", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3767", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3768", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3769", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3770", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3771", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3772", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3773", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3774", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3775", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3776", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3777", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3778", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3779", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3780", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-263", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-264-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3781", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3782", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3783", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3784", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3785", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3786", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3787", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3788", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3789", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3790", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-264", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-265-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3791", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3792", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3793", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3794", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3795", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3796", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3797", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3798", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3799", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3800", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3801", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3802", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3803", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3804", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3805", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3806", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3807", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3808", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3809", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3810", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3811", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3812", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-265", + "https://www.w3.org/TR/webaudio-1.0/#oscillator-coefficients", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-periodicwave%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-periodicwave%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-266-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3813", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3814", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3815", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-266", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-267-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3816", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3817", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3818", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-267", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createperiodicwave%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-268-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3819", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3820", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3821", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3822", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3823", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3824", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3825", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3826", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-268", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-269-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3827", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3828", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3829", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-269", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-270-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3830", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3831", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3832", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3833", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3834", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3835", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3836", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3837", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-270", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-271-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3838", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3839", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3840", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3841", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3842", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3843", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-271", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-272-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3844", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3845", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3846", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3847", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3848", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-272", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatortype-sine%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-273-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3849", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3850", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3851", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3852", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3853", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3854", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3855", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3856", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3857", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3858", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3859", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3860", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3861", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3870", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3871", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3872", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3862", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3863", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3864", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3865", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3866", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3867", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3868", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3869", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3873", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3874", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3875", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3876", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3877", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3878", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-273", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatortype-square%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-274-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3879", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3880", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3881", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3882", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3883", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3884", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3885", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3886", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3887", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3888", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3889", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3890", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3891", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3892", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3893", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3894", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3895", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3896", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3897", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3898", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3899", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3900", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3901", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-274", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatortype-sawtooth%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-275-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3902", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3903", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3904", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3905", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3906", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3907", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3908", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3909", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3910", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3911", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3912", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3913", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3914", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3915", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3916", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3917", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3918", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3919", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3920", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3921", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3922", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3923", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3924", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3925", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-275", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oscillatortype-triangle%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-276-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3926", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3927", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3928", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3929", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3930", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3931", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3932", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3933", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3934", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3935", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3936", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3937", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3938", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3939", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3940", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3941", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3942", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3943", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3944", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3945", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3946", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3947", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3948", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3949", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3950", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3951", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-276", + "https://www.w3.org/TR/webaudio-1.0/#ScriptProcessorNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-scriptprocessornode%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-ScriptProcessorNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofinputs%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofoutputs%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-channelcount-constraints%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcountmode%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-explicit%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-channelcountmode-constraints%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-tail-time%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-scriptprocessornode%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-buffersize%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-scriptprocessornode-onaudioprocess%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-scriptprocessornode-onaudioprocess%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-scriptprocessornode%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-scriptprocessornode-buffersize%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createscriptprocessor%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#scriptprocessornode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-eventhandler%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-scriptprocessornode-onaudioprocess%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-long", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-scriptprocessornode-buffersize%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ScriptProcessorNode-attributes", + "https://www.w3.org/TR/webaudio-1.0/#dom-scriptprocessornode-buffersize", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-long%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-scriptprocessornode-onaudioprocess%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#dom-scriptprocessornode-onaudioprocess", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-eventhandler%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#termref-for-eventhandler%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-scriptprocessornode-onaudioprocess%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-scriptprocessornode%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioprocessingevent%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#StereoPannerNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-stereopannernode%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-StereoPannerNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofinputs%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofoutputs%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-channelcount-constraints%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcountmode%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-clamped-max%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-channelcountmode-constraints%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelinterpretation-speakers%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-tail-time%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#stereopannernode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A5%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-stereopannernode-stereopannernode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A7%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#dom-stereopannernode-stereopannernode-context-options-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-stereopanneroptions", + "https://www.w3.org/TR/webaudio-1.0/#dom-stereopannernode-stereopannernode-context-options-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-stereopannernode-pan", + "https://www.w3.org/TR/webaudio-1.0/#StereoPannerNode-constructors", + "https://www.w3.org/TR/webaudio-1.0/#dom-stereopannernode-stereopannernode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A7%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-stereopannernode-stereopannernode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-stereopannernode-constructor-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A7%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-stereopannernode%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-associated%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-stereopannernode-constructor-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-stereopannernode%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#StereoPannerNode-attributes", + "https://www.w3.org/TR/webaudio-1.0/#dom-stereopannernode-pan", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-defaultvalue%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-minvalue%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-maxvalue%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#StereoPannerOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-stereopanneroptions%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-StereoPannerOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-stereopannernode%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#dictdef-stereopanneroptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audionodeoptions%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A8%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-stereopanneroptions-pan", + "https://www.w3.org/TR/webaudio-1.0/#dictionary-stereopanneroptions-members", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-stereopanneroptions%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-stereopanneroptions-pan", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A8%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-stereopannernode-pan%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#StereoPanner-channel-limitations", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-stereopannernode%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelsplitternode%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-gainnode%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-channelmergernode%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#WaveShaperNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-waveshapernode%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-WaveShaperNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-waveshapernode%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofinputs%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofoutputs%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcountmode%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-max%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelinterpretation-speakers%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-tail-time%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-tail-time%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-waveshapernode-oversample", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oversampletype-2x", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oversampletype-4x", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-tail-time%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#enumdef-oversampletype", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oversampletype-none", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oversampletype-2x%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oversampletype-4x%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-oversampletype-none", + "https://www.w3.org/TR/webaudio-1.0/#dom-oversampletype-2x", + "https://www.w3.org/TR/webaudio-1.0/#dom-oversampletype-4x", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#waveshapernode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-waveshapernode-waveshapernode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A7%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-waveshapernode-waveshapernode-context-options-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-waveshaperoptions", + "https://www.w3.org/TR/webaudio-1.0/#dom-waveshapernode-waveshapernode-context-options-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-waveshapernode-curve", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-oversampletype", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-waveshapernode-oversample%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#WaveShaperNode-constructors", + "https://www.w3.org/TR/webaudio-1.0/#dom-waveshapernode-waveshapernode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A7%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#dom-waveshapernode-curve-set-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-waveshapernode%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-waveshapernode-waveshapernode-context-options-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-waveshaperoptions-curve", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-waveshapernode-curve-set-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-waveshapernode-waveshapernode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-waveshapernode-constructor-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A7%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-waveshapernode%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-associated%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-waveshapernode-constructor-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-waveshapernode%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#WaveShaperNode-attributes", + "https://www.w3.org/TR/webaudio-1.0/#dom-waveshapernode-curve", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-waveshapernode-curve%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-waveshapernode-curve%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-277-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3952", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3953", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3954", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-277", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-278-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3955", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3956", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3957", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-278", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-279-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3958", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3959", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3960", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3961", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3962", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-279", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-280-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3963", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3964", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3965", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-280", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-waveshapernode-curve%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-281-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3966", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3967", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3968", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-281", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-waveshapernode-curve%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-282-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3969", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3970", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3971", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3972", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3973", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3974", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3990", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3991", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3992", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4000", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4001", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4002", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3975", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3976", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3977", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3978", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3979", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3980", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3981", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3982", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3983", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3984", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3985", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3986", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3987", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3988", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3989", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3993", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3994", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3995", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3996", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3997", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3998", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-3999", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4003", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4004", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4005", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4006", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4007", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4008", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4009", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-282", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-283-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4010", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4011", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4012", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4013", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4014", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4015", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4016", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4017", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4018", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4019", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4020", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4021", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4022", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4023", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4024", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4025", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4026", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4027", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4033", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4034", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4035", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4036", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4037", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4038", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4039", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4040", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4041", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4049", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4050", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4051", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4052", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4053", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4054", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4055", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4056", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4057", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4058", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4059", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4060", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4061", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4062", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4063", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4064", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4065", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4066", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4067", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4068", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4028", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4029", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4030", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4031", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4032", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4042", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4043", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4044", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4045", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4046", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4047", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4048", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4069", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4070", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4071", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4072", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4073", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4074", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4075", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4076", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4077", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4078", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4079", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4080", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4081", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4082", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-283", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-waveshapernode%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-waveshapernode-curve%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-waveshapernode-curve%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-waveshapernode-curve-set-slot%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-waveshapernode-curve-set-slot%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-waveshapernode-curve%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#dom-waveshapernode-oversample", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-oversampletype%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oversampletype-none%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oversampletype-2x%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oversampletype-4x%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oversampletype-4x%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oversampletype-2x%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-oversampletype-4x%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-render-quantum%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#WaveShaperOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-waveshaperoptions%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-WaveShaperOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-waveshapernode%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#dictdef-waveshaperoptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audionodeoptions%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-sequence%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A8%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-waveshaperoptions-curve%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-oversampletype%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-waveshaperoptions-oversample", + "https://www.w3.org/TR/webaudio-1.0/#dictionary-waveshaperoptions-members", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-waveshaperoptions%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-waveshaperoptions-curve", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A8%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#dom-waveshaperoptions-oversample", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-oversampletype%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#AudioWorklet", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworklet%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-AudioWorklet%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-SecureContext%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#audioworklet", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-worklet", + "https://www.w3.org/TR/webaudio-1.0/#AudioWorklet-concepts", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworklet%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-rendering-thread%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A6%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A6%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletglobalscope%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A7%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworklet%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworklet%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-worklet-global-scope-type", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletglobalscope%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworklet%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-worklet-destination-type", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-worklet-addmodule", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletglobalscope%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworklet%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#node-name-to-parameter-descriptor-map", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-node-name-to-processor-constructor-map", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-parameterdescriptors", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletglobalscope-registerprocessor", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-rendering-thread%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-worklet-addmodule%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-audioworklet%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#example-d0db141d", + "https://www.w3.org/TR/webaudio-1.0/#example-885ab32a", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletglobalscope%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletGlobalScope", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletglobalscope%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-AudioWorkletGlobalScope", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-rendering-thread%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletglobalscope%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletglobalscope%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-terminate-a-worklet-global-scope", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletglobalscope%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#node-name-to-processor-constructor-map", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-callbackdef-audioworkletprocessorconstructor", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletglobalscope-registerprocessor%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#pending-processor-construction-data", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pending-processor-construction-data", + "https://www.w3.org/TR/webaudio-1.0/#pending-processor-construction-data-node-reference", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#pending-processor-construction-data-transferred-port", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-messageport", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletglobalscope%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletglobalscope%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A7%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#callbackdef-audioworkletprocessorconstructor", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-object", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletprocessorconstructor-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Global", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-worklet%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworklet%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#audioworkletglobalscope", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-workletglobalscope", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletglobalscope-registerprocessor%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-DOMString%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletglobalscope-registerprocessor-name-processorctor-name", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-callbackdef-audioworkletprocessorconstructor%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletglobalscope-registerprocessor-name-processorctor-processorctor", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long-long", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletglobalscope-currentframe", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A7%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletglobalscope-currenttime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A8%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletglobalscope-samplerate", + "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletGlobalScope-attributes", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletglobalscope-currentframe", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long-long%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-current-frame-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A7%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletglobalscope-currenttime", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A7%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A7%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-thread%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletglobalscope-samplerate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A8%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A8%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletGlobalScope-methods", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletglobalscope-registerprocessor", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletglobalscope-registerprocessor%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-node-name-to-processor-constructor-map%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-exceptiondef-typeerror", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-exceptiondef-typeerror%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A5%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#steps-parameterDescriptorSequence", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparamdescriptor-name", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparamdescriptor-defaultvalue", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparamdescriptor-minvalue", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparamdescriptor-maxvalue", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-node-name-to-processor-constructor-map%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletglobalscope%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-node-name-to-parameter-descriptor-map", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A8%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletglobalscope-registerprocessor%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletglobalscope-registerprocessor-name-processorctor-name", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletglobalscope-registerprocessor-name-processorctor-processorctor", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletProcessor-instantiation", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-struct", + "https://www.w3.org/TR/webaudio-1.0/#processor-construction-data", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-struct%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-struct-item", + "https://www.w3.org/TR/webaudio-1.0/#processor-construction-data-name", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-DOMString%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-node-name-to-processor-constructor-map%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#processor-construction-data-node", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#processor-construction-data-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audioworkletnodeoptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletnode-audioworkletnode", + "https://www.w3.org/TR/webaudio-1.0/#processor-construction-data-port", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-messageport%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletnode-port", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletglobalscope%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-rendering-thread%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#invoking-processor-constructor", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-processor-construction-data", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-thread%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-processor-construction-data-name", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-processor-construction-data-node", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-processor-construction-data-port", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-processor-construction-data-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-structureddeserialize", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-structureddeserialize%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletglobalscope%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-node-name-to-processor-constructor-map%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pending-processor-construction-data-node-reference", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pending-processor-construction-data-transferred-port", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletglobalscope%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pending-processor-construction-data%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-construct-a-callback-function", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-queue-a-task", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-thread%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-concept-event-fire%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-errorevent", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pending-processor-construction-data%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-AudioWorkletNode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A6%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-thread%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A8%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofinputs%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofoutputs%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcount%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcountmode%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelcountmode-max%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelinterpretation-speakers%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-tail-time%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-tail-time%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#active-source", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A8%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#audioparammap", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-DOMString%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-SecureContext%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#audioworkletnode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletnode-audioworkletnode%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A8%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletnode-audioworkletnode-context-name-options-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-DOMString%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletnode-audioworkletnode-context-name-options-name", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audioworkletnodeoptions%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletnode-audioworkletnode-context-name-options-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparammap", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletnode-parameters", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-messageport%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletnode-port%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-eventhandler%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletnode-onprocessorerror", + "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletNode-constructors", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletnode-audioworkletnode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletnode-audioworkletnode%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletnode-constructor-context", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A8%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-associated%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletnode-constructor-name", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A8%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-node-name-to-parameter-descriptor-map%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletnode-constructor-options", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletnode-audioworkletnode%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A8%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-node-name-to-parameter-descriptor-map%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-this%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-messagechannel", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-messagechannel-port1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-messagechannel-port2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-structuredserializewithtransfer", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-structuredserialize", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletnode-port%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-node-name-to-parameter-descriptor-map%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparammap%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparamdescriptor-name%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparamdescriptor-automationrate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparamdescriptor-defaultvalue%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparamdescriptor-minvalue%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparamdescriptor-maxvalue%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletnodeoptions-parameterdata", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletnodeoptions-parameterdata%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-value%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletnode-parameters%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-queuing%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletprocessor-audioworkletprocessor", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-processor-construction-data%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletNode-attributes", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletnode-onprocessorerror", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-eventhandler%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-concept-event-fire%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletnode-parameters", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparammap%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audioparamdescriptor", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletnode-port", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-messageport%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-messageport%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletnode-port%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-messageport-close", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-messagechannel%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletNodeOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audioworkletnodeoptions%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-AudioWorkletNodeOptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audioworkletnodeoptions%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dictdef-audioworkletnodeoptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audionodeoptions%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletnodeoptions-numberofinputs", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletnodeoptions-numberofoutputs", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-sequence%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletnodeoptions-outputchannelcount", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-record", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-DOMString%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A7%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletnodeoptions-parameterdata%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-object%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletnodeoptions-processoroptions", + "https://www.w3.org/TR/webaudio-1.0/#dictionary-audioworkletnodeoptions-members", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audioworkletnodeoptions%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletnodeoptions-numberofinputs", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A6%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofinputs%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletnodeoptions-numberofoutputs", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-unsigned-long%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A6%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-numberofoutputs%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletnodeoptions-outputchannelcount", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletnodeoptions-parameterdata", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-DOMString%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-double%E2%91%A7%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-value%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletnodeoptions-processoroptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-object%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#configuring-channels-with-audioworkletnodeoptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audioworkletnodeoptions%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audioworkletnodeoptions%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#configure-with-audioworkletnodeoptions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletnodeoptions-numberofinputs%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletnodeoptions-numberofoutputs%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletnodeoptions-outputchannelcount%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dfn-present", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletnodeoptions-outputchannelcount%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-notsupportederror%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletnodeoptions-outputchannelcount%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletnodeoptions-numberofoutputs%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-indexsizeerror%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletnodeoptions-numberofinputs%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletnodeoptions-numberofoutputs%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletnodeoptions-outputchannelcount%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletnodeoptions-outputchannelcount%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletnodeoptions-outputchannelcount%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dfn-present%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletnodeoptions-numberofinputs%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletnodeoptions-numberofoutputs%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-computednumberofchannels%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelcountmode%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletProcessor", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-AudioWorkletProcessor", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-rendering-thread%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletglobalscope%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-Exposed%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#audioworkletprocessor", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletprocessor-audioworkletprocessor%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-messageport%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletprocessor-port", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocess-callback-parameters", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-boolean%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-frozen-array", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-frozen-array%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletprocesscallback-inputs", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-frozen-array%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-frozen-array%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletprocesscallback-outputs", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-object%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletprocesscallback-parameters", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletprocessor-node-reference-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletprocessor-callable-process-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-process", + "https://www.w3.org/TR/webaudio-1.0/#AudioWorketProcessor-constructors", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletprocessor-audioworkletprocessor", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-rendering-thread%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pending-processor-construction-data-node-reference%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pending-processor-construction-data%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletglobalscope%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-exceptiondef-typeerror%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-this%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletprocessor-node-reference-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletprocessor-callable-process-slot%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pending-processor-construction-data-transferred-port%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pending-processor-construction-data%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletprocessor-port%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pending-processor-construction-data%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#AudioWorkletProcessor-attributes", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioworkletprocessor-port", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-messageport%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-messageport%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletprocessor-port%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-messageport-close%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-messagechannel%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#callback-audioworketprocess-callback", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocess-callback-parameters%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocess-callback-parameters%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#process", + "https://www.w3.org/TR/webaudio-1.0/#parameterdescriptors", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audioparamdescriptor%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-process%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-process%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-actively-processing%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-tail-time%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-process%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletglobalscope-currenttime%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-process%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-process%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-undefined%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#example-1d246ea2", + "https://www.w3.org/TR/webaudio-1.0/#audioworkletprocess-callback-parameters", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocess-callback-parameters%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocess-callback-parameters%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocess-callback-parameters%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletprocesscallback-inputs", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletprocesscallback-outputs", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletprocesscallback-inputs%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletprocesscallback-outputs%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletprocesscallback-inputs%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-frozen-array%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-frozen-array%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-284-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4083", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4084", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4085", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-284", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-285-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4086", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4087", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4088", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-285", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-computednumberofchannels%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-actively-processing%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A6%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-286-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4089", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4090", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4091", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-286", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletprocesscallback-outputs%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-frozen-array%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-frozen-array%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-287-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4092", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4093", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4094", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-287", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-288-Frame", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4095", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4096", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Span-4097", + "https://www.w3.org/TR/webaudio-1.0/#MathJax-Element-288", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-computednumberofchannels%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletprocesscallback-parameters", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-object%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-ordered-map", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-frozen-array%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-computedvalue%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-render-quantum%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-render-quantum%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-ordered-map%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-ordered-map%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletprocesscallback-parameters%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#AudioParamDescriptor", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audioparamdescriptor%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-AudioParamDescriptor", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audioparamdescriptor%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#dictdef-audioparamdescriptor", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-DOMString%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparamdescriptor-name%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparamdescriptor-defaultvalue%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparamdescriptor-minvalue%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparamdescriptor-maxvalue%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-automationrate%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparamdescriptor-automationrate%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#dictionary-audioparamdescriptor-members", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dictdef-audioparamdescriptor%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparamdescriptor-automationrate", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-automationrate%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparamdescriptor-defaultvalue", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparamdescriptor-maxvalue", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparamdescriptor-minvalue", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#dom-audioparamdescriptor-name", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-DOMString%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#AudioWorklet-Sequence", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworklet%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworklet%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletglobalscope%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletglobalscope%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletglobalscope%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-worklet-addmodule%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#AudioWorklet-Examples", + "https://www.w3.org/TR/webaudio-1.0/#the-bitcrusher-node", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A5%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-a-rate%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#example-06f3f4b7", + "https://www.w3.org/TR/webaudio-1.0/#example-18f7f42a", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-invalidstateerror%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#vu-meter-mode", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A7%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#example-b29112dd", + "https://www.w3.org/TR/webaudio-1.0/#example-55c4a817", + "https://www.w3.org/TR/webaudio-1.0/#example-2d1abf00", + "https://www.w3.org/TR/webaudio-1.0/#processing-model", + "https://www.w3.org/TR/webaudio-1.0/#processing-model-background", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A7%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#control-thread-and-rendering-thread", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-thread%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-rendering-thread%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#control-thread", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A8%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#rendering-thread", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-thread%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-thread%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-rendering-thread%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-thread%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-rendering-thread%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-message%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#control-message-queue", + "https://www.w3.org/TR/webaudio-1.0/#control-message", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-rendering-thread%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#queuing", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-message-queue", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A8%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffersourcenode%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-message%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-message-queue%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A0%E2%93%AA%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-message%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-message-queue%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#oldest-message", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-message-queue%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#swap", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-message-queue%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-message-queue%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-message-queue%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-message%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-message%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-message%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#asynchronous-operations", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A7%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-thread%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-rendering-thread%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A7%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A0%E2%93%AA%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-thread%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-message%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-rendering-thread%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-message-queue%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-rendering-thread%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#rendering-loop", + "https://www.w3.org/TR/webaudio-1.0/#render-quantum", + "https://www.w3.org/TR/webaudio-1.0/#render-quantum-size", + "https://www.w3.org/TR/webaudio-1.0/#atomically", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-atomically%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A0%E2%93%AA%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-message-queue%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-rendering-thread%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-message-queue%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-message-queue%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#baseaudiocontext-associated-task-queue", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext-associated-task-queue", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A0%E2%93%AA%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#rendering-initialization", + "https://www.w3.org/TR/webaudio-1.0/#dom-baseaudiocontext-current-frame-slot", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A0%E2%93%AA%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#rendering-a-graph", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-message-queue%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-message-queue%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-atomically%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-swap", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-message-queue%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-oldest-message", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-oldest-message%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A0%E2%93%AA%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext-associated-task-queue%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A0%E2%93%AA%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext-associated-task-queue%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A0%E2%93%AA%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A7%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A0%E2%93%AA%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A7%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A7%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A0%E2%93%AA%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delaynode%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delaynode%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A7%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delaynode%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delaynode%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delaywriter%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delayreader%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mute", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A7%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-visit", + "https://www.w3.org/TR/webaudio-1.0/#visit", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A7%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-visit%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A8%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A8%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-visit%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A8%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A8%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A8%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-available-for-reading", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A8%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#input-audioparam-buffer", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A5%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-queuing%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-current-value-slot%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A8%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A8%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-available-for-reading%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A8%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A0%E2%91%A8%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#input-buffer", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%93%AA%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%93%AA%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-source-node%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-computing-a-block-of-audio", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-available-for-reading%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%93%AA%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletprocessor%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-prepare-to-run-script", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-current-settings-object", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-prepare-to-run-a-callback", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-current-settings-object%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletprocessor-callable-process-slot%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletprocesscallback-inputs%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletprocesscallback-outputs%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletprocesscallback-parameters%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-computing-a-block-of-audio%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletprocesscallback-outputs%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-available-for-reading%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-promise%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletglobalscope%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-active-source%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#audio-worklet-render-return", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-clean-up-after-running-a-callback", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-current-settings-object%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-clean-up-after-running-script", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-current-settings-object%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioworkletprocessor-callable-process-slot%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-active-source%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-available-for-reading%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-queue-a-task%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-control-thread%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-concept-event-fire%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-errorevent%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%93%AA%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-destination-node", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-recording-the-input", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%93%AA%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-processing-input-buffer", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-input-buffer", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-available-for-reading%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-atomically%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-current-frame-slot%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-render-quantum-size", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-current-frame-slot%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-perform-a-microtask-checkpoint", + "https://www.w3.org/TR/webaudio-1.0/#mute", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%93%AA%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#available-for-reading", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%93%AA%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%93%AA%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%93%AA%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#recording-the-input", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%93%AA%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#computing-a-block-of-audio", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#processing-input-buffer", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-input-buffer%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#unloading-a-document", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A0%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-pending-promises-slot%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-baseaudiocontext-decoding-thread%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-queuing%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-close%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-offlineaudiocontext%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#DynamicLifetime", + "https://www.w3.org/TR/webaudio-1.0/#dynamic-lifetime-background", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffersourcenode%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffersourcenode%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#dynamic-lifetime-example", + "https://www.w3.org/TR/webaudio-1.0/#example-9dbf5ad3", + "https://www.w3.org/TR/webaudio-1.0/#channel-up-mixing-and-down-mixing", + "https://www.w3.org/TR/webaudio-1.0/#mixing-rules", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mixing-rules", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#up-mixing", + "https://www.w3.org/TR/webaudio-1.0/#down-mixing", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-computednumberofchannels%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-computednumberofchannels%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-up-mixing", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-down-mixing", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-computednumberofchannels%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-channelinterpretation%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-up-mixing%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-down-mixing%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ChannelLayouts", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-channelinterpretation-speakers%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-up-mixing%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-down-mixing%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ChannelOrdering", + "https://www.w3.org/TR/webaudio-1.0/#channels-tail-time", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-tail-time%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-tail-time%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delaynode%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dynamicscompressornode%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-tail-time%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-convolvernode%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-convolvernode%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#UpMix-sub", + "https://www.w3.org/TR/webaudio-1.0/#down-mix", + "https://www.w3.org/TR/webaudio-1.0/#ChannelRules-section", + "https://www.w3.org/TR/webaudio-1.0/#example-c5d47e05", + "https://www.w3.org/TR/webaudio-1.0/#audio-signal-values", + "https://www.w3.org/TR/webaudio-1.0/#audio-sample-format", + "https://www.w3.org/TR/webaudio-1.0/#linear-pcm", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-Float32Array%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#audio-values-rendering", + "https://www.w3.org/TR/webaudio-1.0/#Spatialization", + "https://www.w3.org/TR/webaudio-1.0/#Spatialization-background", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pannernode%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-baseaudiocontext%E2%91%A0%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pannernode%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener-forward%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener-up%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pannernode%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pannernode%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#azimuth-elevation", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pannernode%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A6%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-k-rate%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#Spatialization-panning-algorithm", + "https://www.w3.org/TR/webaudio-1.0/#Spatialization-equal-power-panning", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pannernode%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-panningmodel%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-panningmodeltype-equalpower%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-automationrate%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pannernode%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A6%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiolistener%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-automationrate-a-rate%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-a-rate%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#Spatialization-hrtf-panning", + "https://www.w3.org/TR/webaudio-1.0/#stereopanner-algorithm", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-stereopannernode%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-computedvalue%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A6%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-stereopannernode%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#Spatialization-distance-effects", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-distancemodel%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-distancemodel%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-enumdef-distancemodeltype%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pannernode%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#Spatialization-sound-cones", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-coneinnerangle%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-pannernode-coneouterangle%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-pannernode%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#Performance", + "https://www.w3.org/TR/webaudio-1.0/#latency", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioprocessingevent%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-scriptprocessornode%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioworkletnode%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-delaynode%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-biquadfilternode%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-iirfilternode%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-convolvernode%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dynamicscompressornode%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamaudiosourcenode%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamtrackaudiosourcenode%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-mediastreamaudiodestinationnode%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-scriptprocessornode%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-waveshapernode%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#audio-buffer-copying", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-acquire-the-content%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-getchanneldata%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-acquire-the-content%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-getchanneldata%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffersourcenode%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A6%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiobuffer-getchanneldata%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-idl-ArrayBuffer%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-acquire-the-content%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A6%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiobuffer%E2%91%A6%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#audioparam-transitions", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-value%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audioparam%E2%91%A0%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audioparam-settargetattime%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#audio-glitching", + "https://www.w3.org/TR/webaudio-1.0/#priv-sec", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediadevices-getusermedia%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audionode%E2%91%A1%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-analysernode%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-scriptprocessornode%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dynamicscompressornode%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-oscillatornode%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-getoutputtimestamp%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-baselatency%E2%91%A1", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiocontext-outputlatency%E2%91%A4", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediadevices", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-audiocontext%E2%91%A0%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-audiodestinationnode-maxchannelcount%E2%91%A3", + "https://www.w3.org/TR/webaudio-1.0/#ref-for-dom-mediadevices-getusermedia%E2%91%A2", + "https://www.w3.org/TR/webaudio-1.0/#requirements", + "https://www.w3.org/TR/webaudio-1.0/#common-definitions", + "https://www.w3.org/TR/webaudio-1.0/#changes", + "https://www.w3.org/TR/webaudio-1.0/#changes-2021-05-06", + "https://www.w3.org/TR/webaudio-1.0/#changes-2021-01-14", + "https://www.w3.org/TR/webaudio-1.0/#changes-2020-06-11", + "https://www.w3.org/TR/webaudio-1.0/#changestart1", + "https://www.w3.org/TR/webaudio-1.0/#changestart2", + "https://www.w3.org/TR/webaudio-1.0/#changestart3", + "https://www.w3.org/TR/webaudio-1.0/#acks", + "https://www.w3.org/TR/webaudio-1.0/#conformance", + "https://www.w3.org/TR/webaudio-1.0/#conventions", + "https://www.w3.org/TR/webaudio-1.0/#example-ae2b6bc0", + "https://www.w3.org/TR/webaudio-1.0/#conformant-algorithms", + "https://www.w3.org/TR/webaudio-1.0/#conformance-classes", + "https://www.w3.org/TR/webaudio-1.0/#conformant-user-agent", + "https://www.w3.org/TR/webaudio-1.0/#conformant-server", + "https://www.w3.org/TR/webaudio-1.0/#index", + "https://www.w3.org/TR/webaudio-1.0/#index-defined-here", + "https://www.w3.org/TR/webaudio-1.0/#index-defined-elsewhere", + "https://www.w3.org/TR/webaudio-1.0/#term-for-event", + "https://www.w3.org/TR/webaudio-1.0/#term-for-dictdef-eventinit", + "https://www.w3.org/TR/webaudio-1.0/#term-for-eventtarget", + "https://www.w3.org/TR/webaudio-1.0/#term-for-concept-event-fire", + "https://www.w3.org/TR/webaudio-1.0/#term-for-sec-data-blocks", + "https://www.w3.org/TR/webaudio-1.0/#term-for-dom-domhighrestimestamp", + "https://www.w3.org/TR/webaudio-1.0/#term-for-errorevent", + "https://www.w3.org/TR/webaudio-1.0/#term-for-eventhandler", + "https://www.w3.org/TR/webaudio-1.0/#term-for-htmlmediaelement", + "https://www.w3.org/TR/webaudio-1.0/#term-for-messagechannel", + "https://www.w3.org/TR/webaudio-1.0/#term-for-messageport", + "https://www.w3.org/TR/webaudio-1.0/#term-for-structureddeserialize", + "https://www.w3.org/TR/webaudio-1.0/#term-for-structuredserialize", + "https://www.w3.org/TR/webaudio-1.0/#term-for-structuredserializewithtransfer", + "https://www.w3.org/TR/webaudio-1.0/#term-for-worklet", + "https://www.w3.org/TR/webaudio-1.0/#term-for-workletglobalscope", + "https://www.w3.org/TR/webaudio-1.0/#term-for-dom-worklet-addmodule", + "https://www.w3.org/TR/webaudio-1.0/#term-for-concept-document-window", + "https://www.w3.org/TR/webaudio-1.0/#term-for-audio", + "https://www.w3.org/TR/webaudio-1.0/#term-for-clean-up-after-running-a-callback", + "https://www.w3.org/TR/webaudio-1.0/#term-for-clean-up-after-running-script", + "https://www.w3.org/TR/webaudio-1.0/#term-for-dom-messageport-close", + "https://www.w3.org/TR/webaudio-1.0/#term-for-current-settings-object", + "https://www.w3.org/TR/webaudio-1.0/#term-for-fully-active", + "https://www.w3.org/TR/webaudio-1.0/#term-for-perform-a-microtask-checkpoint", + "https://www.w3.org/TR/webaudio-1.0/#term-for-dom-messagechannel-port1", + "https://www.w3.org/TR/webaudio-1.0/#term-for-dom-messagechannel-port2", + "https://www.w3.org/TR/webaudio-1.0/#term-for-prepare-to-run-a-callback", + "https://www.w3.org/TR/webaudio-1.0/#term-for-prepare-to-run-script", + "https://www.w3.org/TR/webaudio-1.0/#term-for-queue-a-task", + "https://www.w3.org/TR/webaudio-1.0/#term-for-concept-relevant-global", + "https://www.w3.org/TR/webaudio-1.0/#term-for-sticky-activation", + "https://www.w3.org/TR/webaudio-1.0/#term-for-terminate-a-worklet-global-scope", + "https://www.w3.org/TR/webaudio-1.0/#term-for-video", + "https://www.w3.org/TR/webaudio-1.0/#term-for-worklet-destination-type", + "https://www.w3.org/TR/webaudio-1.0/#term-for-worklet-global-scope-type", + "https://www.w3.org/TR/webaudio-1.0/#term-for-code-unit", + "https://www.w3.org/TR/webaudio-1.0/#term-for-struct-item", + "https://www.w3.org/TR/webaudio-1.0/#term-for-ordered-map", + "https://www.w3.org/TR/webaudio-1.0/#term-for-struct", + "https://www.w3.org/TR/webaudio-1.0/#term-for-dom-mediadevices", + "https://www.w3.org/TR/webaudio-1.0/#term-for-dom-mediastream", + "https://www.w3.org/TR/webaudio-1.0/#term-for-dom-mediastreamtrack", + "https://www.w3.org/TR/webaudio-1.0/#term-for-idl-ArrayBuffer", + "https://www.w3.org/TR/webaudio-1.0/#term-for-idl-DOMException", + "https://www.w3.org/TR/webaudio-1.0/#term-for-idl-DOMString", + "https://www.w3.org/TR/webaudio-1.0/#term-for-datacloneerror", + "https://www.w3.org/TR/webaudio-1.0/#term-for-encodingerror", + "https://www.w3.org/TR/webaudio-1.0/#term-for-Exposed", + "https://www.w3.org/TR/webaudio-1.0/#term-for-idl-Float32Array", + "https://www.w3.org/TR/webaudio-1.0/#term-for-idl-frozen-array", + "https://www.w3.org/TR/webaudio-1.0/#term-for-Global", + "https://www.w3.org/TR/webaudio-1.0/#term-for-indexsizeerror", + "https://www.w3.org/TR/webaudio-1.0/#term-for-invalidaccesserror", + "https://www.w3.org/TR/webaudio-1.0/#term-for-invalidstateerror", + "https://www.w3.org/TR/webaudio-1.0/#term-for-notsupportederror", + "https://www.w3.org/TR/webaudio-1.0/#term-for-idl-promise", + "https://www.w3.org/TR/webaudio-1.0/#term-for-exceptiondef-rangeerror", + "https://www.w3.org/TR/webaudio-1.0/#term-for-SameObject", + "https://www.w3.org/TR/webaudio-1.0/#term-for-SecureContext", + "https://www.w3.org/TR/webaudio-1.0/#term-for-exceptiondef-typeerror", + "https://www.w3.org/TR/webaudio-1.0/#term-for-idl-Uint8Array", + "https://www.w3.org/TR/webaudio-1.0/#term-for-unknownerror", + "https://www.w3.org/TR/webaudio-1.0/#term-for-a-promise-rejected-with", + "https://www.w3.org/TR/webaudio-1.0/#term-for-idl-boolean", + "https://www.w3.org/TR/webaudio-1.0/#term-for-dfn-conforming-implementation", + "https://www.w3.org/TR/webaudio-1.0/#term-for-construct-a-callback-function", + "https://www.w3.org/TR/webaudio-1.0/#term-for-idl-double", + "https://www.w3.org/TR/webaudio-1.0/#term-for-idl-float", + "https://www.w3.org/TR/webaudio-1.0/#term-for-dfn-get-buffer-source-copy", + "https://www.w3.org/TR/webaudio-1.0/#term-for-dfn-get-buffer-source-reference", + "https://www.w3.org/TR/webaudio-1.0/#term-for-idl-long", + "https://www.w3.org/TR/webaudio-1.0/#term-for-idl-object", + "https://www.w3.org/TR/webaudio-1.0/#term-for-dfn-present", + "https://www.w3.org/TR/webaudio-1.0/#term-for-idl-record", + "https://www.w3.org/TR/webaudio-1.0/#term-for-idl-sequence", + "https://www.w3.org/TR/webaudio-1.0/#term-for-this", + "https://www.w3.org/TR/webaudio-1.0/#term-for-idl-undefined", + "https://www.w3.org/TR/webaudio-1.0/#term-for-idl-unsigned-long", + "https://www.w3.org/TR/webaudio-1.0/#term-for-idl-unsigned-long-long", + "https://www.w3.org/TR/webaudio-1.0/#references", + "https://www.w3.org/TR/webaudio-1.0/#normative", + "https://www.w3.org/TR/webaudio-1.0/#biblio-dom", + "https://www.w3.org/TR/webaudio-1.0/#biblio-ecmascript", + "https://www.w3.org/TR/webaudio-1.0/#biblio-fetch", + "https://www.w3.org/TR/webaudio-1.0/#biblio-hr-time-3", + "https://www.w3.org/TR/webaudio-1.0/#biblio-html", + "https://www.w3.org/TR/webaudio-1.0/#biblio-infra", + "https://www.w3.org/TR/webaudio-1.0/#biblio-mediacapture-streams", + "https://www.w3.org/TR/webaudio-1.0/#biblio-mimesniff", + "https://www.w3.org/TR/webaudio-1.0/#biblio-rfc2119", + "https://www.w3.org/TR/webaudio-1.0/#biblio-webidl", + "https://www.w3.org/TR/webaudio-1.0/#biblio-webrtc", + "https://www.w3.org/TR/webaudio-1.0/#informative", + "https://www.w3.org/TR/webaudio-1.0/#biblio-2dcontext", + "https://www.w3.org/TR/webaudio-1.0/#biblio-mediastream-recording", + "https://www.w3.org/TR/webaudio-1.0/#biblio-webaudio-usecases", + "https://www.w3.org/TR/webaudio-1.0/#biblio-webgl", + "https://www.w3.org/TR/webaudio-1.0/#biblio-xhr", + "https://www.w3.org/TR/webaudio-1.0/#idl-index", + "https://www.w3.org/TR/webaudio-1.0/#back-to-top", + "https://www.w3.org/TR/webaudio-1.0/#mathjax", + "https://www.w3.org/TR/webaudio-1.0/#MathJax_Font_Test" ] } \ No newline at end of file diff --git a/tr/ids/webdriver-bidi.json b/tr/ids/webdriver-bidi.json new file mode 100644 index 000000000000..235ee2ca2d59 --- /dev/null +++ b/tr/ids/webdriver-bidi.json @@ -0,0 +1,3636 @@ +{ + "spec": { + "title": "WebDriver BiDi", + "url": "https://www.w3.org/TR/webdriver-bidi/" + }, + "ids": [ + "https://www.w3.org/TR/webdriver-bidi/#toc-nav", + "https://www.w3.org/TR/webdriver-bidi/#toc-jump", + "https://www.w3.org/TR/webdriver-bidi/#toc-toggle", + "https://www.w3.org/TR/webdriver-bidi/#toc-theme-toggle", + "https://www.w3.org/TR/webdriver-bidi/#title", + "https://www.w3.org/TR/webdriver-bidi/#w3c-state", + "https://www.w3.org/TR/webdriver-bidi/#abstract", + "https://www.w3.org/TR/webdriver-bidi/#sotd", + "https://www.w3.org/TR/webdriver-bidi/#w3c_process_revision", + "https://www.w3.org/TR/webdriver-bidi/#toc", + "https://www.w3.org/TR/webdriver-bidi/#contents", + "https://www.w3.org/TR/webdriver-bidi/#intro", + "https://www.w3.org/TR/webdriver-bidi/#infrastructure", + "https://www.w3.org/TR/webdriver-bidi/#wait-queue", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map", + "https://www.w3.org/TR/webdriver-bidi/#issue-555cee0f", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-in-parallel", + "https://www.w3.org/TR/webdriver-bidi/#awaits", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-wait-queue", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-wait-queue%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#resume", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-wait-queue%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-wait-queue%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-wait-queue%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-awaits", + "https://www.w3.org/TR/webdriver-bidi/#issue-540e1580", + "https://www.w3.org/TR/webdriver-bidi/#protocol", + "https://www.w3.org/TR/webdriver-bidi/#remote-end-definition", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-local-ends", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends", + "https://www.w3.org/TR/webdriver-bidi/#local-end-definition", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-local-ends%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#protocol-definition", + "https://www.w3.org/TR/webdriver-bidi/#issue-40ad1db0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#session", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-sessions", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-sessions%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#bidi-flag", + "https://www.w3.org/TR/webdriver-bidi/#bidi-session", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-sessions%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-bidi-flag", + "https://www.w3.org/TR/webdriver-bidi/#active-bidi-sessions", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-active-sessions", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-bidi-session", + "https://www.w3.org/TR/webdriver-bidi/#protocol-modules", + "https://www.w3.org/TR/webdriver-bidi/#module", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-command", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event", + "https://www.w3.org/TR/webdriver-bidi/#module-module-name", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-command-command-name", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-event-name", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-module-module-name", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-command%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-command%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#extension-modules", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-module-module-name%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-extension-modules", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-command-command-name%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-event-name%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#commands", + "https://www.w3.org/TR/webdriver-bidi/#command", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-local-ends%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-local-ends%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-command%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#command-command-type", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#command-command-name", + "https://www.w3.org/TR/webdriver-bidi/#command-command-parameters", + "https://www.w3.org/TR/webdriver-bidi/#command-result-type", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-bidi-session%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-command-command-parameters", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-command-result-type", + "https://www.w3.org/TR/webdriver-bidi/#static-command", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-local-ends%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-local-ends%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-local-ends%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-local-ends%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#set-of-all-command-names", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-command-command-name%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-extension-modules%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#errors", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code", + "https://www.w3.org/TR/webdriver-bidi/#errors-no-such-client-window", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window", + "https://www.w3.org/TR/webdriver-bidi/#errors-no-such-handle", + "https://www.w3.org/TR/webdriver-bidi/#errors-no-such-history-entry", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-session-history-entry", + "https://www.w3.org/TR/webdriver-bidi/#errors-no-such-intercept", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-network-intercept", + "https://www.w3.org/TR/webdriver-bidi/#errors-no-such-node", + "https://www.w3.org/TR/webdriver-bidi/#errors-no-such-request", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request", + "https://www.w3.org/TR/webdriver-bidi/#errors-no-such-script", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-preload-script", + "https://www.w3.org/TR/webdriver-bidi/#errors-no-such-storage-partition", + "https://www.w3.org/TR/webdriver-bidi/#errors-no-such-user-context", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context", + "https://www.w3.org/TR/webdriver-bidi/#errors-unable-to-close-browser", + "https://www.w3.org/TR/webdriver-bidi/#errors-unable-to-set-cookie", + "https://www.w3.org/TR/webdriver-bidi/#errors-underspecified-storage-partition", + "https://www.w3.org/TR/webdriver-bidi/#errors-unable-to-set-file-input", + "https://www.w3.org/TR/webdriver-bidi/#events", + "https://www.w3.org/TR/webdriver-bidi/#event", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-local-ends%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#event-event-type", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#event-event-name", + "https://www.w3.org/TR/webdriver-bidi/#event-event-parameters", + "https://www.w3.org/TR/webdriver-bidi/#event-remote-end-event-trigger", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-event-type", + "https://www.w3.org/TR/webdriver-bidi/#event-remote-end-subscribe-steps", + "https://www.w3.org/TR/webdriver-bidi/#event-subscribe-priority", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-bidi-session%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#event-global-event-set", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-event-name%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#event-in-the-default-event-set", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-bidi-session%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#event-navigable-event-map", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-event-name%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#event-enabled-navigables", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-navigable-event-map", + "https://www.w3.org/TR/webdriver-bidi/#set-of-sessions-for-which-an-event-is-enabled", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-active-bidi-sessions", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-is-enabled", + "https://www.w3.org/TR/webdriver-bidi/#event-is-enabled", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-shared-workers", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-top", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-navigable-event-map%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-global-event-set", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#obtain-a-set-of-event-names", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-event-name%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-module-module-name%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-event-name%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#transport", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-local-ends%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-command%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-local-ends%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#websocket-listener", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-websocket-listener", + "https://www.w3.org/TR/webdriver-bidi/#listener-host", + "https://www.w3.org/TR/webdriver-bidi/#listener-port", + "https://www.w3.org/TR/webdriver-bidi/#listener-secure-flag", + "https://www.w3.org/TR/webdriver-bidi/#list-of-websocket-resources", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-websocket-listener%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-listener-host", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-listener-port", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-listener-secure-flag", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-websocket-listener%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#active-listeners", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#websocket-connections-not-associated-with-a-session", + "https://www.w3.org/TR/webdriver-bidi/#websocket-connection", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-bidi-session%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#session-websocket-connections", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-websocket-connection", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-bidi-session%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#associated-with-connection", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-session-websocket-connections", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-websocket-connection%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-bidi-session%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-section-4.1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-active-listeners", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-section-4.2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-section-4.2.1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-of-websocket-resources", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-supports-bidi-only-sessions", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-websocket-connections-not-associated-with-a-session", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-session-id-for-a-websocket-resource", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-sessions%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-active-sessions%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-session-id", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-session-websocket-connections%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-section-4.2%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#issue-0dc5e7b6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-section-6.2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-websocket-connection%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-handle-an-incoming-message", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-section-7.1.3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-section-7.1.4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-websocket-connection%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-handle-a-connection-closing", + "https://www.w3.org/TR/webdriver-bidi/#construct-a-websocket-resource-name", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-sessions%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-session-id%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#construct-a-websocket-url", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-websocket-listener%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-sessions%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-construct-a-websocket-resource-name", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-section-3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-listener-host%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-listener-port%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-listener-secure-flag%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#get-a-session-id-for-a-websocket-resource", + "https://www.w3.org/TR/webdriver-bidi/#start-listening-for-a-websocket-connection", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-sessions%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-websocket-listener%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-active-listeners%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-websocket-listener%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-implementation-defined", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-listener-host%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-listener-port%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-listener-secure-flag%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-of-websocket-resources%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-construct-a-websocket-resource-name%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-of-websocket-resources%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-append", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-active-listeners%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-intermediary-nodes", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-endpoint-node", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-endpoint-node%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-listener-host%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#handle-an-incoming-message", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-websocket-connection%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-section-5.2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-send-an-error-response", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-assert", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-scalar-value-string", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-section-8.1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-section-7.1.7", + "https://www.w3.org/TR/webdriver-bidi/#issue-449f8f30", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-section-7.4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-bidi-session%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-associated-with-connection", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-websocket-connections-not-associated-with-a-session%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-parse-a-json-string-to-an-infra-value", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-send-an-error-response%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-active-sessions%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-command-command-name%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-static-command", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-send-an-error-response%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-session-id", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-command-command-parameters%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-send-an-error-response%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-command-result-type%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-command-command-name%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-active-sessions%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-session-id%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-append%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-session-websocket-connections%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-websocket-connections-not-associated-with-a-session%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-an-infra-value-to-json-bytes", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-section-6.1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-all-command-names", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unknown-command", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-send-an-error-response%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#get-related-navigables", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-settings-object", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-relevant-global", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-window", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-relevant-global%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-window", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-node-navigable", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-realm-global", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-workerglobalscope", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-realm-global%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-WorkerGlobalScope-owner-set", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-node-navigable%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#emit-an-event", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-assert%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-size", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-an-infra-value-to-json-bytes%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-iterate", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-session-websocket-connections%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-section-6.1%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#send-an-error-response", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-websocket-connection%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-an-infra-value-to-json-bytes%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-section-6.1%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#handle-a-connection-closing", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-websocket-connection%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-bidi-session%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-associated-with-connection%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-bidi-session%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-associated-with-connection%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-session-websocket-connections%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-websocket-connections-not-associated-with-a-session%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-remove", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-sessions%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#issue-9f7aff26", + "https://www.w3.org/TR/webdriver-bidi/#close-the-websocket-connections", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-session-websocket-connections%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-section-7.1.2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-handle-a-connection-closing%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#establishing", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-websocket-url", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-webdriver-new-session-algorithms", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-getting-properties", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-assert%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-start-listening-for-a-websocket-connection", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-construct-a-websocket-url", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-set-a-property", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-bidi-flag%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-bidi-session%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-http-session", + "https://www.w3.org/TR/webdriver-bidi/#supports-bidi-only-sessions", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-start-listening-for-a-websocket-connection%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#sandbox", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-bidi-session%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#sandbox-map", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-window%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sandboxwindowproxy", + "https://www.w3.org/TR/webdriver-bidi/#sandbox-realm", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-code-realms", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-window%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sandboxproxy", + "https://www.w3.org/TR/webdriver-bidi/#get-or-create-a-sandbox-realm", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-window", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sandbox-map", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sandbox-map%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sandbox-map%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-create-a-sandbox-realm", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#create-a-sandbox-realm", + "https://www.w3.org/TR/webdriver-bidi/#issue-cd353b2b", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sandboxwindowproxy%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#get-a-sandbox-name", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-getting-the-values", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sandbox-map%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#sandbox-proxy", + "https://www.w3.org/TR/webdriver-bidi/#sandboxproxy", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sandboxproxy%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#issue-de7468b6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sandboxproxy%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#unwrapped", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sandboxproxy%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sandboxwindowproxy%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#sandbox-sandboxwindowproxy", + "https://www.w3.org/TR/webdriver-bidi/#sandboxwindowproxy", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-window%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sandboxproxy%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-window%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#issue-5dc87d67", + "https://www.w3.org/TR/webdriver-bidi/#user-contexts", + "https://www.w3.org/TR/webdriver-bidi/#user-context", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-storage-partition", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#issue-f279bf5c", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#user-context-user-context-id", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables", + "https://www.w3.org/TR/webdriver-bidi/#associated-user-context", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-associated-user-context", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-user-contexts", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-associated-user-context%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#issue-155d94b0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-associated-user-context%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-child-navigable", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-associated-user-context%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-parent", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-associated-user-context%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-associated-user-context%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#empty-user-context", + "https://www.w3.org/TR/webdriver-bidi/#default-user-context", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context-user-context-id", + "https://www.w3.org/TR/webdriver-bidi/#set-of-user-contexts", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-default-user-context", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-append%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-user-contexts%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-user-contexts%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-remove%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-empty-user-context", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-default-user-context%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-user-contexts%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-empty-user-context%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-user-contexts%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#get-user-context", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-user-contexts%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context-user-context-id%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#modules", + "https://www.w3.org/TR/webdriver-bidi/#module-session", + "https://www.w3.org/TR/webdriver-bidi/#modules-session", + "https://www.w3.org/TR/webdriver-bidi/#module-session-definition", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#end-the-session", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-active-sessions%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-active-sessions%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-empty", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-webdriver-active-flag", + "https://www.w3.org/TR/webdriver-bidi/#cleanup-the-session", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-close-the-websocket-connections", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-active-sessions%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-empty%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-cleanup-remote-end-state", + "https://www.w3.org/TR/webdriver-bidi/#cleanup-remote-end-state", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-clear", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-before-request-sent-map", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-default-cache-behavior", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-clear%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-cache-behavior-map", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#update-the-event-map", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-clone", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-global-event-set%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-navigable-event-map%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-clone%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-obtain-a-set-of-event-names", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-enabled-navigables", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-top%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-global-event-set%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-navigable-event-map%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#module-session-types", + "https://www.w3.org/TR/webdriver-bidi/#type-session-CapabilitiesRequest", + "https://www.w3.org/TR/webdriver-bidi/#type-session-CapabilityRequest", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-additional-webdriver-capability", + "https://www.w3.org/TR/webdriver-bidi/#websocket-url", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-additional-capability-deserialization-algorithm", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-matched-capability-serialization-algorithm", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#type-session-ProxyConfiguration", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#type-session-UserPromptHandler", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#type-session-UserPromptHandlerType", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#type-session-SubscriptionRequest", + "https://www.w3.org/TR/webdriver-bidi/#module-session-commands", + "https://www.w3.org/TR/webdriver-bidi/#command-session-status", + "https://www.w3.org/TR/webdriver-bidi/#commands-sessionstatus", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-static-command%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-readiness-state", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-readiness-state%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#command-session-new", + "https://www.w3.org/TR/webdriver-bidi/#commands-sessionnew", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-bidi-session%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-static-command%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-session-not-created", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-session-not-created%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-capabilities-processing", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-convert-a-json-derived-javascript-value-to-an-infra-value", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-create-a-session", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-bidi-flag%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-session-id%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#command-session-end", + "https://www.w3.org/TR/webdriver-bidi/#commands-sessionend", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-sessions%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-end-the-session", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-section-6.1%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#issue-c10fe58d", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-cleanup-the-session", + "https://www.w3.org/TR/webdriver-bidi/#command-session-subscribe", + "https://www.w3.org/TR/webdriver-bidi/#commands-sessionsubscribe", + "https://www.w3.org/TR/webdriver-bidi/#issue-6c21351e", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-update-the-event-map", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-event-name%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-subscribe-steps", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-sort-in-ascending-order", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-subscribe-priority", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-subscribe-steps%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-event-name%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#command-session-unsubscribe", + "https://www.w3.org/TR/webdriver-bidi/#commands-sessionunsubscribe", + "https://www.w3.org/TR/webdriver-bidi/#issue-07250e04", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-update-the-event-map%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#module-browser", + "https://www.w3.org/TR/webdriver-bidi/#modules-browser", + "https://www.w3.org/TR/webdriver-bidi/#module-browser-definition", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#module-browser-window", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#client-window", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-viewport%25E2%2591%25A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-visibility-state", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#client-window-id", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#client-window-x-coordinate", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-web-exposed-screen-area", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#client-window-y-coordinate", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-web-exposed-screen-area%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#client-window-width", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#client-window-height", + "https://www.w3.org/TR/webdriver-bidi/#maximize-the-client-window", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-x-coordinate", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-y-coordinate", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-width", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-web-exposed-screen-area%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-height", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-web-exposed-screen-area%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#maximize-client-window-is-supported", + "https://www.w3.org/TR/webdriver-bidi/#minimize-the-client-window", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-visibility-state%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-width%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-height%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#minimize-client-window-is-supported", + "https://www.w3.org/TR/webdriver-bidi/#restore-the-client-window", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#restore-client-window-is-supported", + "https://www.w3.org/TR/webdriver-bidi/#get-the-client-window-state", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-visibility-state%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-fullscreen-element", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-empty%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-empty%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-width%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-height%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-width%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-web-exposed-screen-area%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-height%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-web-exposed-screen-area%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#set-the-client-window-state", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-client-window-state", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-fullscreen-is-supported", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unsupported-operation", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-restore-client-window-is-supported", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unsupported-operation%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-maximize-client-window-is-supported", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unsupported-operation%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-minimize-client-window-is-supported", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unsupported-operation%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-empty%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-client-window", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-fully-exit-fullscreen", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-visibility-state%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-fullscreen-an-element", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ref-for-dom-document-documentelement", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-iteration-break", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-restore-the-client-window", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-maximize-the-client-window", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-minimize-the-client-window", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#module-browser-types", + "https://www.w3.org/TR/webdriver-bidi/#type-browser-ClientWindow", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#type-browser-ClientWindowInfo", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#get-the-client-window-info", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-id", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-client-window-state%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-system-focus", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-x-coordinate%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-y-coordinate%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-width%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-height%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#type-browser-UserContext", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#type-browser-UserContextInfo", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#module-browser-commands", + "https://www.w3.org/TR/webdriver-bidi/#command-browser-close", + "https://www.w3.org/TR/webdriver-bidi/#commands-browserclose", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-end-the-session%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-active-sessions%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-empty%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-unable-to-close-browser", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-in-parallel%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-section-6.1%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-cleanup-the-session%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-active-sessions%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-end-the-session%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-cleanup-the-session%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-in-parallel%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-section-6.1%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-cleanup-the-session%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-close-a-top-level-traversable", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-top%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-prompt-to-unload-a-document", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-websocket-listener%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-local-ends%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#command-browser-createUserContext", + "https://www.w3.org/TR/webdriver-bidi/#commands-browsercreateusercontext", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-append%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-user-contexts%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context-user-context-id%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#command-browser-getClientWindows", + "https://www.w3.org/TR/webdriver-bidi/#commands-browsergetclientwindows", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-id%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-append%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-client-window-info", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#command-browser-getUserContexts", + "https://www.w3.org/TR/webdriver-bidi/#commands-browsergetusercontexts", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-user-contexts%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context-user-context-id%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#command-browser-removeUserContext", + "https://www.w3.org/TR/webdriver-bidi/#commands-browserremoveusercontext", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-user-context", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-user-context", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-top%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-associated-user-context%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-close-a-top-level-traversable%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-prompt-to-unload-a-document%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-remove%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-user-contexts%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#command-browser-setClientWindowState", + "https://www.w3.org/TR/webdriver-bidi/#commands-browsersetclientwindowstate", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unsupported-operation%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-id%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-client-window%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-the-client-window-state", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-x-coordinate%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-y-coordinate%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-width%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-width%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-client-window-info%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#module-browsingContext", + "https://www.w3.org/TR/webdriver-bidi/#modules-browsingcontext", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#webdriver-navigation-status", + "https://www.w3.org/TR/webdriver-bidi/#navigation-status-id", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigation-id", + "https://www.w3.org/TR/webdriver-bidi/#navigation-status-status", + "https://www.w3.org/TR/webdriver-bidi/#navigation-status-canceled", + "https://www.w3.org/TR/webdriver-bidi/#navigation-status-pending", + "https://www.w3.org/TR/webdriver-bidi/#navigation-status-complete", + "https://www.w3.org/TR/webdriver-bidi/#navigation-status-url", + "https://www.w3.org/TR/webdriver-bidi/#module-browsingContext-definition", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#device-pixel-ratio-overrides", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#module-browsingcontext-types", + "https://www.w3.org/TR/webdriver-bidi/#type-browsingContext-Browsingcontext", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#navigable-id", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-window-handles", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-window-handles%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#associated-storage-partition", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-storage-partition%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#original-opener", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#get-a-navigable", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-no-such-frame", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#type-browsingContext-Info", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#get-the-parent-navigable", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-parent%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#get-the-child-navigables", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-child-navigable%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#get-the-navigable-info", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-parent-navigable", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-serializer", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-url", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-child-navigables", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-navigable-info", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-associated-user-context%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-original-opener", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-original-opener%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-top%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window-id%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-client-window%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context-user-context-id%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#await-a-navigation", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigate", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-document", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigation-id%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-history-handling-behavior", + "https://www.w3.org/TR/webdriver-bidi/#issue-40db6a3c", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-awaits%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-serializer%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unknown-error", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-serializer%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-awaits%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unknown-error%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#issue-ceba1469", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-serializer%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#type-browsingContext-Locator", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#type-browsingContext-Navigation", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#type-browsingContext-NavigationInfo", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#get-the-navigation-info", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-time-values-and-time-range", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-serializer%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#type-browsingContext-ReadinessState", + "https://www.w3.org/TR/webdriver-bidi/#type-browsingContext-UserPromptType", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#module-browsingContext-commands", + "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-activate", + "https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontextactivate", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-activate-a-navigable", + "https://www.w3.org/TR/webdriver-bidi/#activate-a-navigable", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-system-visibility-state", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-system-visibility-state%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unsupported-operation%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-system-visibility-state%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-system-visibility-state%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-system-visibility-state%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-system-focus%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-focused-area-of-the-document", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-captureScreenshot", + "https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontextcapturescreenshot", + "https://www.w3.org/TR/webdriver-bidi/#normalize-rect", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-width-dimension", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-height-dimension", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-x-coordinate", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-y-coordinate", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-width-dimension%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-height-dimension%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-domrectreadonly", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-x-coordinate%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-y-coordinate%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-width-dimension%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-height-dimension%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#rectangle-intersection", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-normalize-rect", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-normalize-rect%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-x-coordinate%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-x-coordinate%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-x-coordinate%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-width-dimension%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-x-coordinate%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-width-dimension%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-y-coordinate%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-y-coordinate%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-y-coordinate%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-height-dimension%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-y-coordinate%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-height-dimension%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-domrectreadonly%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-x-coordinate%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-y-coordinate%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-width-dimension%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-height-dimension%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#render-document-to-a-canvas", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-determine-the-device-pixel-ratio", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dom-document-defaultview", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-width-dimension%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-height-dimension%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-htmlcanvaselement", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dom-canvas-width", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dom-canvas-height", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-2d-context-creation-algorithm", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-offscreencanvas-context-mode", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-canvas-2d", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-x-coordinate%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-y-coordinate%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-x-coordinate%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-width-dimension%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-y-coordinate%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-height-dimension%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-canvas", + "https://www.w3.org/TR/webdriver-bidi/#encode-a-canvas-as-base64", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-undefined-value", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-a-serialisation-of-the-bitmap-as-a-file", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-forgiving-base64-encode", + "https://www.w3.org/TR/webdriver-bidi/#get-the-origin-rectangle", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-visual-viewport", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-domrectreadonly%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-x-coordinate%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dom-visualviewport-pageleft", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-y-coordinate%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dom-visualviewport-pagetop", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-width-dimension%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-height-dimension%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ref-for-dom-document-documentelement%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-domrectreadonly%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-x-coordinate%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-y-coordinate%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-width-dimension%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dom-element-scrollheight", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-height-dimension%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dom-element-scrollwidth", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unsupported-operation%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-run-the-animation-frame-callbacks", + "https://www.w3.org/TR/webdriver-bidi/#issue-b2b83ca0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-origin-rectangle", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-environment-settings-object", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-relevant-global%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-window%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-execution-context", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-remote-reference", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-element", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-no-such-element", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-node-document", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-no-such-element%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-origin-rectangle%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-element-get-the-bounding-box", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-domrectreadonly%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-x-coordinate%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-y-coordinate%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-x-coordinate%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-y-coordinate%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-domrectreadonly%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-x-coordinate%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-y-coordinate%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-intersection", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-width-dimension%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-rectangle-height-dimension%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unable-to-capture-screen", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-render-document-to-a-canvas", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-encode-a-canvas-as-base64", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-close", + "https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontextclose", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-close-a-top-level-traversable%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-close-a-top-level-traversable%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-prompt-to-unload-a-document%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#issue-04e2b4be", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-create", + "https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontextcreate", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unsupported-operation%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-default-user-context%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-associated-user-context%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-user-context%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-user-context%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-associated-user-context%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unsupported-operation%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-creating-a-new-top-level-traversable", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-associated-user-context%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-top%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-activate-a-navigable%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-focusing-steps", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-getTree", + "https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontextgettree", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-top%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-navigable-info%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-handleUserPrompt", + "https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontexthandleuserprompt", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dom-alert", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dom-confirm", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dom-prompt", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-prompt-to-unload-a-document%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-no-such-alert", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-locateNodes", + "https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontextlocatenodes", + "https://www.w3.org/TR/webdriver-bidi/#locate-nodes-using-css", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-parse-a-selector", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-selector", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-match-a-selector-against-a-tree", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-tree-root", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-scoping-root", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#locate-nodes-using-xpath", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dom-xpathevaluatorbase-evaluate", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dom-xpathresult-ordered_node_snapshot_type", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-syntaxerror", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-idl-DOMException", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-selector%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unknown-error%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dom-xpathresult-snapshotitem", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#locate-nodes-using-inner-text", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-selector%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-G34078", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-G34944", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-document%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-documentfragment", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-tree-child", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-extend", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-locate-nodes-using-inner-text", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-htmlelement", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-iteration-continue", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dom-innertext", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-this", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-G34078%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-G34944%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-code-point-substring", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-tree-child%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-string-is", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-locate-nodes-using-inner-text%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-extend%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-remove%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#collect-nodes-using-accessibility-attributes", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-element%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-roleMappingComputedRole", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-string-is%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-accessible-name", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-string-is%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-iteration-break%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-tree-child%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-element%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-collect-nodes-using-accessibility-attributes", + "https://www.w3.org/TR/webdriver-bidi/#locate-nodes-using-accessibility-attributes", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-selector%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-collect-nodes-using-accessibility-attributes%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-realm-from-a-navigable", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ref-for-dom-document-documentelement%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-shared-reference", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-locate-nodes-using-css", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-locate-nodes-using-xpath", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-locate-nodes-using-inner-text%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-locate-nodes-using-accessibility-attributes", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-as-a-remote-value", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-navigate", + "https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontextnavigate", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-script-base-url", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-parser", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-script-base-url%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-await-a-navigation", + "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-print", + "https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontextprint", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unsupported-operation%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-absolute-lengths", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-run-the-animation-frame-callbacks%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#issue-b2b83ca0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-media-type", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-empty%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-parse-a-page-range", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-section-4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-reload", + "https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontextreload", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-url%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-await-a-navigation%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-setViewport", + "https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontextsetviewport", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-layout-viewport", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unsupported-operation%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-layout-viewport%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-layout-viewport%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-layout-viewport%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-descendant-navigables", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-select-an-image-source-from-a-source-set", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-resolution", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-set", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-device-pixel-ratio-overrides", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-select-an-image-source-from-a-source-set%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-resolution%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-remove", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-device-pixel-ratio-overrides%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-evaluate-media-queries-and-report-changes", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#command-browsingContext-traverseHistory", + "https://www.w3.org/TR/webdriver-bidi/#commands-browsingcontexttraversehistory", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-queue-a-task", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-tn-session-history-traversal-queue", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-getting-all-used-history-steps", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-tn-current-session-history-step", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-resume", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-awaits%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-history-entry", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-traverse-the-history-by-a-delta", + "https://www.w3.org/TR/webdriver-bidi/#issue-0ad20a58", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-page-show", + "https://www.w3.org/TR/webdriver-bidi/#issue-df07ef00", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-resume%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-pop-state", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-resume%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#module-contexts-events", + "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-contextCreated", + "https://www.w3.org/TR/webdriver-bidi/#recursively-emit-context-created-events", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-a-context-created-event", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-recursively-emit-context-created-events", + "https://www.w3.org/TR/webdriver-bidi/#emit-a-context-created-event", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-navigable-info%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger", + "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-navigable-created", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-original-opener%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-cache-behavior", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-a-context-created-event%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-subscribe-steps%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-subscribe-priority%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-recursively-emit-context-created-events%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-contextDestroyed", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-navigable-destroyed", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-navigable-info%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-parent-navigable%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#issue-4e122e13", + "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-navigationStarted", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-navigation-started", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-navigation-info", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-resume%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-fragmentNavigated", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-fragment-navigated", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-navigation-info%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-resume%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-historyUpdated", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-history-updated", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-serializer%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-bc", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-url%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-bc%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-domContentLoaded", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-dom-content-loaded", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-navigation-info%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-resume%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-load", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-load-complete", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-navigation-info%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-resume%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-downoadWillBegin", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-download-started", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-navigation-info%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-resume%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-navigationAborted", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-navigation-aborted", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-navigation-info%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-resume%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-navigationFailed", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-navigation-failed", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-navigation-info%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-resume%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-userPromptClosed", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-user-prompt-closed", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-window-navigable", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#event-browsingContext-userPromptOpened", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-user-prompt-opened", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-window-navigable%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-get-the-prompt-handler", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-handler", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#module-network", + "https://www.w3.org/TR/webdriver-bidi/#modules-network", + "https://www.w3.org/TR/webdriver-bidi/#module-network-definition", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#before-request-sent-map", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#default-cache-behavior", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#navigable-cache-behavior-map", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#network-intercepts", + "https://www.w3.org/TR/webdriver-bidi/#network-intercept", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-bidi-session%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#intercept-map", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-struct", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-bidi-session%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#blocked-request-map", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-request-id", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-struct%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#get-the-network-intercepts", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-intercept-map", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-serializer%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-url", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-empty%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-match-url-pattern", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#update-the-response", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-blocked-request-map", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-request", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-response", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-response-status", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-response-status-message", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-utf-8-encode", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-header-list", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-header", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-fields.names", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-header-value", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-response-header-list", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-response-header-list%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-header-list%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-response-header-list%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-byte-lowercase", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-set-cookie-header", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-response-header-list%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#issue-2a7f19c6", + "https://www.w3.org/TR/webdriver-bidi/#module-network-types", + "https://www.w3.org/TR/webdriver-bidi/#type-network-AuthChallenge", + "https://www.w3.org/TR/webdriver-bidi/#extract-challenges", + "https://www.w3.org/TR/webdriver-bidi/#issue-f2aa8157", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-response-status%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-response-status%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-response-header-list%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#issue-fb11fbae", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-byte-case-insensitive", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-tuple", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-utf-8-decode", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#type-network-AuthCredentials", + "https://www.w3.org/TR/webdriver-bidi/#type-network-BaseParameters", + "https://www.w3.org/TR/webdriver-bidi/#issue-f8347230", + "https://www.w3.org/TR/webdriver-bidi/#process-a-network-event", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-request-data", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigation-id%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-window", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-environment-settings-object%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-window%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-window%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-settings-object-global", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-network-intercepts", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-redirect-count", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-time-values-and-time-range%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-empty%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#type-network-BytesValue", + "https://www.w3.org/TR/webdriver-bidi/#deserialize-protocol-bytes", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-byte-sequence", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-utf-8-encode%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-forgiving-base64-decode", + "https://www.w3.org/TR/webdriver-bidi/#serialize-protocol-bytes", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-byte-sequence%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-utf-8-decode-without-bom-or-fail", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-forgiving-base64-encode%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#type-network-Cookie", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#serialize-cookie", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-utf-8-decode%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-protocol-bytes", + "https://www.w3.org/TR/webdriver-bidi/#type-network-CookieHeader", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#serialize-cookie-header", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-utf-8-encode%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-protocol-bytes", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-byte-sequence%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#type-network-FetchTimingInfo", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-settings-object-time-origin", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-client", + "https://www.w3.org/TR/webdriver-bidi/#get-the-fetch-timings", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-client%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-get-time-origin-timestamp", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-fetch-timing-info", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-fetch-timing-info-final-connection-timing-info", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-connection-timing-info", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-convert-fetch-timestamp", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-fetch-timing-info-start-time", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-convert-fetch-timestamp%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-fetch-timing-info-redirect-start-time", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-convert-fetch-timestamp%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-fetch-timing-info-redirect-end-time", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-convert-fetch-timestamp%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-fetch-timing-info-post-redirect-start-time", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-convert-fetch-timestamp%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-connection-timing-info-domain-lookup-start-time", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-convert-fetch-timestamp%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-connection-timing-info-domain-lookup-end-time", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-convert-fetch-timestamp%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-connection-timing-info-secure-connection-start-time", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-convert-fetch-timestamp%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-connection-timing-info-connection-start-time", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-convert-fetch-timestamp%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-connection-timing-info-connection-end-time", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-convert-fetch-timestamp%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-fetch-timing-info-final-network-request-start-time", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-convert-fetch-timestamp%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-fetch-timing-info-final-network-response-start-time", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-convert-fetch-timestamp%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-fetch-timing-info-end-time", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#type-network-Header", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#serialize-header", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-utf-8-decode%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-protocol-bytes%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#deserialize-header", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-utf-8-encode%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-protocol-bytes%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-header", + "https://www.w3.org/TR/webdriver-bidi/#type-network-Initiator", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-initiator", + "https://www.w3.org/TR/webdriver-bidi/#get-the-initiator", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-request-id%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-request-initiator-type", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-current-stack-trace", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#type-network-Intercept", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-network-intercept%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#type-network-Request", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#request-id", + "https://www.w3.org/TR/webdriver-bidi/#type-network-RequestData", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#get-the-request-data", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-request-id%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-serializer%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-url%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-method", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-body", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-byte-sequence%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-body", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-body-total-bytes", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-header-list", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-header-list%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-header", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-byte-case-insensitive%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-storage-model", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-cookie", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-destination", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-request-initiator-type%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-fetch-timings", + "https://www.w3.org/TR/webdriver-bidi/#type-network-ResponseContent", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#get-the-response-content-info", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-response-body-info", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-fetch-timing-info-decoded-body-size", + "https://www.w3.org/TR/webdriver-bidi/#type-network-ResponseData", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#get-the-protocol", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-fetch-timing-info-final-connection-timing-info%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-fetch-timing-info-final-connection-timing-info%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-connection-timing-info-alpn-negotiated-protocol", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-response-url", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-scheme", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-code-unit-substring", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-string-length", + "https://www.w3.org/TR/webdriver-bidi/#get-the-response-data", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-serializer%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-response-url%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-protocol", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-response-status%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-response-status-message%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-response-cache-state", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-mime-type-essence", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-computed-mime-type", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-response-header-list%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-header%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-response-body-info%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-fetch-timing-info-encoded-body-size", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-response-content-info", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-extract-challenges", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#type-network-SetCookieHeader", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#serialize-an-integer", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-code-point", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-code-point-value", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-code-point-value%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#serialize-set-cookie-header", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-utf-8-encode%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-protocol-bytes%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-byte-sequence%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-utf-8-encode%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-an-integer", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-utf-8-encode%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-utf-8-encode%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-utf-8-encode%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-utf-8-encode%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#type-network-UrlPattern", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-network-intercept%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#unescape-url-pattern", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#parse-url-pattern", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-unescape-url-pattern", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ascii-alphanumeric", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ascii-lowercase", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-is-special", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-unescape-url-pattern%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-unescape-url-pattern%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ascii-digit", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-unescape-url-pattern%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-string-starts-with", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-unescape-url-pattern%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-string-starts-with%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-unescape-url-pattern%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-parser%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A5%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-scheme%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-host", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-scheme%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-is-special%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-scheme%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-default-port", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-port", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-scheme%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-default-port%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-port%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-an-integer%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-port%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-url-path-serializer", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-path", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-empty%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-query", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-query%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#match-url-pattern", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-parser%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-scheme%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-host%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-scheme%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-is-special%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-scheme%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-default-port%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-port%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-scheme%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-default-port%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-port%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-an-integer%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-port%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-url-path-serializer%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-query%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#module-network-commands", + "https://www.w3.org/TR/webdriver-bidi/#command-network-addIntercept", + "https://www.w3.org/TR/webdriver-bidi/#commands-networkaddintercept", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-network-intercept%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-intercept-map%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-parse-url-pattern", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#command-network-continueRequest", + "https://www.w3.org/TR/webdriver-bidi/#commands-networkcontinuerequest", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-network-intercept%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-blocked-request-map%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-request%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#issue-674c4ab4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-parser%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-script-base-url%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A5%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-url%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-method.overview", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-method%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-header-list%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-header%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-fields.names%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A5%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-header-value%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-header-list%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-byte-sequence%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-cookie-header", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-header-list%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-byte-lowercase%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-header%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-header-list%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-protocol-bytes%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-body%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-resume%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#command-network-continueResponse", + "https://www.w3.org/TR/webdriver-bidi/#commands-networkcontinueresponse", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-network-intercept%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-update-the-response", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-resume%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#command-network-continueWithAuth", + "https://www.w3.org/TR/webdriver-bidi/#commands-networkcontinuewithauth", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-network-intercept%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-blocked-request-map%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-request%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A6%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-resume%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#command-network-failRequest", + "https://www.w3.org/TR/webdriver-bidi/#commands-networkfailrequest", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-network-intercept%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-blocked-request-map%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A6%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-request%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A5%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-network-error", + "https://www.w3.org/TR/webdriver-bidi/#issue-6015124b", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-resume%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#command-network-provideResponse", + "https://www.w3.org/TR/webdriver-bidi/#commands-networkprovideresponse", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-network-intercept%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-update-the-response%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-protocol-bytes%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-response-body", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-byte-sequence-as-a-body", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-resume%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#command-network-removeIntercept", + "https://www.w3.org/TR/webdriver-bidi/#commands-networkremoveintercept", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-network-intercept%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-intercept-map%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A6%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-intercept", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-remove%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-null-value", + "https://www.w3.org/TR/webdriver-bidi/#command-network-setCacheBehavior", + "https://www.w3.org/TR/webdriver-bidi/#commands-networksetcachebehavior", + "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-cache-behavior", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-window%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-environment-settings-object%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-window%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-window%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-settings-object-global%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-browsing-context", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-cache-behavior-map%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-cache-behavior-map%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-default-cache-behavior%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#navigable-cache-behavior", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-top%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-cache-behavior-map%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-cache-behavior-map%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-default-cache-behavior%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-default-cache-behavior%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-clear%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-cache-behavior-map%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-browsing-context%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-append%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-cache-behavior-map%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-cache-behavior-map%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-browsing-context%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-browsing-context%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-default-cache-behavior%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-cache-behavior-map%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-remove%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-cache-behavior-map%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-cache-behavior-map%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#module-network-event", + "https://www.w3.org/TR/webdriver-bidi/#event-network-authRequired", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-auth-required", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-redirect-count%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-before-request-sent-map%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-webdriver-bidi-before-request-sent", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-client%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-related-navigables", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-client%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-process-a-network-event", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-response-data", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-blocked-request-map%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-request-id%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-awaits%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-remove%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#event-network-beforeSendRequest", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-before-request-sent", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-before-request-sent-map%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-before-request-sent-map%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-redirect-count%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-before-request-sent-map%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-client%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-related-navigables%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-client%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-process-a-network-event%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-initiator%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-is-empty", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-blocked-request-map%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-request-id%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-awaits%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-request-id%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-remove%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#event-network-fetchError", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-fetch-error", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-before-request-sent-map%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-redirect-count%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-webdriver-bidi-before-request-sent%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-webdriver-bidi-before-request-sent%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-client%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-related-navigables%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-client%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-process-a-network-event%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#event-network-responseCompleted", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-response-completed", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-redirect-count%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-before-request-sent-map%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-webdriver-bidi-before-request-sent%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-client%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-related-navigables%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-client%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-process-a-network-event%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-response-data%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#event-network-responseStarted", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#webdriver-bidi-response-started", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-redirect-count%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-before-request-sent-map%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-webdriver-bidi-before-request-sent%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-client%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-related-navigables%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-request-client%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-process-a-network-event%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-response-data%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-blocked-request-map%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-request-id%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-awaits%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-remove%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#module-script", + "https://www.w3.org/TR/webdriver-bidi/#modules-script", + "https://www.w3.org/TR/webdriver-bidi/#module-script-definition", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#preload-scripts", + "https://www.w3.org/TR/webdriver-bidi/#preload-script", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-window%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-bidi-session%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#preload-script-map", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-struct%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-struct-item", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-preload-script%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#run-webdriver-bidi-preload-scripts", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-relevant-global%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-window%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-active-bidi-sessions%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-preload-script-map", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-getting-the-values%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-top%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-contain%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-or-create-a-sandbox-realm", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-execution-context%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-execution-context%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-realm-global%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-create-a-channel", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-api-base-url", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-default-script-fetch-options", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-evaluate-function-body", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-completion-record-specification-type", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-report-an-exception", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-iscallable", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-exceptiondef-typeerror", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-report-an-exception%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-prepare-to-run-script", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-call", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-clean-up-after-running-script", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-completion-record-specification-type%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-report-an-exception%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#module-script-types", + "https://www.w3.org/TR/webdriver-bidi/#type-script-Channel", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#scriptchannel", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-local-ends%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#type-script-ChannelValue", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-local-ends%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#create-a-channel", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-current-realm", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-a-script-message", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-createbuiltinfunction", + "https://www.w3.org/TR/webdriver-bidi/#type-script-EvaluateResult", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#type-script-ExceptionDetails", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#get-exception-details", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-completion-record-specification-type%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-as-a-remote-value%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A5%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-stack-trace-for-an-exception", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#type-script-Handle", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-code-realms%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-code-realms%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#handle-object-map", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#type-script-InternalId", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-as-a-remote-value%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#type-script-LocalValue", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#scriptlocalvalue", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-scriptremotereference", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-scriptchannel", + "https://www.w3.org/TR/webdriver-bidi/#deserialize-key-value-list", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A6%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-local-value", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-local-value%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-createarrayfromlist", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#deserialize-value-list", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-local-value%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#deserialize-local-value", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-scriptremotereference%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-remote-reference%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-scriptprimitiveprotocolvalue", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-primitive-protocol-value", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-create-a-channel%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-value-list", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-createarrayfromlist%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-date-time-string-format", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A6%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A6%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-construct", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-date-constructor", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-completion-record-specification-type%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-key-value-list", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-createarrayfromlist%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-map-iterable", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-key-value-list%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-createarrayfromlist%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-object.fromentries", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-regexp-pattern-flags", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A6%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-value-list%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-createarrayfromlist%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-set-objects", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A6%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A6%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#type-script-PreloadScript", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#type-script-Realm", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-code-realms%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#realm-id", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-id", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-handle-object-map", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#get-a-realm", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-code-realms%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-id%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A7%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-no-such-frame%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-code-realms%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-id%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A5%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#issue-89e6b783", + "https://www.w3.org/TR/webdriver-bidi/#type-script-PrimitiveProtocolValue", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#scriptprimitiveprotocolvalue", + "https://www.w3.org/TR/webdriver-bidi/#serialize-primitive-protocol-value", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-ecmascript-data-types-and-values", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-ecmascript-data-types-and-values%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-ecmascript-data-types-and-values%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#issue-d33a79cf", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-ecmascript-data-types-and-values%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-ecmascript-data-types-and-values%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A5%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-ecmascript-data-types-and-values%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-tostring", + "https://www.w3.org/TR/webdriver-bidi/#deserialize-primitive-protocol-value", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-undefined-value%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-null-value%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-ecmascript-data-types-and-values%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-ecmascript-data-types-and-values%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-stringtonumber", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A7%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A5%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-stringtobigint", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A7%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A6%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A7%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A6%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#type-script-RealmInfo", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#get-the-navigable", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-realm-global%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-unwrapped", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-window%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-window%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-window%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-node-navigable%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#get-the-workers-owners", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-workerglobalscope%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-WorkerGlobalScope-owner-set%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-relevant-settings-object", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-realm-info", + "https://www.w3.org/TR/webdriver-bidi/#get-the-realm-info", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-execution-context%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-id%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ascii-serialisation-of-an-origin", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-realm-global%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-window%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-relevant-global%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-window%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-node-navigable%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sandboxwindowproxy%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-window%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-window%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-node-navigable%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-sandbox-name", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A6%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dedicatedworkerglobalscope", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-workers-owners", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A6%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sharedworkerglobalscope", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serviceworkerglobalscope", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A6%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-workerglobalscope%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-paintworkletglobalscope", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-AudioWorkletGlobalScope", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A6%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-workletglobalscope", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A6%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-workerglobalscope%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-workletglobalscope%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#type-script-RealmType", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#type-script-RemoteReference", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#scriptremotereference", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-handle-object-map%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-code-realms%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-boundary-point-node", + "https://www.w3.org/TR/webdriver-bidi/#issue-718fbe53", + "https://www.w3.org/TR/webdriver-bidi/#deserialize-remote-reference", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-shared-reference%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-remote-object-reference", + "https://www.w3.org/TR/webdriver-bidi/#deserialize-remote-object-reference", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-handle-object-map%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A7%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A6%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-handle", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#deserialize-shared-reference", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-navigable", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A7%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A7%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-node", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-get-a-node", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A7%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A7%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-node%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-environment-settings-object%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-execution-context%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-node-document%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-origin", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-same-origin-domain", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-settings-object-origin", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A7%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A7%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-node%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-realm-global%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sandboxwindowproxy%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sandboxproxy%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A6%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#type-script-RemoteValue", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#issue-14921645", + "https://www.w3.org/TR/webdriver-bidi/#issue-ace5d7fc", + "https://www.w3.org/TR/webdriver-bidi/#issue-daee5863", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-node", + "https://www.w3.org/TR/webdriver-bidi/#issue-c8a585bd", + "https://www.w3.org/TR/webdriver-bidi/#handle-for-an-object", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-handle-object-map%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#get-shared-id-for-a-node", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-unwrapped%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-node", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-node-navigable%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-get-or-create-a-node-reference", + "https://www.w3.org/TR/webdriver-bidi/#set-internal-ids-if-needed", + "https://www.w3.org/TR/webdriver-bidi/#serialize-as-a-remote-value", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-primitive-protocol-value", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-handle-for-an-object", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-ecmascript-data-types-and-values%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A6%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-isarray", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-an-array-like", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-isregexp", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-tostring%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-get-o-p", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-tostring%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-get-o-p%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A7%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A7%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-object-internal-methods-and-internal-slots", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-call%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-date.prototype.toisostring", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-completion-record-specification-type%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A7%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-object-internal-methods-and-internal-slots%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A7%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-internal-ids-if-needed", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-as-a-mapping", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-createmapiterator", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-object-internal-methods-and-internal-slots%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A7%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-internal-ids-if-needed%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-as-a-list", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-createsetiterator", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-object-internal-methods-and-internal-slots%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A7%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-object-internal-methods-and-internal-slots%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A7%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-object-internal-methods-and-internal-slots%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-object-internal-methods-and-internal-slots%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A7%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-object-internal-methods-and-internal-slots%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A7%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-object-internal-methods-and-internal-slots%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-object-internal-methods-and-internal-slots%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A7%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-ispromise", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A8%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A5%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-object-internal-methods-and-internal-slots%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A8%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-object-internal-methods-and-internal-slots%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A8%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-platform-object", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nodelist", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-an-array-like%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-platform-object%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-htmlcollection", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-an-array-like%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-platform-object%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-node%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-shared-id-for-a-node", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A8%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-internal-ids-if-needed%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A8%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-get-o-p%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-get-o-p%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-element%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-attr", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-get-o-p%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-get-o-p%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-tree-child%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-shadowroot", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-shadowroot-mode", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-tree-child%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-clone", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-as-a-remote-value%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-element%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A8%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-element-attribute", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-attribute-qualified-name", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-attribute-value", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-element-shadow-root", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-as-a-remote-value%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-shadowroot%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-shadowroot-mode%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-platform-object%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-windowproxy", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-object-internal-methods-and-internal-slots%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-window-navigable%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A8%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A8%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-platform-object%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A8%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-iscallable%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A8%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A5%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-assert%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-ecmascript-data-types-and-values%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%93%AA%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-internal-ids-if-needed%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-as-a-mapping%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-enumerableownpropertynames", + "https://www.w3.org/TR/webdriver-bidi/#issue-4a5a93fc", + "https://www.w3.org/TR/webdriver-bidi/#serialize-an-array-like", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%93%AA%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-internal-ids-if-needed%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-as-a-list%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-createarrayiterator", + "https://www.w3.org/TR/webdriver-bidi/#serialize-as-a-list", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-iteratortolist", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-getiterator", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-clone%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-as-a-remote-value%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#serialize-as-a-mapping", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-iteratortolist%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-getiterator%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-isarray%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-createlistfromarraylike", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-clone%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-ecmascript-data-types-and-values%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-as-a-remote-value%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-as-a-remote-value%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#type-script-ResultOwnership", + "https://www.w3.org/TR/webdriver-bidi/#type-script-SerializationOptions", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#type-script-SharedId", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A3%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-node%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#type-script-StackFrame", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A3%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A6%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#type-script-StackTrace", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A3%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A6%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#list-of-stack-frames", + "https://www.w3.org/TR/webdriver-bidi/#stack-frame", + "https://www.w3.org/TR/webdriver-bidi/#stackframe-script-url", + "https://www.w3.org/TR/webdriver-bidi/#stackframe-function", + "https://www.w3.org/TR/webdriver-bidi/#stackframe-line-number", + "https://www.w3.org/TR/webdriver-bidi/#stackframe-column-number", + "https://www.w3.org/TR/webdriver-bidi/#construct-a-stack-trace", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-stack-frame", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url-serializer%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-url", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-stackframe-script-url", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%93%AA%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-stackframe-function", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-stackframe-line-number", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-stackframe-column-number", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%93%AA%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#current-stack-trace", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-construct-a-stack-trace", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-of-stack-frames", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-running-execution-context", + "https://www.w3.org/TR/webdriver-bidi/#stack-trace-for-an-exception", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-completion-record-specification-type%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-completion-record-specification-type%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-of-stack-frames%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-construct-a-stack-trace%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#type-script-Source", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#get-the-source", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-id%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-environment-settings-object%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-execution-context%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-window%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-window%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-node-navigable%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%93%AA%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#type-script-Target", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A3%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#get-a-realm-from-a-navigable", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-environment-settings-object%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-relevant-global%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-window%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-execution-context%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A4%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-or-create-a-sandbox-realm%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A6%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#issue-89e6b783%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#get-a-realm-from-a-target", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-realm-from-a-navigable%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-realm", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#issue-89e6b783%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#module-script-commands", + "https://www.w3.org/TR/webdriver-bidi/#command-script-addPreloadScript", + "https://www.w3.org/TR/webdriver-bidi/#commands-scriptaddpreloadscript", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-preload-script%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A4%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-top-level-traversable%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A7%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A7%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-preload-script-map%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%93%AA%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#command-script-disown", + "https://www.w3.org/TR/webdriver-bidi/#commands-scriptdisown", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A4%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-realm-from-a-target", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-handle-object-map%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A6%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#command-script-callFunction", + "https://www.w3.org/TR/webdriver-bidi/#commands-scriptcallfunction", + "https://www.w3.org/TR/webdriver-bidi/#issue-6eade172", + "https://www.w3.org/TR/webdriver-bidi/#deserialize-arguments", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-local-value%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#evaluate-function-body", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-string-concatenate", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-creating-a-classic-script", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-prepare-to-run-script%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-runtime-semantics-scriptevaluation", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-clean-up-after-running-script%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-realm-from-a-target%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-id%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-environment-settings-object%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-execution-context%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-arguments", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-local-value%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%93%AA%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-api-base-url%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-default-script-fetch-options%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-evaluate-function-body%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-exception-details", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%93%AA%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-iscallable%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A7%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A7%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-invalid-argument%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-activation-notification", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-prepare-to-run-script%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-call%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-ispromise%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-await", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-clean-up-after-running-script%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-exception-details%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%93%AA%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-as-a-remote-value%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%93%AA%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#command-script-evaluate", + "https://www.w3.org/TR/webdriver-bidi/#commands-scriptevaluate", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-realm-from-a-target%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-id%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-environment-settings-object%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-execution-context%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-default-script-fetch-options%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-api-base-url%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-creating-a-classic-script%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-activation-notification%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-prepare-to-run-script%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-runtime-semantics-scriptevaluation%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-ispromise%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-await%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-clean-up-after-running-script%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-exception-details%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-as-a-remote-value%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#command-script-getRealms", + "https://www.w3.org/TR/webdriver-bidi/#commands-scriptgetrealms", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-code-realms%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-environment-settings-object%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-environment-execution-ready-flag", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-window%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-relevant-global%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-realm-global%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-workerglobalscope%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-WorkerGlobalScope-owner-set%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-realm-info%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-iteration-continue%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#issue-ac9113ee", + "https://www.w3.org/TR/webdriver-bidi/#issue-b6525c5d", + "https://www.w3.org/TR/webdriver-bidi/#command-script-removePreloadScript", + "https://www.w3.org/TR/webdriver-bidi/#commands-scriptremovepreloadscript", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-preload-script%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-preload-script-map%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A4%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A8%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A7%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-script", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-remove%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#module-script-events", + "https://www.w3.org/TR/webdriver-bidi/#event-script-message", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#emit-a-script-message", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-environment-settings-object%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-execution-context%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-related-navigables%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-is-enabled%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A4%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A4%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-as-a-remote-value%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-source", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#event-script-realmCreated", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-up-a-window-environment-settings-object", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-up-a-worker-environment-settings-object", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-up-a-worklet-environment-settings-object", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-environment-settings-object%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-realm-info%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-related-navigables%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-subscribe-steps%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-subscribe-priority%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-environment-settings-object%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-environment-execution-ready-flag%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-window%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-relevant-global%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-relevant-global%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-window%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-node-navigable%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-top%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-realm-info%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-is-enabled%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#issue-74a40be3", + "https://www.w3.org/TR/webdriver-bidi/#event-script-realmDestroyed", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-unloading-document-cleanup-steps", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-set%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigables%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-worklet-global-scopes", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-relevant-realm", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-id%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-environment-settings-object%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-relevant-global%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-window%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-execution-context%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-id%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A1%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-of-sessions-for-which-an-event-is-enabled%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-worker-event-loop-2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-terminate-a-worker", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-environment-settings-object%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-responsible-event-loop", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-related-navigables%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-environment-settings-object's-realm", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-id%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A1%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#module-storage", + "https://www.w3.org/TR/webdriver-bidi/#modules-storage", + "https://www.w3.org/TR/webdriver-bidi/#storage-partition", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-storage-model%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#storage-partition-key", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A1%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-storage-partition%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#module-storage-definition", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A3%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A6%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#module-storage-types", + "https://www.w3.org/TR/webdriver-bidi/#type-storage-PartitionKey", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A6%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-storage-partition-key", + "https://www.w3.org/TR/webdriver-bidi/#table-of-standard-storage-partition-key-attributes", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-extension-storage-partition-key-attributes", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-user-context-user-context-id%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ascii-serialisation-of-an-origin%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#extension-storage-partition-key-attributes", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#default-values-for-storage-partition-key-attributes", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-table-of-standard-storage-partition-key-attributes", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-storage-partition-key%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-extension-storage-partition-key-attributes%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-ends%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A1%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#required-partition-key-attributes", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-table-of-standard-storage-partition-key-attributes%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-storage-partition-key%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-extension-storage-partition-key-attributes%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-default-values-for-storage-partition-key-attributes", + "https://www.w3.org/TR/webdriver-bidi/#deserialize-filter", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-table-for-cookie-conversion", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-protocol-bytes%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-set%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#expand-a-storage-partition-spec", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A2%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A5%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-storage-partition-key%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-associated-storage-partition", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A6%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A2%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-default-values-for-storage-partition-key-attributes%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A4%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-set%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-required-partition-key-attributes", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A4%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-set%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A8%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A7%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-underspecified-storage-partition", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A6%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#get-the-cookie-store", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-storage-partition%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-storage-model%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-storage-partition%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A6%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A8%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A7%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-no-such-storage-partition", + "https://www.w3.org/TR/webdriver-bidi/#match-cookie", + "https://www.w3.org/TR/webdriver-bidi/#get-matching-cookies", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-filter", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-match-cookie", + "https://www.w3.org/TR/webdriver-bidi/#module-storage-commands", + "https://www.w3.org/TR/webdriver-bidi/#command-storage-getCookies", + "https://www.w3.org/TR/webdriver-bidi/#commands-storagegetcookies", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-storage-model%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-match-cookie%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A2%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A5%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-expand-a-storage-partition-spec", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A5%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-cookie-store", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-matching-cookies", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-cookie%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A2%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A7%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#command-storage-setCookie", + "https://www.w3.org/TR/webdriver-bidi/#commands-storagesetcookie", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-storage-model%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A5%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-expand-a-storage-partition-spec%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A5%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-cookie-store%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-protocol-bytes%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-creating-a-cookie", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-cookie-name", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-cookie-value", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-cookie-domain", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-table-for-cookie-conversion%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-cookie-path", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-cookie-secure-only", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-cookie-http-only", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-cookie-expiry-time", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-cookie-same-site", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A8%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A7%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-unable-to-set-cookie", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A2%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A7%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#command-storage-deleteCookies", + "https://www.w3.org/TR/webdriver-bidi/#commands-storagedeletecookies", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-storage-model%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-match-cookie%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A2%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A5%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-expand-a-storage-partition-spec%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A5%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-cookie-store%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-matching-cookies%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A2%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A7%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#module-log", + "https://www.w3.org/TR/webdriver-bidi/#modules-log", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-bidi-session%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#log-event-buffer", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A2%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#buffer-a-log-event", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-log-event-buffer", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-navigable-id%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list%E2%91%A2%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#issue-938098d0", + "https://www.w3.org/TR/webdriver-bidi/#module-log-definition", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A6%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#module-log-types", + "https://www.w3.org/TR/webdriver-bidi/#types-log-logentry", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-local-end-definition%E2%91%A6%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#module-log-events", + "https://www.w3.org/TR/webdriver-bidi/#event-log-entryAdded", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-event-trigger%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-console-steps", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-active-bidi-sessions%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-time-values-and-time-range%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-ecmascript-data-types-and-values%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-formatting-specifiers", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-formatter", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-primitive-value", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-sec-tostring%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-id%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-current-realm%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A2%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-serialize-as-a-remote-value%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A3%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-source%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-current-realm%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-current-stack-trace%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A3%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-current-settings-object", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-related-navigables%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-is-enabled%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-buffer-a-log-event", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-error-reporting-steps", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-settings-object%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-stack-trace-for-an-exception%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-the-source%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-current-realm%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-related-navigables%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-active-bidi-sessions%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-is-enabled%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-buffer-a-log-event%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#issue-d863e230", + "https://www.w3.org/TR/webdriver-bidi/#issue-365f0ed7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-remote-end-subscribe-steps%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-event-subscribe-priority%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-log-event-buffer%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A8%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-log-event-buffer%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-top%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-emit-an-event%E2%91%A1%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-log-event-buffer%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-log-event-buffer%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#module-input", + "https://www.w3.org/TR/webdriver-bidi/#modules-input", + "https://www.w3.org/TR/webdriver-bidi/#module-input-definition", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-remote-end-definition%E2%91%A4%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#module-input-types", + "https://www.w3.org/TR/webdriver-bidi/#type-input-origin", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-element%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#is-inputelementorigin", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-ordered-map%E2%91%A0%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#get-element-from-inputelementorigin-steps", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-environment-settings-object%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-relevant-global%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-window%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-execution-context%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A5%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-remote-reference%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-element%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A8%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A7%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-no-such-element%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A7%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#module-input-commands", + "https://www.w3.org/TR/webdriver-bidi/#command-input-performActions", + "https://www.w3.org/TR/webdriver-bidi/#commands-inputperformactions", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-actions", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A3%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A5%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-get-the-input-state", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-top%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-actions-options", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-is-element-origin", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-is-inputelementorigin", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-get-element-origin", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-element-from-inputelementorigin-steps", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-extract-an-action-sequence", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A5%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-dispatch-actions", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A7%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#command-input-releaseActions", + "https://www.w3.org/TR/webdriver-bidi/#commands-inputreleaseactions", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A3%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A6%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-top%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-get-the-input-state%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-actions-options%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-is-element-origin%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-is-inputelementorigin%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-get-element-origin%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-element-from-inputelementorigin-steps%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-input-cancel-list", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A6%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-dispatch-tick-actions", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-reset-the-input-state", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A7%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#command-input-setFiles", + "https://www.w3.org/TR/webdriver-bidi/#commands-inputsetfiles", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-remote-end-steps%E2%91%A3%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A6%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-get-a-navigable%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-nav-document%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-environment-settings-object%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-relevant-global%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-document-window%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-realm-execution-context%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-try%E2%91%A6%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-deserialize-remote-reference%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-element%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A8%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A8%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-no-such-element%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-htmlinputelement", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-attr-input-type", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-file-upload-state-(type%3Dfile)", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-fe-disabled", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A8%E2%91%A6", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A8%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-unable-to-set-file-input", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-attr-input-multiple", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors%E2%91%A8%E2%91%A7", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A8%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-errors-unable-to-set-file-input%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-input-type-file-selected", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-set-intersection", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-list-size%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-queue-an-element-task", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-user-interaction-task-source", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-update-the-file-selection", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-input-type-file-selected%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-error-code%E2%91%A8%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-unsupported-operation%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-concept-input-type-file-selected%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-dfn-success%E2%91%A7%E2%91%A5", + "https://www.w3.org/TR/webdriver-bidi/#patches", + "https://www.w3.org/TR/webdriver-bidi/#patches-html", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-report-the-error", + "https://www.w3.org/TR/webdriver-bidi/#error-reporting-steps", + "https://www.w3.org/TR/webdriver-bidi/#patches-console", + "https://www.w3.org/TR/webdriver-bidi/#console-steps", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-printer", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-console-steps%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#patchs-css", + "https://www.w3.org/TR/webdriver-bidi/#patchs-determine-the-device-pixel-ratio", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-determine-the-device-pixel-ratio%E2%91%A0", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-device-pixel-ratio-overrides%E2%91%A1", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-map-exists%E2%91%A4%E2%91%A8", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-window-navigable%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-device-pixel-ratio-overrides%E2%91%A2", + "https://www.w3.org/TR/webdriver-bidi/#ref-for-window-navigable%E2%91%A3", + "https://www.w3.org/TR/webdriver-bidi/#appendices", + "https://www.w3.org/TR/webdriver-bidi/#external-specifications", + "https://www.w3.org/TR/webdriver-bidi/#index", + "https://www.w3.org/TR/webdriver-bidi/#index-defined-here", + "https://www.w3.org/TR/webdriver-bidi/#index-defined-elsewhere", + "https://www.w3.org/TR/webdriver-bidi/#1ca1dd4a", + "https://www.w3.org/TR/webdriver-bidi/#8ef06ef9", + "https://www.w3.org/TR/webdriver-bidi/#40a66c6b", + "https://www.w3.org/TR/webdriver-bidi/#09fc63ab", + "https://www.w3.org/TR/webdriver-bidi/#cb066b75", + "https://www.w3.org/TR/webdriver-bidi/#3c7a99b2", + "https://www.w3.org/TR/webdriver-bidi/#e3f26532", + "https://www.w3.org/TR/webdriver-bidi/#6b7fd43d", + "https://www.w3.org/TR/webdriver-bidi/#52a5360f", + "https://www.w3.org/TR/webdriver-bidi/#2a2f1579", + "https://www.w3.org/TR/webdriver-bidi/#5fe22d95", + "https://www.w3.org/TR/webdriver-bidi/#5a8644fc", + "https://www.w3.org/TR/webdriver-bidi/#243f7dde", + "https://www.w3.org/TR/webdriver-bidi/#04e2fe80", + "https://www.w3.org/TR/webdriver-bidi/#740a93dd", + "https://www.w3.org/TR/webdriver-bidi/#e61855ae", + "https://www.w3.org/TR/webdriver-bidi/#3bdd6de9", + "https://www.w3.org/TR/webdriver-bidi/#62a0057d", + "https://www.w3.org/TR/webdriver-bidi/#87e64c92", + "https://www.w3.org/TR/webdriver-bidi/#7d9483c4", + "https://www.w3.org/TR/webdriver-bidi/#1e961507", + "https://www.w3.org/TR/webdriver-bidi/#99573380", + "https://www.w3.org/TR/webdriver-bidi/#85394472", + "https://www.w3.org/TR/webdriver-bidi/#49a2843d", + "https://www.w3.org/TR/webdriver-bidi/#296f3551", + "https://www.w3.org/TR/webdriver-bidi/#9714d594", + "https://www.w3.org/TR/webdriver-bidi/#96c16e60", + "https://www.w3.org/TR/webdriver-bidi/#aa414f4c", + "https://www.w3.org/TR/webdriver-bidi/#1cd7ff31", + "https://www.w3.org/TR/webdriver-bidi/#77211728", + "https://www.w3.org/TR/webdriver-bidi/#92b2d7da", + "https://www.w3.org/TR/webdriver-bidi/#a973e0fe", + "https://www.w3.org/TR/webdriver-bidi/#ff7203d2", + "https://www.w3.org/TR/webdriver-bidi/#404abb10", + "https://www.w3.org/TR/webdriver-bidi/#73b0c924", + "https://www.w3.org/TR/webdriver-bidi/#d462b34f", + "https://www.w3.org/TR/webdriver-bidi/#5216e1a0", + "https://www.w3.org/TR/webdriver-bidi/#2ef14d2e", + "https://www.w3.org/TR/webdriver-bidi/#fcde5484", + "https://www.w3.org/TR/webdriver-bidi/#c62cd7cf", + "https://www.w3.org/TR/webdriver-bidi/#4d437809", + "https://www.w3.org/TR/webdriver-bidi/#f7960529", + "https://www.w3.org/TR/webdriver-bidi/#ce720392", + "https://www.w3.org/TR/webdriver-bidi/#2eb6c572", + "https://www.w3.org/TR/webdriver-bidi/#347e8fe9", + "https://www.w3.org/TR/webdriver-bidi/#3b681a11", + "https://www.w3.org/TR/webdriver-bidi/#61266bdb", + "https://www.w3.org/TR/webdriver-bidi/#44dc083c", + "https://www.w3.org/TR/webdriver-bidi/#f1d11a13", + "https://www.w3.org/TR/webdriver-bidi/#d4873ea0", + "https://www.w3.org/TR/webdriver-bidi/#134d399c", + "https://www.w3.org/TR/webdriver-bidi/#8c337abd", + "https://www.w3.org/TR/webdriver-bidi/#34e1a2c9", + "https://www.w3.org/TR/webdriver-bidi/#bd2650e6", + "https://www.w3.org/TR/webdriver-bidi/#b44c8bda", + "https://www.w3.org/TR/webdriver-bidi/#2b83b63d", + "https://www.w3.org/TR/webdriver-bidi/#ec4bb300", + "https://www.w3.org/TR/webdriver-bidi/#5582c476", + "https://www.w3.org/TR/webdriver-bidi/#f8d00511", + "https://www.w3.org/TR/webdriver-bidi/#9d6036ea", + "https://www.w3.org/TR/webdriver-bidi/#fa3cd201", + "https://www.w3.org/TR/webdriver-bidi/#7ef0edbd", + "https://www.w3.org/TR/webdriver-bidi/#192e00bf", + "https://www.w3.org/TR/webdriver-bidi/#99403468", + "https://www.w3.org/TR/webdriver-bidi/#900ce14b", + "https://www.w3.org/TR/webdriver-bidi/#8f3fa597", + "https://www.w3.org/TR/webdriver-bidi/#1754fd49", + "https://www.w3.org/TR/webdriver-bidi/#7728ef75", + "https://www.w3.org/TR/webdriver-bidi/#a60df0fb", + "https://www.w3.org/TR/webdriver-bidi/#b7d560f9", + "https://www.w3.org/TR/webdriver-bidi/#e0160a7c", + "https://www.w3.org/TR/webdriver-bidi/#f74eadef", + "https://www.w3.org/TR/webdriver-bidi/#832894ed", + "https://www.w3.org/TR/webdriver-bidi/#d6e9496a", + "https://www.w3.org/TR/webdriver-bidi/#704f9119", + "https://www.w3.org/TR/webdriver-bidi/#821a5611", + "https://www.w3.org/TR/webdriver-bidi/#a4739eca", + "https://www.w3.org/TR/webdriver-bidi/#75574bed", + "https://www.w3.org/TR/webdriver-bidi/#a88453e8", + "https://www.w3.org/TR/webdriver-bidi/#69f07995", + "https://www.w3.org/TR/webdriver-bidi/#01ffad58", + "https://www.w3.org/TR/webdriver-bidi/#8a0f541d", + "https://www.w3.org/TR/webdriver-bidi/#bba0f383", + "https://www.w3.org/TR/webdriver-bidi/#51f1a168", + "https://www.w3.org/TR/webdriver-bidi/#b7212a68", + "https://www.w3.org/TR/webdriver-bidi/#ced1a660", + "https://www.w3.org/TR/webdriver-bidi/#b0fcb8d7", + "https://www.w3.org/TR/webdriver-bidi/#f256859a", + "https://www.w3.org/TR/webdriver-bidi/#0303e8e5", + "https://www.w3.org/TR/webdriver-bidi/#dc126c10", + "https://www.w3.org/TR/webdriver-bidi/#4a2cfa3a", + "https://www.w3.org/TR/webdriver-bidi/#644cb530", + "https://www.w3.org/TR/webdriver-bidi/#8e9945a0", + "https://www.w3.org/TR/webdriver-bidi/#81a76425", + "https://www.w3.org/TR/webdriver-bidi/#e6defb69", + "https://www.w3.org/TR/webdriver-bidi/#857d5516", + "https://www.w3.org/TR/webdriver-bidi/#983dc57c", + "https://www.w3.org/TR/webdriver-bidi/#006a831c", + "https://www.w3.org/TR/webdriver-bidi/#7ed2c230", + "https://www.w3.org/TR/webdriver-bidi/#7aab3a36", + "https://www.w3.org/TR/webdriver-bidi/#3ae34c95", + "https://www.w3.org/TR/webdriver-bidi/#88bac656", + "https://www.w3.org/TR/webdriver-bidi/#4ef92270", + "https://www.w3.org/TR/webdriver-bidi/#a0fdc68e", + "https://www.w3.org/TR/webdriver-bidi/#3bed2793", + "https://www.w3.org/TR/webdriver-bidi/#33ebb34d", + "https://www.w3.org/TR/webdriver-bidi/#7d9064d0", + "https://www.w3.org/TR/webdriver-bidi/#fd8ed7d1", + "https://www.w3.org/TR/webdriver-bidi/#a4361c75", + "https://www.w3.org/TR/webdriver-bidi/#c9e7c11a", + "https://www.w3.org/TR/webdriver-bidi/#d85a6c84", + "https://www.w3.org/TR/webdriver-bidi/#6ee0eab1", + "https://www.w3.org/TR/webdriver-bidi/#f7b00a8b", + "https://www.w3.org/TR/webdriver-bidi/#c07f8014", + "https://www.w3.org/TR/webdriver-bidi/#7b0b4fa0", + "https://www.w3.org/TR/webdriver-bidi/#7acd5143", + "https://www.w3.org/TR/webdriver-bidi/#50b05fad", + "https://www.w3.org/TR/webdriver-bidi/#eb1b1af3", + "https://www.w3.org/TR/webdriver-bidi/#3c61d9cd", + "https://www.w3.org/TR/webdriver-bidi/#8c3deeef", + "https://www.w3.org/TR/webdriver-bidi/#a8ffe756", + "https://www.w3.org/TR/webdriver-bidi/#a4341052", + "https://www.w3.org/TR/webdriver-bidi/#55213b5b", + "https://www.w3.org/TR/webdriver-bidi/#ee7bba09", + "https://www.w3.org/TR/webdriver-bidi/#366a7ed3", + "https://www.w3.org/TR/webdriver-bidi/#21347267", + "https://www.w3.org/TR/webdriver-bidi/#b42e14e0", + "https://www.w3.org/TR/webdriver-bidi/#a1d47575", + "https://www.w3.org/TR/webdriver-bidi/#24afcdf2", + "https://www.w3.org/TR/webdriver-bidi/#dc1cd39b", + "https://www.w3.org/TR/webdriver-bidi/#3268a8eb", + "https://www.w3.org/TR/webdriver-bidi/#1ab127d6", + "https://www.w3.org/TR/webdriver-bidi/#ac9d0099", + "https://www.w3.org/TR/webdriver-bidi/#b7c2e67b", + "https://www.w3.org/TR/webdriver-bidi/#984cc499", + "https://www.w3.org/TR/webdriver-bidi/#a8b5b96c", + "https://www.w3.org/TR/webdriver-bidi/#927f9c6b", + "https://www.w3.org/TR/webdriver-bidi/#759027a7", + "https://www.w3.org/TR/webdriver-bidi/#f20eafbd", + "https://www.w3.org/TR/webdriver-bidi/#f45987c0", + "https://www.w3.org/TR/webdriver-bidi/#fdd2dd4e", + "https://www.w3.org/TR/webdriver-bidi/#b281322d", + "https://www.w3.org/TR/webdriver-bidi/#b4ade816", + "https://www.w3.org/TR/webdriver-bidi/#73daca45", + "https://www.w3.org/TR/webdriver-bidi/#b8308563", + "https://www.w3.org/TR/webdriver-bidi/#5b13c537", + "https://www.w3.org/TR/webdriver-bidi/#b08d0bb2", + "https://www.w3.org/TR/webdriver-bidi/#83b269de", + "https://www.w3.org/TR/webdriver-bidi/#165b73c9", + "https://www.w3.org/TR/webdriver-bidi/#5d7209e9", + "https://www.w3.org/TR/webdriver-bidi/#94039a0c", + "https://www.w3.org/TR/webdriver-bidi/#83c59a3a", + "https://www.w3.org/TR/webdriver-bidi/#0c9b0d3c", + "https://www.w3.org/TR/webdriver-bidi/#4295ea17", + "https://www.w3.org/TR/webdriver-bidi/#36d15a6d", + "https://www.w3.org/TR/webdriver-bidi/#55a6b830", + "https://www.w3.org/TR/webdriver-bidi/#35972864", + "https://www.w3.org/TR/webdriver-bidi/#101c721c", + "https://www.w3.org/TR/webdriver-bidi/#235ddea5", + "https://www.w3.org/TR/webdriver-bidi/#1b5b1c0c", + "https://www.w3.org/TR/webdriver-bidi/#3349d69f", + "https://www.w3.org/TR/webdriver-bidi/#3b0ee7a3", + "https://www.w3.org/TR/webdriver-bidi/#f23dc013", + "https://www.w3.org/TR/webdriver-bidi/#b6a1ae3f", + "https://www.w3.org/TR/webdriver-bidi/#6e81ffb4", + "https://www.w3.org/TR/webdriver-bidi/#3752e9b0", + "https://www.w3.org/TR/webdriver-bidi/#9d2630e3", + "https://www.w3.org/TR/webdriver-bidi/#860a2f31", + "https://www.w3.org/TR/webdriver-bidi/#46fa7fd2", + "https://www.w3.org/TR/webdriver-bidi/#ad5c87c1", + "https://www.w3.org/TR/webdriver-bidi/#12b8dfc0", + "https://www.w3.org/TR/webdriver-bidi/#6031921b", + "https://www.w3.org/TR/webdriver-bidi/#0318be47", + "https://www.w3.org/TR/webdriver-bidi/#82529e79", + "https://www.w3.org/TR/webdriver-bidi/#29312c18", + "https://www.w3.org/TR/webdriver-bidi/#3e12e042", + "https://www.w3.org/TR/webdriver-bidi/#10ae7dd2", + "https://www.w3.org/TR/webdriver-bidi/#f5265332", + "https://www.w3.org/TR/webdriver-bidi/#8a87315e", + "https://www.w3.org/TR/webdriver-bidi/#86573168", + "https://www.w3.org/TR/webdriver-bidi/#fe07e8b2", + "https://www.w3.org/TR/webdriver-bidi/#845581d4", + "https://www.w3.org/TR/webdriver-bidi/#8a30477b", + "https://www.w3.org/TR/webdriver-bidi/#168f1b6e", + "https://www.w3.org/TR/webdriver-bidi/#45e3552a", + "https://www.w3.org/TR/webdriver-bidi/#f449f7f7", + "https://www.w3.org/TR/webdriver-bidi/#bbdbe8e2", + "https://www.w3.org/TR/webdriver-bidi/#a72449dd", + "https://www.w3.org/TR/webdriver-bidi/#67357427", + "https://www.w3.org/TR/webdriver-bidi/#e8cf713d", + "https://www.w3.org/TR/webdriver-bidi/#228be966", + "https://www.w3.org/TR/webdriver-bidi/#1cd8aace", + "https://www.w3.org/TR/webdriver-bidi/#2594e562", + "https://www.w3.org/TR/webdriver-bidi/#6454d3fd", + "https://www.w3.org/TR/webdriver-bidi/#13dd6cae", + "https://www.w3.org/TR/webdriver-bidi/#43ac8374", + "https://www.w3.org/TR/webdriver-bidi/#dc248371", + "https://www.w3.org/TR/webdriver-bidi/#1bba3db7", + "https://www.w3.org/TR/webdriver-bidi/#c2359c09", + "https://www.w3.org/TR/webdriver-bidi/#17555c59", + "https://www.w3.org/TR/webdriver-bidi/#5bec656b", + "https://www.w3.org/TR/webdriver-bidi/#9a517a7d", + "https://www.w3.org/TR/webdriver-bidi/#72aaa5d6", + "https://www.w3.org/TR/webdriver-bidi/#ce15d5dc", + "https://www.w3.org/TR/webdriver-bidi/#e99bd18e", + "https://www.w3.org/TR/webdriver-bidi/#5991ccfb", + "https://www.w3.org/TR/webdriver-bidi/#9c4c1e66", + "https://www.w3.org/TR/webdriver-bidi/#d908b2b2", + "https://www.w3.org/TR/webdriver-bidi/#560275c7", + "https://www.w3.org/TR/webdriver-bidi/#e3288657", + "https://www.w3.org/TR/webdriver-bidi/#385fbb31", + "https://www.w3.org/TR/webdriver-bidi/#94b4d250", + "https://www.w3.org/TR/webdriver-bidi/#ee7ced71", + "https://www.w3.org/TR/webdriver-bidi/#9c8bd3bd", + "https://www.w3.org/TR/webdriver-bidi/#dae0bfde", + "https://www.w3.org/TR/webdriver-bidi/#34ce7bcd", + "https://www.w3.org/TR/webdriver-bidi/#376bb55f", + "https://www.w3.org/TR/webdriver-bidi/#66f104fd", + "https://www.w3.org/TR/webdriver-bidi/#bbb5f6df", + "https://www.w3.org/TR/webdriver-bidi/#1cc25024", + "https://www.w3.org/TR/webdriver-bidi/#f1eccc95", + "https://www.w3.org/TR/webdriver-bidi/#995692ee", + "https://www.w3.org/TR/webdriver-bidi/#124a994b", + "https://www.w3.org/TR/webdriver-bidi/#ecf857b3", + "https://www.w3.org/TR/webdriver-bidi/#a41b1317", + "https://www.w3.org/TR/webdriver-bidi/#e9c58cef", + "https://www.w3.org/TR/webdriver-bidi/#ae2a6342", + "https://www.w3.org/TR/webdriver-bidi/#bd736ec6", + "https://www.w3.org/TR/webdriver-bidi/#30717154", + "https://www.w3.org/TR/webdriver-bidi/#deb71015", + "https://www.w3.org/TR/webdriver-bidi/#66aee777", + "https://www.w3.org/TR/webdriver-bidi/#4411082c", + "https://www.w3.org/TR/webdriver-bidi/#090d36dc", + "https://www.w3.org/TR/webdriver-bidi/#825cbc48", + "https://www.w3.org/TR/webdriver-bidi/#b4c365f8", + "https://www.w3.org/TR/webdriver-bidi/#f245d73f", + "https://www.w3.org/TR/webdriver-bidi/#5474e1ba", + "https://www.w3.org/TR/webdriver-bidi/#aaaa2760", + "https://www.w3.org/TR/webdriver-bidi/#18e19756", + "https://www.w3.org/TR/webdriver-bidi/#53275e46", + "https://www.w3.org/TR/webdriver-bidi/#a3b18719", + "https://www.w3.org/TR/webdriver-bidi/#f43d6978", + "https://www.w3.org/TR/webdriver-bidi/#3b38c2fe", + "https://www.w3.org/TR/webdriver-bidi/#6f2dfa22", + "https://www.w3.org/TR/webdriver-bidi/#77b4c09a", + "https://www.w3.org/TR/webdriver-bidi/#7b0d918d", + "https://www.w3.org/TR/webdriver-bidi/#3de9e659", + "https://www.w3.org/TR/webdriver-bidi/#970896d2", + "https://www.w3.org/TR/webdriver-bidi/#7838e1c1", + "https://www.w3.org/TR/webdriver-bidi/#bc7b9068", + "https://www.w3.org/TR/webdriver-bidi/#027e3e49", + "https://www.w3.org/TR/webdriver-bidi/#ab3919d2", + "https://www.w3.org/TR/webdriver-bidi/#915aff5e", + "https://www.w3.org/TR/webdriver-bidi/#bb1f9628", + "https://www.w3.org/TR/webdriver-bidi/#951b74c1", + "https://www.w3.org/TR/webdriver-bidi/#4a3bf5fb", + "https://www.w3.org/TR/webdriver-bidi/#ae8def21", + "https://www.w3.org/TR/webdriver-bidi/#a326add7", + "https://www.w3.org/TR/webdriver-bidi/#f937b7b6", + "https://www.w3.org/TR/webdriver-bidi/#b4fecc2d", + "https://www.w3.org/TR/webdriver-bidi/#03afaf9c", + "https://www.w3.org/TR/webdriver-bidi/#1243a891", + "https://www.w3.org/TR/webdriver-bidi/#d8f8bd6e", + "https://www.w3.org/TR/webdriver-bidi/#16d07e10", + "https://www.w3.org/TR/webdriver-bidi/#73e75483", + "https://www.w3.org/TR/webdriver-bidi/#b012ccb2", + "https://www.w3.org/TR/webdriver-bidi/#32dd7834", + "https://www.w3.org/TR/webdriver-bidi/#860300d4", + "https://www.w3.org/TR/webdriver-bidi/#e5ea84f2", + "https://www.w3.org/TR/webdriver-bidi/#7a87d819", + "https://www.w3.org/TR/webdriver-bidi/#dc3369de", + "https://www.w3.org/TR/webdriver-bidi/#c88f3887", + "https://www.w3.org/TR/webdriver-bidi/#0fa357c3", + "https://www.w3.org/TR/webdriver-bidi/#649608b9", + "https://www.w3.org/TR/webdriver-bidi/#3fca5a9e", + "https://www.w3.org/TR/webdriver-bidi/#8e8decb4", + "https://www.w3.org/TR/webdriver-bidi/#99c988d6", + "https://www.w3.org/TR/webdriver-bidi/#7d4424b2", + "https://www.w3.org/TR/webdriver-bidi/#762869d3", + "https://www.w3.org/TR/webdriver-bidi/#4c07280e", + "https://www.w3.org/TR/webdriver-bidi/#15e48c39", + "https://www.w3.org/TR/webdriver-bidi/#0e6b2056", + "https://www.w3.org/TR/webdriver-bidi/#0204d188", + "https://www.w3.org/TR/webdriver-bidi/#653d0848", + "https://www.w3.org/TR/webdriver-bidi/#fe28f7a2", + "https://www.w3.org/TR/webdriver-bidi/#54627f47", + "https://www.w3.org/TR/webdriver-bidi/#984221ca", + "https://www.w3.org/TR/webdriver-bidi/#0e8de730", + "https://www.w3.org/TR/webdriver-bidi/#bb049306", + "https://www.w3.org/TR/webdriver-bidi/#12d6b9a8", + "https://www.w3.org/TR/webdriver-bidi/#c93b716b", + "https://www.w3.org/TR/webdriver-bidi/#dc3515ac", + "https://www.w3.org/TR/webdriver-bidi/#4e30844a", + "https://www.w3.org/TR/webdriver-bidi/#7c195f8b", + "https://www.w3.org/TR/webdriver-bidi/#188c72fd", + "https://www.w3.org/TR/webdriver-bidi/#68f71c38", + "https://www.w3.org/TR/webdriver-bidi/#11a093d4", + "https://www.w3.org/TR/webdriver-bidi/#b128389d", + "https://www.w3.org/TR/webdriver-bidi/#cfb61696", + "https://www.w3.org/TR/webdriver-bidi/#2bd00413", + "https://www.w3.org/TR/webdriver-bidi/#f54d7e80", + "https://www.w3.org/TR/webdriver-bidi/#6fdeb498", + "https://www.w3.org/TR/webdriver-bidi/#8324e9bf", + "https://www.w3.org/TR/webdriver-bidi/#937aae24", + "https://www.w3.org/TR/webdriver-bidi/#a4fa4138", + "https://www.w3.org/TR/webdriver-bidi/#86248dcc", + "https://www.w3.org/TR/webdriver-bidi/#b75eba20", + "https://www.w3.org/TR/webdriver-bidi/#c9b060e8", + "https://www.w3.org/TR/webdriver-bidi/#7ba62735", + "https://www.w3.org/TR/webdriver-bidi/#43b801c6", + "https://www.w3.org/TR/webdriver-bidi/#8edbb84a", + "https://www.w3.org/TR/webdriver-bidi/#c8f141cb", + "https://www.w3.org/TR/webdriver-bidi/#eec5e973", + "https://www.w3.org/TR/webdriver-bidi/#34c941b4", + "https://www.w3.org/TR/webdriver-bidi/#86d2a717", + "https://www.w3.org/TR/webdriver-bidi/#79abce82", + "https://www.w3.org/TR/webdriver-bidi/#9df0b52b", + "https://www.w3.org/TR/webdriver-bidi/#12553145", + "https://www.w3.org/TR/webdriver-bidi/#b85ee3be", + "https://www.w3.org/TR/webdriver-bidi/#60d30068", + "https://www.w3.org/TR/webdriver-bidi/#c0868016", + "https://www.w3.org/TR/webdriver-bidi/#852ada56", + "https://www.w3.org/TR/webdriver-bidi/#3ab2ec8b", + "https://www.w3.org/TR/webdriver-bidi/#3a711be7", + "https://www.w3.org/TR/webdriver-bidi/#dcffbccd", + "https://www.w3.org/TR/webdriver-bidi/#ca3ca4ae", + "https://www.w3.org/TR/webdriver-bidi/#40a40eb4", + "https://www.w3.org/TR/webdriver-bidi/#5442ea33", + "https://www.w3.org/TR/webdriver-bidi/#7b25d9c7", + "https://www.w3.org/TR/webdriver-bidi/#59f85222", + "https://www.w3.org/TR/webdriver-bidi/#8fe058df", + "https://www.w3.org/TR/webdriver-bidi/#f8a78075", + "https://www.w3.org/TR/webdriver-bidi/#36828a3b", + "https://www.w3.org/TR/webdriver-bidi/#f74c0529", + "https://www.w3.org/TR/webdriver-bidi/#3555dec9", + "https://www.w3.org/TR/webdriver-bidi/#189cc7e1", + "https://www.w3.org/TR/webdriver-bidi/#2cb81ae5", + "https://www.w3.org/TR/webdriver-bidi/#1de8fd53", + "https://www.w3.org/TR/webdriver-bidi/#e0009b68", + "https://www.w3.org/TR/webdriver-bidi/#9cdec15d", + "https://www.w3.org/TR/webdriver-bidi/#0e49ec9c", + "https://www.w3.org/TR/webdriver-bidi/#692926a2", + "https://www.w3.org/TR/webdriver-bidi/#7772cf2b", + "https://www.w3.org/TR/webdriver-bidi/#d987366b", + "https://www.w3.org/TR/webdriver-bidi/#23f4a8a8", + "https://www.w3.org/TR/webdriver-bidi/#14549aa9", + "https://www.w3.org/TR/webdriver-bidi/#136bda97", + "https://www.w3.org/TR/webdriver-bidi/#94219729", + "https://www.w3.org/TR/webdriver-bidi/#ee843963", + "https://www.w3.org/TR/webdriver-bidi/#4b2f24dc", + "https://www.w3.org/TR/webdriver-bidi/#c8ff8493", + "https://www.w3.org/TR/webdriver-bidi/#a6b7422e", + "https://www.w3.org/TR/webdriver-bidi/#01bb51cf", + "https://www.w3.org/TR/webdriver-bidi/#3b685aa8", + "https://www.w3.org/TR/webdriver-bidi/#80d3509a", + "https://www.w3.org/TR/webdriver-bidi/#9ca7d4a1", + "https://www.w3.org/TR/webdriver-bidi/#5b668531", + "https://www.w3.org/TR/webdriver-bidi/#2824ac8b", + "https://www.w3.org/TR/webdriver-bidi/#87bc2e00", + "https://www.w3.org/TR/webdriver-bidi/#a4cd9a97", + "https://www.w3.org/TR/webdriver-bidi/#e04103bb", + "https://www.w3.org/TR/webdriver-bidi/#8da4d1e3", + "https://www.w3.org/TR/webdriver-bidi/#61391dee", + "https://www.w3.org/TR/webdriver-bidi/#900d0fcf", + "https://www.w3.org/TR/webdriver-bidi/#47ddb771", + "https://www.w3.org/TR/webdriver-bidi/#9a707b42", + "https://www.w3.org/TR/webdriver-bidi/#a192e236", + "https://www.w3.org/TR/webdriver-bidi/#3d4e20bd", + "https://www.w3.org/TR/webdriver-bidi/#38951aff", + "https://www.w3.org/TR/webdriver-bidi/#0d868320", + "https://www.w3.org/TR/webdriver-bidi/#b88752f4", + "https://www.w3.org/TR/webdriver-bidi/#d7833fd3", + "https://www.w3.org/TR/webdriver-bidi/#a49a724d", + "https://www.w3.org/TR/webdriver-bidi/#35d404ee", + "https://www.w3.org/TR/webdriver-bidi/#82c23298", + "https://www.w3.org/TR/webdriver-bidi/#4cca2ed0", + "https://www.w3.org/TR/webdriver-bidi/#79d221ec", + "https://www.w3.org/TR/webdriver-bidi/#4fc3ddf9", + "https://www.w3.org/TR/webdriver-bidi/#4c001258", + "https://www.w3.org/TR/webdriver-bidi/#cb9acc83", + "https://www.w3.org/TR/webdriver-bidi/#4be6272b", + "https://www.w3.org/TR/webdriver-bidi/#b4d0386e", + "https://www.w3.org/TR/webdriver-bidi/#e7c89135", + "https://www.w3.org/TR/webdriver-bidi/#7aa9c8e0", + "https://www.w3.org/TR/webdriver-bidi/#914911f0", + "https://www.w3.org/TR/webdriver-bidi/#8b8836ef", + "https://www.w3.org/TR/webdriver-bidi/#6945cc54", + "https://www.w3.org/TR/webdriver-bidi/#a869e769", + "https://www.w3.org/TR/webdriver-bidi/#d7c34998", + "https://www.w3.org/TR/webdriver-bidi/#db8fb765", + "https://www.w3.org/TR/webdriver-bidi/#406d66ae", + "https://www.w3.org/TR/webdriver-bidi/#930544fb", + "https://www.w3.org/TR/webdriver-bidi/#82ca3efc", + "https://www.w3.org/TR/webdriver-bidi/#6728fdee", + "https://www.w3.org/TR/webdriver-bidi/#4013a022", + "https://www.w3.org/TR/webdriver-bidi/#references", + "https://www.w3.org/TR/webdriver-bidi/#normative", + "https://www.w3.org/TR/webdriver-bidi/#biblio-console", + "https://www.w3.org/TR/webdriver-bidi/#biblio-cookies", + "https://www.w3.org/TR/webdriver-bidi/#biblio-css-paint-api-1", + "https://www.w3.org/TR/webdriver-bidi/#biblio-css21", + "https://www.w3.org/TR/webdriver-bidi/#biblio-css22", + "https://www.w3.org/TR/webdriver-bidi/#biblio-cssom-view-1", + "https://www.w3.org/TR/webdriver-bidi/#biblio-dom", + "https://www.w3.org/TR/webdriver-bidi/#biblio-ecmascript", + "https://www.w3.org/TR/webdriver-bidi/#biblio-encoding", + "https://www.w3.org/TR/webdriver-bidi/#biblio-fetch", + "https://www.w3.org/TR/webdriver-bidi/#biblio-fullscreen", + "https://www.w3.org/TR/webdriver-bidi/#biblio-geometry-1", + "https://www.w3.org/TR/webdriver-bidi/#biblio-hr-time-3", + "https://www.w3.org/TR/webdriver-bidi/#biblio-html", + "https://www.w3.org/TR/webdriver-bidi/#biblio-infra", + "https://www.w3.org/TR/webdriver-bidi/#biblio-mediaqueries-5", + "https://www.w3.org/TR/webdriver-bidi/#biblio-mimesniff", + "https://www.w3.org/TR/webdriver-bidi/#biblio-resource-timing", + "https://www.w3.org/TR/webdriver-bidi/#biblio-rfc4648", + "https://www.w3.org/TR/webdriver-bidi/#biblio-rfc6455", + "https://www.w3.org/TR/webdriver-bidi/#biblio-rfc8610", + "https://www.w3.org/TR/webdriver-bidi/#biblio-rfc9110", + "https://www.w3.org/TR/webdriver-bidi/#biblio-rfc9562", + "https://www.w3.org/TR/webdriver-bidi/#biblio-selectors-4", + "https://www.w3.org/TR/webdriver-bidi/#biblio-service-workers", + "https://www.w3.org/TR/webdriver-bidi/#biblio-unicode", + "https://www.w3.org/TR/webdriver-bidi/#biblio-url", + "https://www.w3.org/TR/webdriver-bidi/#biblio-webaudio-10", + "https://www.w3.org/TR/webdriver-bidi/#biblio-webdriver", + "https://www.w3.org/TR/webdriver-bidi/#biblio-webdriver2", + "https://www.w3.org/TR/webdriver-bidi/#biblio-webidl", + "https://www.w3.org/TR/webdriver-bidi/#informative", + "https://www.w3.org/TR/webdriver-bidi/#biblio-css-values-3", + "https://www.w3.org/TR/webdriver-bidi/#biblio-http11", + "https://www.w3.org/TR/webdriver-bidi/#biblio-json-rpc", + "https://www.w3.org/TR/webdriver-bidi/#biblio-same-site-cookies", + "https://www.w3.org/TR/webdriver-bidi/#biblio-urlpattern", + "https://www.w3.org/TR/webdriver-bidi/#issues-index" + ] +} \ No newline at end of file diff --git a/tr/index.json b/tr/index.json index cd17de201434..39daa515921f 100644 --- a/tr/index.json +++ b/tr/index.json @@ -1,7 +1,7 @@ { "type": "crawl", "title": "Reffy crawl", - "date": "2024-11-29T01:34:55.688Z", + "date": "2024-11-30T01:51:49.217Z", "options": { "fallback": "tr/index.json", "output": "report", @@ -21,7 +21,6 @@ "client-hint-reliability", "no-vary-search", "rfc6265bis", - "webp", "dom", "css-typed-om-2", "font-metrics-api-1", @@ -65,7 +64,6 @@ "notifications", "private-aggregation-api", "topics", - "gpc-spec", "nav-tracking-mitigations", "private-click-measurement", "requestStorageAccessFor", @@ -161,13 +159,13 @@ "media-playback-quality", "mediacapture-automation", "mediacapture-handle-actions", + "mediacapture-surface-control", "permissions-registry", "network-reporting", "sparql12-concepts", "web-nfc", "web-share-target", "passkey-endpoints", - "webdriver-bidi", "webrtc-ice", "wasm-core-2-fork-branch-hinting", "wasm-js-api-2-fork-content-security-policy", @@ -280,6 +278,7 @@ "rfc6266", "rfc6386", "rfc6454", + "rfc6455", "rfc6797", "rfc7034", "rfc7239", @@ -304,6 +303,7 @@ "rfc9163", "rfc9218", "rfc9530", + "rfc9649", "promises-guide", "w3c-patent-policy", "w3c-process", @@ -463,6 +463,7 @@ "geolocation-sensor", "geolocation", "geometry-1", + "gpc", "graphics-aam-1.0", "graphics-aria-1.0", "gyroscope", @@ -616,6 +617,7 @@ "webcodecs-vp9-codec-registration", "webcodecs", "WebCryptoAPI", + "webdriver-bidi", "webdriver2", "webgpu", "webmidi", @@ -666,10 +668,10 @@ ] }, "stats": { - "crawled": 334, + "crawled": 336, "errors": 0 }, - "crawler": "reffy-17.2.10", + "crawler": "reffy-18.0.0", "results": [ { "url": "https://aomediacodec.github.io/av1-spec/av1-spec.pdf", @@ -715,7 +717,7 @@ "https://aomediacodec.github.io/av1-spec/" ], "crawled": "https://aomediacodec.github.io/av1-spec/av1-spec.pdf", - "date": "29 November 2024", + "date": "30 November 2024", "links": "links/av1-spec.json" }, { @@ -8415,7 +8417,7 @@ ], "release": { "url": "https://www.w3.org/TR/css-view-transitions-2/", - "status": "First Public Working Draft", + "status": "Working Draft", "filename": "Overview.html" }, "nightly": { @@ -9223,7 +9225,7 @@ ], "release": { "url": "https://www.w3.org/TR/device-posture/", - "status": "Working Draft", + "status": "Candidate Recommendation Snapshot", "filename": "Overview.html" }, "nightly": { @@ -9470,7 +9472,7 @@ ], "release": { "url": "https://www.w3.org/TR/edit-context/", - "status": "First Public Working Draft", + "status": "Working Draft", "filename": "Overview.html" }, "nightly": { @@ -9826,7 +9828,7 @@ ], "crawled": "https://www.w3.org/TR/eme-stream-mp4/", "crawlCacheInfo": { - "lastModified": "Fri, 12 Jul 2024 12:39:25 GMT" + "lastModified": "Fri, 12 Jul 2024 12:26:25 GMT" }, "generator": "respec", "date": "18 July 2024", @@ -10883,6 +10885,66 @@ "headings": "headings/geometry-1.json", "ids": "ids/geometry-1.json" }, + { + "url": "https://www.w3.org/TR/gpc/", + "seriesComposition": "full", + "shortname": "gpc", + "series": { + "shortname": "gpc", + "currentSpecification": "gpc", + "title": "Global Privacy Control (GPC)", + "shortTitle": "GPC", + "releaseUrl": "https://www.w3.org/TR/gpc/", + "nightlyUrl": "https://w3c.github.io/gpc/" + }, + "formerNames": [ + "gpc-spec" + ], + "organization": "W3C", + "groups": [ + { + "name": "Privacy Working Group", + "url": "https://www.w3.org/groups/wg/privacy/" + } + ], + "release": { + "url": "https://www.w3.org/TR/gpc/", + "status": "Working Draft", + "filename": "Overview.html" + }, + "nightly": { + "url": "https://w3c.github.io/gpc/", + "status": "Editor's Draft", + "alternateUrls": [], + "repository": "https://github.com/w3c/gpc", + "sourcePath": "index.html", + "filename": "index.html" + }, + "title": "Global Privacy Control (GPC)", + "source": "w3c", + "shortTitle": "GPC", + "categories": [ + "browser" + ], + "standing": "good", + "versions": [ + "https://www.w3.org/TR/gpc/", + "https://w3c.github.io/gpc/" + ], + "crawled": "https://www.w3.org/TR/gpc/", + "crawlCacheInfo": { + "lastModified": "Fri, 22 Nov 2024 17:20:21 GMT" + }, + "generator": "respec", + "date": "22 November 2024", + "revision": "04570c6f624dfe1b92851f61a3bcffce4a31a461", + "links": "links/gpc.json", + "refs": "refs/gpc.json", + "idl": "idl/gpc.idl", + "dfns": "dfns/gpc.json", + "headings": "headings/gpc.json", + "ids": "ids/gpc.json" + }, { "url": "https://www.w3.org/TR/graphics-aam-1.0/", "seriesComposition": "full", @@ -13967,11 +14029,11 @@ ], "crawled": "https://www.w3.org/TR/openscreenprotocol/", "crawlCacheInfo": { - "lastModified": "Tue, 08 Oct 2024 23:16:42 GMT" + "lastModified": "Fri, 29 Nov 2024 16:43:50 GMT" }, "generator": "bikeshed", - "date": "8 October 2024", - "revision": "886800d8b5e5bc509638a88eb5e56383e02333fa", + "date": "29 November 2024", + "revision": "a0a747944fbdd3db052384e0e0cb0d63cb3f3313", "algorithms": "algorithms/openscreenprotocol.json", "links": "links/openscreenprotocol.json", "refs": "refs/openscreenprotocol.json", @@ -14004,7 +14066,7 @@ ], "release": { "url": "https://www.w3.org/TR/orientation-event/", - "status": "Working Draft", + "status": "Candidate Recommendation Snapshot", "filename": "Overview.html" }, "nightly": { @@ -14798,11 +14860,11 @@ ], "crawled": "https://www.w3.org/TR/pointerevents3/", "crawlCacheInfo": { - "lastModified": "Tue, 19 Nov 2024 19:01:34 GMT" + "lastModified": "Fri, 29 Nov 2024 22:13:54 GMT" }, "generator": "respec", - "date": "19 November 2024", - "revision": "6800523390644fe2bb7ed2c14174a5d74da658f1", + "date": "29 November 2024", + "revision": "021c4a951c10ff29fe9b1767fd71901852336e82", "algorithms": "algorithms/pointerevents3.json", "links": "links/pointerevents3.json", "refs": "refs/pointerevents3.json", @@ -18043,7 +18105,7 @@ ], "release": { "url": "https://www.w3.org/TR/uievents-code/", - "status": "Candidate Recommendation Snapshot", + "status": "Proposed Recommendation", "filename": "Overview.html" }, "title": "UI Events KeyboardEvent code Values", @@ -18099,7 +18161,7 @@ ], "release": { "url": "https://www.w3.org/TR/uievents-key/", - "status": "Candidate Recommendation Snapshot", + "status": "Proposed Recommendation", "filename": "Overview.html" }, "title": "UI Events KeyboardEvent key Values", @@ -18289,7 +18351,7 @@ }, "title": "User Timing", "source": "w3c", - "shortTitle": "User Timing 3", + "shortTitle": "User Timing", "categories": [ "browser" ], @@ -18462,7 +18524,7 @@ "sourcePath": "index.html", "filename": "index.html" }, - "title": "Vibration API (Second Edition)", + "title": "Vibration API", "source": "w3c", "shortTitle": "Vibration API", "categories": [ @@ -18482,10 +18544,11 @@ ], "crawled": "https://www.w3.org/TR/vibration/", "crawlCacheInfo": { - "lastModified": "Thu, 13 Oct 2016 14:22:28 GMT" + "lastModified": "Fri, 29 Nov 2024 14:00:44 GMT" }, "generator": "respec", - "date": "18 October 2016", + "date": "29 November 2024", + "revision": "bd8fb21c94f999a7e207541bbbeeb7680df53328", "algorithms": "algorithms/vibration.json", "links": "links/vibration.json", "refs": "refs/vibration.json", @@ -19182,7 +19245,7 @@ } ], "release": { - "url": "https://www.w3.org/TR/webaudio/", + "url": "https://www.w3.org/TR/webaudio-1.0/", "status": "Recommendation", "filename": "Overview.html" }, @@ -19194,7 +19257,7 @@ "sourcePath": "index.bs", "filename": "index.html" }, - "title": "Web Audio API 1.1", + "title": "Web Audio API", "source": "w3c", "shortTitle": "Web Audio API", "categories": [ @@ -19209,16 +19272,15 @@ }, "versions": [ "https://www.w3.org/TR/webaudio-1.0/", - "https://www.w3.org/TR/webaudio/", "https://webaudio.github.io/web-audio-api/" ], - "crawled": "https://www.w3.org/TR/webaudio/", + "crawled": "https://www.w3.org/TR/webaudio-1.0/", "crawlCacheInfo": { - "lastModified": "Fri, 01 Nov 2024 21:11:46 GMT" + "lastModified": "Tue, 08 Jun 2021 17:24:13 GMT" }, "generator": "bikeshed", - "date": "5 November 2024", - "revision": "26962420c302c52605b3552531453b933801ef6a", + "date": "17 June 2021", + "revision": "085538bbdd207934bfca2cc159be877df65d6392", "algorithms": "algorithms/webaudio-1.0.json", "links": "links/webaudio-1.0.json", "refs": "refs/webaudio-1.0.json", @@ -20328,6 +20390,63 @@ "headings": "headings/WebCryptoAPI.json", "ids": "ids/WebCryptoAPI.json" }, + { + "url": "https://www.w3.org/TR/webdriver-bidi/", + "seriesComposition": "full", + "shortname": "webdriver-bidi", + "series": { + "shortname": "webdriver-bidi", + "currentSpecification": "webdriver-bidi", + "title": "WebDriver BiDi", + "shortTitle": "WebDriver BiDi", + "releaseUrl": "https://www.w3.org/TR/webdriver-bidi/", + "nightlyUrl": "https://w3c.github.io/webdriver-bidi/" + }, + "organization": "W3C", + "groups": [ + { + "name": "Browser Testing and Tools Working Group", + "url": "https://www.w3.org/groups/wg/browser-tools-testing/" + } + ], + "release": { + "url": "https://www.w3.org/TR/webdriver-bidi/", + "status": "First Public Working Draft", + "filename": "Overview.html" + }, + "nightly": { + "url": "https://w3c.github.io/webdriver-bidi/", + "status": "Editor's Draft", + "alternateUrls": [], + "repository": "https://github.com/w3c/webdriver-bidi", + "sourcePath": "index.bs", + "filename": "index.html" + }, + "title": "WebDriver BiDi", + "source": "w3c", + "shortTitle": "WebDriver BiDi", + "categories": [ + "browser" + ], + "standing": "good", + "versions": [ + "https://www.w3.org/TR/webdriver-bidi/", + "https://w3c.github.io/webdriver-bidi/" + ], + "crawled": "https://www.w3.org/TR/webdriver-bidi/", + "crawlCacheInfo": { + "lastModified": "Tue, 19 Nov 2024 15:44:48 GMT" + }, + "generator": "bikeshed", + "date": "21 November 2024", + "revision": "46306e803c4555b210a9a784505df9a0d9b0717f", + "algorithms": "algorithms/webdriver-bidi.json", + "links": "links/webdriver-bidi.json", + "refs": "refs/webdriver-bidi.json", + "dfns": "dfns/webdriver-bidi.json", + "headings": "headings/webdriver-bidi.json", + "ids": "ids/webdriver-bidi.json" + }, { "url": "https://www.w3.org/TR/webdriver2/", "seriesComposition": "full", diff --git a/tr/links/gpc.json b/tr/links/gpc.json new file mode 100644 index 000000000000..c3fe84fa62be --- /dev/null +++ b/tr/links/gpc.json @@ -0,0 +1,72 @@ +{ + "spec": { + "title": "Global Privacy Control (GPC)", + "url": "https://www.w3.org/TR/gpc/" + }, + "links": { + "rawlinks": { + "https://coag.gov/app/uploads/2023/03/FINAL-CLEAN-2023.03.15-Official-CPA-Rules.pdf": {}, + "https://cppa.ca.gov/regulations/pdf/cppa_regs.pdf": {}, + "https://datatracker.ietf.org/doc/html/bcp14": {}, + "https://datatracker.ietf.org/doc/html/rfc8259": { + "anchors": [ + "section-4" + ] + }, + "https://edps.europa.eu/data-protection/our-work/publications/legislation/directive-2009136ec_en": {}, + "https://eur-lex.europa.eu/legal-content/EN/TXT/HTML/?uri=CELEX:32016R0679&from=EN": {}, + "https://html.spec.whatwg.org/multipage/": {}, + "https://oag.ca.gov/sites/all/files/agweb/pdfs/privacy/ccpa-fsor.pdf": {}, + "https://w3c.github.io/gpc/explainer": {}, + "https://webidl.spec.whatwg.org/": {}, + "https://www.leg.state.nv.us/NRS/NRS-603A.html": {}, + "https://www.oag.ca.gov/sites/all/files/agweb/pdfs/privacy/oal-sub-final-text-of-regs.pdf?": {}, + "https://www.rfc-editor.org/rfc/rfc2119": {}, + "https://www.rfc-editor.org/rfc/rfc3339": {}, + "https://www.rfc-editor.org/rfc/rfc5234": {}, + "https://www.rfc-editor.org/rfc/rfc8174": {}, + "https://www.rfc-editor.org/rfc/rfc8259": {}, + "https://www.rfc-editor.org/rfc/rfc8615": {}, + "https://www.w3.org/2011/tracking-protection/": {}, + "https://www.w3.org/TR/": {}, + "https://www.w3.org/TR/privacy-principles/": {}, + "https://www.w3.org/TR/tracking-dnt/": {}, + "https://www.w3.org/groups/wg/privacy": {}, + "https://www.w3.org/groups/wg/privacy/ipr": {}, + "https://www.w3.org/policies/patent-policy/": { + "anchors": [ + "def-essential", + "sec-Disclosure" + ] + }, + "https://www.w3.org/policies/process/20231103/": { + "anchors": [ + "recs-and-notes" + ] + } + }, + "autolinks": { + "https://html.spec.whatwg.org/multipage/document-sequences.html": { + "anchors": [ + "top-level-browsing-context", + "nav-document" + ] + }, + "https://html.spec.whatwg.org/multipage/system-state.html": { + "anchors": [ + "navigator" + ] + }, + "https://html.spec.whatwg.org/multipage/workers.html": { + "anchors": [ + "workernavigator" + ] + }, + "https://webidl.spec.whatwg.org/": { + "anchors": [ + "idl-boolean" + ] + } + } + } +} \ No newline at end of file diff --git a/tr/links/pointerevents3.json b/tr/links/pointerevents3.json index dee41a008580..284be4450ebe 100644 --- a/tr/links/pointerevents3.json +++ b/tr/links/pointerevents3.json @@ -98,13 +98,7 @@ ] }, "https://w3c.github.io/touch-events/": {}, - "https://webidl.spec.whatwg.org/": { - "anchors": [ - "idl-sequence", - "Exposed", - "SecureContext" - ] - }, + "https://webidl.spec.whatwg.org/": {}, "https://www.rfc-editor.org/rfc/rfc2119": {}, "https://www.rfc-editor.org/rfc/rfc8174": {}, "https://www.w3.org/TR/": {}, @@ -193,6 +187,9 @@ "idl-float", "idl-DOMString", "idl-boolean", + "idl-sequence", + "Exposed", + "SecureContext", "idl-undefined", "dfn-throw", "notfounderror", diff --git a/tr/links/vibration.json b/tr/links/vibration.json index 5735d5a61b00..145e4bfbcdd2 100644 --- a/tr/links/vibration.json +++ b/tr/links/vibration.json @@ -1,45 +1,85 @@ { "spec": { - "title": "Vibration API (Second Edition)", + "title": "Vibration API", "url": "https://www.w3.org/TR/vibration/" }, "links": { "rawlinks": { - "https://lists.w3.org/Archives/Public/public-device-apis/": {}, + "https://datatracker.ietf.org/doc/html/bcp14": {}, + "https://dom.spec.whatwg.org/": {}, + "https://github.com/w3c/vibration/pull/18": {}, + "https://github.com/w3c/vibration/pull/18/commits/b454da89ae954d4c5a6caa6c311441511349e639": {}, + "https://github.com/w3c/vibration/pull/23": {}, + "https://github.com/w3c/vibration/pull/23/commits/ee740335ee0ba305a97336d57c03bb449710a268": {}, + "https://github.com/w3c/vibration/pull/30": {}, + "https://github.com/w3c/vibration/pull/30/commits/167cf3c6b2131b3d4d2fd0d2678ca3b3a7bfec29": {}, + "https://github.com/w3c/vibration/pull/30/commits/41d039ece8a0cfb43ef7ec818dabf9156fc956d3": {}, + "https://github.com/w3c/vibration/pull/30/commits/a406e764dd4155c69a4cba4ca1ac15c7b5f47587": {}, + "https://github.com/w3c/vibration/pull/41": {}, + "https://github.com/w3c/vibration/pull/41/commits/b4dd105282b2a10d16bb11d53df55e487a0da6ec": {}, + "https://github.com/w3c/vibration/pull/41/commits/fff4fbc618a8230eb2b21987df8c6e985a09e786": {}, + "https://github.com/w3c/vibration/pull/46": {}, + "https://github.com/w3c/vibration/pull/46/commits/23e6347c1cd19b50d9c356fefb6f1800330868f1": {}, + "https://github.com/w3c/vibration/pull/46/commits/a3af007daf49001bb924a6d345e5dbc2a0c6d96f": {}, + "https://github.com/w3c/vibration/pull/47": {}, + "https://github.com/w3c/vibration/pull/47/commits/7d644a2ffa518460fdbcdcd65cc9d4ffcb5e0e5e": {}, + "https://html.spec.whatwg.org/multipage/": {}, "https://notifications.spec.whatwg.org/": {}, - "https://tools.ietf.org/html/rfc2119": {}, - "https://w3c.github.io/page-visibility/": { + "https://webidl.spec.whatwg.org/": {}, + "https://www.rfc-editor.org/rfc/rfc2119": {}, + "https://www.rfc-editor.org/rfc/rfc8174": {}, + "https://www.w3.org/TR/": {}, + "https://www.w3.org/TR/2016/REC-vibration-20161018/": {}, + "https://www.w3.org/groups/wg/das": {}, + "https://www.w3.org/groups/wg/das/ipr": {}, + "https://www.w3.org/policies/patent-policy/": { "anchors": [ - "dfn-steps-to-determine-the-visibility-state", - "dfn-visibility-states" + "def-essential", + "sec-Disclosure" ] }, - "https://w3c.github.io/test-results/vibration/20141118.html": {}, - "https://www.w3.org/2004/01/pp-impl/43696/status": {}, - "https://www.w3.org/2009/dap/": {}, - "https://www.w3.org/2015/Process-20150901/": {}, - "https://www.w3.org/Consortium/Patent-Policy-20040205/": { + "https://www.w3.org/policies/process/20231103/": { "anchors": [ - "def-essential", - "sec-Disclosure" + "recs-and-notes" + ] + } + }, + "autolinks": { + "https://dom.spec.whatwg.org/": { + "anchors": [ + "concept-document" ] }, - "https://www.w3.org/TR/": {}, - "https://www.w3.org/TR/2015/REC-vibration-20150210/": {}, - "https://www.w3.org/TR/WebIDL-1/": {}, - "https://www.w3.org/TR/html5/": {}, - "https://www.w3.org/TR/html5/browsers.html": { + "https://html.spec.whatwg.org/multipage/document-sequences.html": { "anchors": [ "top-level-browsing-context" ] }, - "https://www.w3.org/TR/html5/webappapis.html": { + "https://html.spec.whatwg.org/multipage/interaction.html": { "anchors": [ - "spin-the-event-loop" + "visibility-state", + "sticky-activation" ] }, - "https://www.w3.org/TR/page-visibility-2/": {} - }, - "autolinks": {} + "https://html.spec.whatwg.org/multipage/system-state.html": { + "anchors": [ + "navigator" + ] + }, + "https://html.spec.whatwg.org/multipage/webappapis.html": { + "anchors": [ + "concept-relevant-global", + "global-object" + ] + }, + "https://webidl.spec.whatwg.org/": { + "anchors": [ + "idl-unsigned-long", + "idl-sequence", + "idl-boolean", + "this" + ] + } + } } } \ No newline at end of file diff --git a/tr/links/webaudio-1.0.json b/tr/links/webaudio-1.0.json index 2e709be20d1e..32639d6847b8 100644 --- a/tr/links/webaudio-1.0.json +++ b/tr/links/webaudio-1.0.json @@ -1,7 +1,7 @@ { "spec": { - "title": "Web Audio API 1.1", - "url": "https://www.w3.org/TR/webaudio/" + "title": "Web Audio API", + "url": "https://www.w3.org/TR/webaudio-1.0/" }, "links": { "rawlinks": { @@ -47,10 +47,10 @@ "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/getOutputTimestamp": {}, "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/outputLatency": {}, "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/resume": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/setSinkId": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/sinkId": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/sinkchange_event": {}, "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/suspend": {}, + "https://developer.mozilla.org/en-US/docs/Web/API/AudioContextOptions": {}, + "https://developer.mozilla.org/en-US/docs/Web/API/AudioContextOptions/latencyHint": {}, + "https://developer.mozilla.org/en-US/docs/Web/API/AudioContextOptions/sampleRate": {}, "https://developer.mozilla.org/en-US/docs/Web/API/AudioDestinationNode": {}, "https://developer.mozilla.org/en-US/docs/Web/API/AudioDestinationNode/maxChannelCount": {}, "https://developer.mozilla.org/en-US/docs/Web/API/AudioListener": {}, @@ -72,6 +72,7 @@ "https://developer.mozilla.org/en-US/docs/Web/API/AudioNode/disconnect": {}, "https://developer.mozilla.org/en-US/docs/Web/API/AudioNode/numberOfInputs": {}, "https://developer.mozilla.org/en-US/docs/Web/API/AudioNode/numberOfOutputs": {}, + "https://developer.mozilla.org/en-US/docs/Web/API/AudioNodeOptions": {}, "https://developer.mozilla.org/en-US/docs/Web/API/AudioParam": {}, "https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/cancelAndHoldAtTime": {}, "https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/cancelScheduledValues": {}, @@ -84,24 +85,19 @@ "https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/setValueAtTime": {}, "https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/setValueCurveAtTime": {}, "https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/value": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioParamMap": {}, "https://developer.mozilla.org/en-US/docs/Web/API/AudioScheduledSourceNode": {}, "https://developer.mozilla.org/en-US/docs/Web/API/AudioScheduledSourceNode/ended_event": {}, + "https://developer.mozilla.org/en-US/docs/Web/API/AudioScheduledSourceNode/onended": {}, "https://developer.mozilla.org/en-US/docs/Web/API/AudioScheduledSourceNode/start": {}, "https://developer.mozilla.org/en-US/docs/Web/API/AudioScheduledSourceNode/stop": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioSinkInfo": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioSinkInfo/type": {}, "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorklet": {}, "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletGlobalScope": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletGlobalScope/currentFrame": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletGlobalScope/currentTime": {}, "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletGlobalScope/registerProcessor": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletGlobalScope/sampleRate": {}, "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletNode": {}, "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletNode/AudioWorkletNode": {}, + "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletNode/onprocessorerror": {}, "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletNode/parameters": {}, "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletNode/port": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletNode/processorerror_event": {}, "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletProcessor": {}, "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletProcessor/AudioWorkletProcessor": {}, "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletProcessor/port": {}, @@ -128,9 +124,9 @@ "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/decodeAudioData": {}, "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/destination": {}, "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/listener": {}, + "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/onstatechange": {}, "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/sampleRate": {}, "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/state": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/statechange_event": {}, "https://developer.mozilla.org/en-US/docs/Web/API/BiquadFilterNode": {}, "https://developer.mozilla.org/en-US/docs/Web/API/BiquadFilterNode/BiquadFilterNode": {}, "https://developer.mozilla.org/en-US/docs/Web/API/BiquadFilterNode/Q": {}, @@ -176,8 +172,12 @@ "https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamAudioSourceNode": {}, "https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamAudioSourceNode/MediaStreamAudioSourceNode": {}, "https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamAudioSourceNode/mediaStream": {}, + "https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamAudioSourceOptions": {}, + "https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamAudioSourceOptions/mediaStream": {}, "https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamTrackAudioSourceNode": {}, "https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamTrackAudioSourceNode/MediaStreamTrackAudioSourceNode": {}, + "https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamTrackAudioSourceOptions": {}, + "https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamTrackAudioSourceOptions/mediaStreamTrack": {}, "https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioCompletionEvent": {}, "https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioCompletionEvent/OfflineAudioCompletionEvent": {}, "https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioCompletionEvent/renderedBuffer": {}, @@ -185,6 +185,7 @@ "https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioContext/OfflineAudioContext": {}, "https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioContext/complete_event": {}, "https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioContext/length": {}, + "https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioContext/oncomplete": {}, "https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioContext/resume": {}, "https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioContext/startRendering": {}, "https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioContext/suspend": {}, @@ -223,7 +224,7 @@ "https://en.wikipedia.org/wiki/Aliasing": {}, "https://en.wikipedia.org/wiki/All-pass_filter": { "anchors": [ - "Digital_implementation" + "Digital_Implementation" ] }, "https://en.wikipedia.org/wiki/Band-pass_filter": {}, @@ -240,9 +241,150 @@ "fetching" ] }, - "https://github.com/WebAudio/web-audio-api/issues/new": {}, + "https://github.com/WebAudio/web-audio-api/issues/": {}, + "https://github.com/WebAudio/web-audio-api/issues/1303": {}, + "https://github.com/WebAudio/web-audio-api/issues/1457": {}, + "https://github.com/WebAudio/web-audio-api/issues/1471": {}, + "https://github.com/WebAudio/web-audio-api/issues/1481": {}, + "https://github.com/WebAudio/web-audio-api/issues/1563": {}, + "https://github.com/WebAudio/web-audio-api/issues/1719": {}, + "https://github.com/WebAudio/web-audio-api/issues/1741": {}, + "https://github.com/WebAudio/web-audio-api/issues/1743": {}, + "https://github.com/WebAudio/web-audio-api/issues/1745": {}, + "https://github.com/WebAudio/web-audio-api/issues/1746": {}, + "https://github.com/WebAudio/web-audio-api/issues/1753": {}, + "https://github.com/WebAudio/web-audio-api/issues/1758": {}, + "https://github.com/WebAudio/web-audio-api/issues/1762": {}, + "https://github.com/WebAudio/web-audio-api/issues/1770": {}, + "https://github.com/WebAudio/web-audio-api/issues/1772": {}, + "https://github.com/WebAudio/web-audio-api/issues/1777": {}, + "https://github.com/WebAudio/web-audio-api/issues/1788": {}, + "https://github.com/WebAudio/web-audio-api/issues/1790": {}, + "https://github.com/WebAudio/web-audio-api/issues/1797": {}, + "https://github.com/WebAudio/web-audio-api/issues/1802": {}, + "https://github.com/WebAudio/web-audio-api/issues/1805": {}, + "https://github.com/WebAudio/web-audio-api/issues/1822": {}, + "https://github.com/WebAudio/web-audio-api/issues/1841": {}, + "https://github.com/WebAudio/web-audio-api/issues/1851": {}, + "https://github.com/WebAudio/web-audio-api/issues/1852": {}, + "https://github.com/WebAudio/web-audio-api/issues/1855": {}, + "https://github.com/WebAudio/web-audio-api/issues/1857": {}, + "https://github.com/WebAudio/web-audio-api/issues/1866": {}, + "https://github.com/WebAudio/web-audio-api/issues/1879": {}, + "https://github.com/WebAudio/web-audio-api/issues/1880": {}, + "https://github.com/WebAudio/web-audio-api/issues/1882": {}, + "https://github.com/WebAudio/web-audio-api/issues/1893": {}, + "https://github.com/WebAudio/web-audio-api/issues/1894": {}, + "https://github.com/WebAudio/web-audio-api/issues/1896": {}, + "https://github.com/WebAudio/web-audio-api/issues/1897": {}, + "https://github.com/WebAudio/web-audio-api/issues/1899": {}, + "https://github.com/WebAudio/web-audio-api/issues/1900": {}, + "https://github.com/WebAudio/web-audio-api/issues/1901": {}, + "https://github.com/WebAudio/web-audio-api/issues/1902": {}, + "https://github.com/WebAudio/web-audio-api/issues/1903": {}, + "https://github.com/WebAudio/web-audio-api/issues/1904": {}, + "https://github.com/WebAudio/web-audio-api/issues/1905": {}, + "https://github.com/WebAudio/web-audio-api/issues/1906": {}, + "https://github.com/WebAudio/web-audio-api/issues/1925": {}, + "https://github.com/WebAudio/web-audio-api/issues/1932": {}, + "https://github.com/WebAudio/web-audio-api/issues/1935": {}, + "https://github.com/WebAudio/web-audio-api/issues/1943": {}, + "https://github.com/WebAudio/web-audio-api/issues/1945": {}, + "https://github.com/WebAudio/web-audio-api/issues/1946": {}, + "https://github.com/WebAudio/web-audio-api/issues/1947": {}, + "https://github.com/WebAudio/web-audio-api/issues/1963": {}, + "https://github.com/WebAudio/web-audio-api/issues/1966": {}, + "https://github.com/WebAudio/web-audio-api/issues/1969": {}, + "https://github.com/WebAudio/web-audio-api/issues/1970": {}, + "https://github.com/WebAudio/web-audio-api/issues/1971": {}, + "https://github.com/WebAudio/web-audio-api/issues/1972": {}, + "https://github.com/WebAudio/web-audio-api/issues/1976": {}, + "https://github.com/WebAudio/web-audio-api/issues/1984": {}, + "https://github.com/WebAudio/web-audio-api/issues/1989": {}, + "https://github.com/WebAudio/web-audio-api/issues/2011": {}, + "https://github.com/WebAudio/web-audio-api/issues/2016": {}, + "https://github.com/WebAudio/web-audio-api/issues/2018": {}, + "https://github.com/WebAudio/web-audio-api/issues/2021": {}, + "https://github.com/WebAudio/web-audio-api/issues/2027": {}, + "https://github.com/WebAudio/web-audio-api/issues/2035": {}, + "https://github.com/WebAudio/web-audio-api/issues/2036": {}, + "https://github.com/WebAudio/web-audio-api/issues/2044": {}, + "https://github.com/WebAudio/web-audio-api/issues/2045": {}, + "https://github.com/WebAudio/web-audio-api/issues/2050": {}, + "https://github.com/WebAudio/web-audio-api/issues/2051": {}, + "https://github.com/WebAudio/web-audio-api/issues/2060": {}, + "https://github.com/WebAudio/web-audio-api/issues/2061": {}, + "https://github.com/WebAudio/web-audio-api/issues/2071": {}, + "https://github.com/WebAudio/web-audio-api/issues/2072": {}, + "https://github.com/WebAudio/web-audio-api/issues/2073": {}, + "https://github.com/WebAudio/web-audio-api/issues/2074": {}, + "https://github.com/WebAudio/web-audio-api/issues/2082": {}, + "https://github.com/WebAudio/web-audio-api/issues/2083": {}, + "https://github.com/WebAudio/web-audio-api/issues/2087": {}, + "https://github.com/WebAudio/web-audio-api/issues/2096": {}, + "https://github.com/WebAudio/web-audio-api/issues/2113": {}, + "https://github.com/WebAudio/web-audio-api/issues/2147": {}, + "https://github.com/WebAudio/web-audio-api/issues/2148": {}, + "https://github.com/WebAudio/web-audio-api/issues/2149": {}, + "https://github.com/WebAudio/web-audio-api/issues/2150": {}, + "https://github.com/WebAudio/web-audio-api/issues/2152": {}, + "https://github.com/WebAudio/web-audio-api/issues/2153": {}, + "https://github.com/WebAudio/web-audio-api/issues/2154": {}, + "https://github.com/WebAudio/web-audio-api/issues/2155": {}, + "https://github.com/WebAudio/web-audio-api/issues/2165": {}, + "https://github.com/WebAudio/web-audio-api/issues/2169": {}, + "https://github.com/WebAudio/web-audio-api/issues/2171": {}, + "https://github.com/WebAudio/web-audio-api/issues/2184": {}, + "https://github.com/WebAudio/web-audio-api/issues/2191": {}, + "https://github.com/WebAudio/web-audio-api/issues/2193": {}, + "https://github.com/WebAudio/web-audio-api/issues/2197": {}, + "https://github.com/WebAudio/web-audio-api/issues/2206": {}, + "https://github.com/WebAudio/web-audio-api/issues/2213": {}, + "https://github.com/WebAudio/web-audio-api/issues/2216": {}, + "https://github.com/WebAudio/web-audio-api/issues/2225": {}, + "https://github.com/WebAudio/web-audio-api/issues/2227": {}, + "https://github.com/WebAudio/web-audio-api/issues/2231": {}, + "https://github.com/WebAudio/web-audio-api/issues/2240": {}, + "https://github.com/WebAudio/web-audio-api/issues/2242": {}, + "https://github.com/WebAudio/web-audio-api/issues/2252": {}, + "https://github.com/WebAudio/web-audio-api/pull/2201": {}, + "https://github.com/WebAudio/web-audio-api/pull/2210": {}, + "https://github.com/WebAudio/web-audio-api/pull/2219": {}, + "https://github.com/WebAudio/web-audio-api/pull/2250": {}, + "https://github.com/WebAudio/web-audio-api/pull/2253": {}, + "https://github.com/WebAudio/web-audio-api/pull/2256": {}, + "https://github.com/WebAudio/web-audio-api/pull/2266": {}, + "https://github.com/WebAudio/web-audio-api/pull/2273": {}, + "https://github.com/WebAudio/web-audio-api/pull/2277": {}, + "https://github.com/WebAudio/web-audio-api/pull/2286": {}, + "https://github.com/WebAudio/web-audio-api/pull/2298": {}, + "https://github.com/WebAudio/web-audio-api/pull/2301": {}, + "https://github.com/WebAudio/web-audio-api/pull/2304": {}, + "https://github.com/WebAudio/web-audio-api/pull/2306": {}, + "https://github.com/WebAudio/web-audio-api/pull/2307": {}, + "https://github.com/WebAudio/web-audio-api/pull/2308": {}, + "https://github.com/WebAudio/web-audio-api/pull/2310": {}, + "https://github.com/WebAudio/web-audio-api/pull/2311": {}, + "https://github.com/WebAudio/web-audio-api/pull/2312": {}, + "https://github.com/WebAudio/web-audio-api/pull/2317": {}, + "https://github.com/WebAudio/web-audio-api/pull/2318": {}, + "https://github.com/WebAudio/web-audio-api/pull/2328": {}, + "https://github.com/WebAudio/web-audio-api/pull/2331": {}, + "https://github.com/WebAudio/web-audio-api/pull/2333": {}, + "https://github.com/WebAudio/web-audio-api/pull/2334": {}, + "https://heycam.github.io/webidl/": { + "anchors": [ + "dfn-get-buffer-source-reference", + "es-to-sequence", + "dictionary-to-es", + "web-idl-arguments-list", + "web-idl-arguments-list-converting" + ] + }, "https://html.spec.whatwg.org/": { "anchors": [ + "concept-current-everything", + "responsible-document", "cors-cross-origin", "unloading-document-cleanup-steps" ] @@ -250,11 +392,12 @@ "https://html.spec.whatwg.org/multipage/": {}, "https://html.spec.whatwg.org/multipage/browsers.html": { "anchors": [ - "origin" + "fully-active" ] }, "https://html.spec.whatwg.org/multipage/infrastructure.html": { "anchors": [ + "event", "in-parallel" ] }, @@ -264,6 +407,11 @@ "queue-a-media-element-task" ] }, + "https://html.spec.whatwg.org/multipage/origin.html": { + "anchors": [ + "origin" + ] + }, "https://html.spec.whatwg.org/multipage/web-messaging.html": { "anchors": [ "ports-and-garbage-collection" @@ -271,10 +419,16 @@ }, "https://html.spec.whatwg.org/multipage/webappapis.html": { "anchors": [ + "eventhandler", + "the-errorevent-interface", "task-queue" ] }, - "https://infra.spec.whatwg.org/": {}, + "https://infra.spec.whatwg.org/": { + "anchors": [ + "map-exists" + ] + }, "https://lists.w3.org/Archives/Public/public-audio/": {}, "https://mimesniff.spec.whatwg.org/": { "anchors": [ @@ -289,26 +443,22 @@ ] }, "https://pdfs.semanticscholar.org/cfd2/6a17234696593919df3f880a235d6ac5871d.pdf": {}, - "https://tc39.es/ecma262": { + "https://tc39.es/ecma262/": { "anchors": [ "sec-isconstructor", "sec-get-o-p", - "sec-ecmascript-data-types-and-values" - ] - }, - "https://tc39.es/ecma262/": { - "anchors": [ + "sec-ecmascript-data-types-and-values", "sec-setintegritylevel", "sec-returnifabrupt-shorthands", "sec-iscallable", "sec-throwcompletion", - "sec-native-error-types-used-in-this-standard-typeerror", - "sec-completion-record-specification-type" + "sec-native-error-types-used-in-this-standard-typeerror" ] }, - "https://tc39.es/ecma262/multipage/": {}, "https://tc39.github.io/ecma262/": { "anchors": [ + "sec-isdetachedbuffer", + "sec-detacharraybuffer", "sec-createbytedatablock", "sec-get-o-p", "sec-completion-record-specification-type", @@ -316,22 +466,27 @@ "sec-toboolean" ] }, - "https://webaudio.github.io/Audio-EQ-Cookbook/audio-eq-cookbook.html": {}, - "https://webidl.spec.whatwg.org/": { + "https://webaudio.github.io/web-audio-api/implementation-report.html": {}, + "https://www.khronos.org/registry/webgl/specs/latest/2.0/": {}, + "https://www.w3.org/2004/01/pp-impl/46884/status": {}, + "https://www.w3.org/2011/audio/": {}, + "https://www.w3.org/2020/Process-20200915/": { "anchors": [ - "es-to-sequence", - "dictionary-to-es", - "web-idl-arguments-list", - "web-idl-arguments-list-converting" + "allow-new-features" + ] + }, + "https://www.w3.org/Consortium/Patent-Policy-20200915/": { + "anchors": [ + "def-essential", + "sec-Disclosure" ] }, - "https://www.khronos.org/registry/webgl/specs/latest/2.0/": {}, - "https://www.w3.org/2011/audio/": {}, "https://www.w3.org/TR/": {}, + "https://www.w3.org/TR/2021/NOTE-audio-eq-cookbook-20210608/": {}, "https://www.w3.org/TR/2dcontext/": {}, "https://www.w3.org/TR/hr-time-3/": { "anchors": [ - "sec-privacy" + "sec-privacy-security" ] }, "https://www.w3.org/TR/mediacapture-fromelement/": { @@ -351,21 +506,7 @@ ] }, "https://www.w3.org/TR/webaudio-usecases/": {}, - "https://www.w3.org/TR/webcodecs/": {}, "https://www.w3.org/TR/webrtc/": {}, - "https://www.w3.org/groups/wg/audio": {}, - "https://www.w3.org/groups/wg/audio/ipr": {}, - "https://www.w3.org/policies/patent-policy/": { - "anchors": [ - "def-essential", - "sec-Disclosure" - ] - }, - "https://www.w3.org/policies/process/20231103/": { - "anchors": [ - "recs-and-notes" - ] - }, "https://xhr.spec.whatwg.org/": {} }, "autolinks": { @@ -377,14 +518,49 @@ "dictdef-eventinit" ] }, - "https://html.spec.whatwg.org/multipage/document-sequences.html": { + "https://heycam.github.io/webidl/": { "anchors": [ - "fully-active" + "idl-undefined", + "idl-DOMException", + "Exposed", + "idl-float", + "idl-double", + "SameObject", + "SecureContext", + "idl-unsigned-long", + "idl-sequence", + "idl-promise", + "idl-ArrayBuffer", + "notsupportederror", + "indexsizeerror", + "invalidstateerror", + "this", + "a-promise-rejected-with", + "datacloneerror", + "encodingerror", + "idl-DOMString", + "idl-Float32Array", + "unknownerror", + "dfn-get-buffer-source-reference", + "dfn-get-buffer-source-copy", + "invalidaccesserror", + "exceptiondef-rangeerror", + "idl-Uint8Array", + "idl-boolean", + "dfn-conforming-implementation", + "idl-long", + "idl-object", + "Global", + "idl-unsigned-long-long", + "exceptiondef-typeerror", + "construct-a-callback-function", + "idl-record", + "idl-frozen-array" ] }, - "https://html.spec.whatwg.org/multipage/indices.html": { + "https://html.spec.whatwg.org/multipage/browsers.html": { "anchors": [ - "event-close" + "fully-active" ] }, "https://html.spec.whatwg.org/multipage/interaction.html": { @@ -396,45 +572,44 @@ "anchors": [ "audio", "video", - "htmlmediaelement", - "queue-a-media-element-task" - ] - }, - "https://html.spec.whatwg.org/multipage/nav-history-apis.html": { - "anchors": [ - "concept-document-window" + "htmlmediaelement" ] }, "https://html.spec.whatwg.org/multipage/structured-data.html": { "anchors": [ - "structuredserializewithtransfer", "structureddeserialize", + "structuredserializewithtransfer", "structuredserialize" ] }, "https://html.spec.whatwg.org/multipage/web-messaging.html": { "anchors": [ + "messageport", "messagechannel", "dom-messagechannel-port1", "dom-messagechannel-port2", - "messageport" + "dom-messageport-close" ] }, "https://html.spec.whatwg.org/multipage/webappapis.html": { "anchors": [ "eventhandler", - "event-handlers", "concept-relevant-global", - "current-settings-object", "queue-a-task", "errorevent", "prepare-to-run-script", + "current-settings-object", "prepare-to-run-a-callback", "clean-up-after-running-a-callback", "clean-up-after-running-script", "perform-a-microtask-checkpoint" ] }, + "https://html.spec.whatwg.org/multipage/window-object.html": { + "anchors": [ + "concept-document-window" + ] + }, "https://html.spec.whatwg.org/multipage/worklets.html": { "anchors": [ "worklet", @@ -447,7 +622,6 @@ }, "https://infra.spec.whatwg.org/": { "anchors": [ - "map-exists", "code-unit", "struct", "struct-item", @@ -459,49 +633,9 @@ "sec-data-blocks" ] }, - "https://webidl.spec.whatwg.org/": { + "https://www.w3.org/TR/WebIDL/": { "anchors": [ - "idl-undefined", - "idl-DOMException", - "Exposed", - "idl-float", - "idl-double", - "idl-unsigned-long", - "SameObject", - "SecureContext", - "idl-sequence", - "idl-promise", - "idl-ArrayBuffer", - "notsupportederror", - "indexsizeerror", - "invalidstateerror", - "this", - "a-promise-rejected-with", - "buffersource-detached", - "dfn-detach", - "datacloneerror", - "encodingerror", - "idl-DOMString", - "invalidaccesserror", - "notallowederror", - "notfounderror", - "idl-Float32Array", - "unknownerror", - "arraybufferview-write", - "dfn-get-buffer-source-copy", - "exceptiondef-rangeerror", - "idl-Uint8Array", - "buffersource-byte-length", - "idl-boolean", - "dfn-conforming-implementation", - "idl-long", - "idl-object", - "Global", - "idl-unsigned-long-long", - "exceptiondef-typeerror", - "construct-a-callback-function", - "idl-record", - "idl-frozen-array" + "dfn-present" ] }, "https://www.w3.org/TR/hr-time-3/": { @@ -514,7 +648,6 @@ "dom-mediadevices-getusermedia", "dom-mediastream", "dom-mediastreamtrack", - "dom-mediadevices-enumeratedevices", "dom-mediadevices" ] } diff --git a/tr/links/webdriver-bidi.json b/tr/links/webdriver-bidi.json new file mode 100644 index 000000000000..f3c3625a9cbd --- /dev/null +++ b/tr/links/webdriver-bidi.json @@ -0,0 +1,662 @@ +{ + "spec": { + "title": "WebDriver BiDi", + "url": "https://www.w3.org/TR/webdriver-bidi/" + }, + "links": { + "rawlinks": { + "https://console.spec.whatwg.org/": {}, + "https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-cookie-same-site": {}, + "https://dom.spec.whatwg.org/": {}, + "https://drafts.css-houdini.org/css-paint-api-1/": {}, + "https://drafts.csswg.org/css-values-3/": {}, + "https://drafts.csswg.org/css2/": {}, + "https://drafts.csswg.org/cssom-view-1/": { + "anchors": [ + "resizing-viewports" + ] + }, + "https://drafts.csswg.org/cssom-view/": {}, + "https://drafts.csswg.org/mediaqueries-5/": {}, + "https://drafts.csswg.org/selectors/": {}, + "https://drafts.fxtf.org/geometry/": {}, + "https://encoding.spec.whatwg.org/": {}, + "https://fetch.spec.whatwg.org/": {}, + "https://fullscreen.spec.whatwg.org/": {}, + "https://github.com/w3c/webdriver-bidi/issues": {}, + "https://github.com/w3c/webdriver-bidi/issues/170": {}, + "https://github.com/w3c/webdriver-bidi/issues/508": {}, + "https://html.spec.whatwg.org/multipage/": {}, + "https://httpwg.org/specs/rfc6265.html": {}, + "https://httpwg.org/specs/rfc9110.html": {}, + "https://httpwg.org/specs/rfc9112.html": {}, + "https://infra.spec.whatwg.org/": {}, + "https://lists.w3.org/Archives/Public/public-browser-tools-testing/": {}, + "https://mimesniff.spec.whatwg.org/": {}, + "https://tc39.es/ecma262/multipage/": {}, + "https://url.spec.whatwg.org/": {}, + "https://urlpattern.spec.whatwg.org/": {}, + "https://w3c.github.io/ServiceWorker/": {}, + "https://w3c.github.io/hr-time/": {}, + "https://w3c.github.io/resource-timing/": {}, + "https://w3c.github.io/webdriver/": {}, + "https://webaudio.github.io/web-audio-api/": {}, + "https://webbluetoothcg.github.io/web-bluetooth/": {}, + "https://webidl.spec.whatwg.org/": {}, + "https://www.jsonrpc.org/specification": {}, + "https://www.rfc-editor.org/rfc/rfc4648": {}, + "https://www.rfc-editor.org/rfc/rfc6455": {}, + "https://www.rfc-editor.org/rfc/rfc8610": {}, + "https://www.rfc-editor.org/rfc/rfc9562": {}, + "https://www.unicode.org/versions/latest/": {}, + "https://www.w3.org/TR/": {}, + "https://www.w3.org/TR/permissions/": {}, + "https://www.w3.org/groups/wg/browser-tools-testing/": {}, + "https://www.w3.org/groups/wg/browser-tools-testing/ipr": {}, + "https://www.w3.org/policies/patent-policy/": { + "anchors": [ + "def-essential", + "sec-Disclosure" + ] + }, + "https://www.w3.org/policies/process/20231103/": { + "anchors": [ + "recs-and-notes" + ] + } + }, + "autolinks": { + "https://console.spec.whatwg.org/": { + "anchors": [ + "formatting-specifiers", + "formatter", + "printer" + ] + }, + "https://datatracker.ietf.org/doc/html/rfc4648": { + "anchors": [ + "section-4" + ] + }, + "https://datatracker.ietf.org/doc/html/rfc6455": { + "anchors": [ + "section-4.1", + "section-4.2", + "section-4.2.1", + "section-6.2", + "section-7.1.3", + "section-7.1.4", + "section-3", + "section-5.2", + "section-8.1", + "section-7.1.7", + "section-7.4", + "section-6.1", + "section-7.1.2" + ] + }, + "https://dom.spec.whatwg.org/": { + "anchors": [ + "concept-document", + "ref-for-dom-document-documentelement", + "concept-document-url", + "document", + "element", + "concept-node-document", + "concept-tree-root", + "dom-xpathevaluatorbase-evaluate", + "dom-xpathresult-ordered_node_snapshot_type", + "dom-xpathresult-snapshotitem", + "documentfragment", + "concept-tree-child", + "boundary-point-node", + "concept-document-origin", + "concept-node", + "node", + "nodelist", + "htmlcollection", + "attr", + "shadowroot", + "shadowroot-mode", + "concept-element-attribute", + "concept-attribute-qualified-name", + "concept-attribute-value", + "concept-element-shadow-root" + ] + }, + "https://drafts.css-houdini.org/css-paint-api-1/": { + "anchors": [ + "paintworkletglobalscope" + ] + }, + "https://drafts.csswg.org/css-values-3/": { + "anchors": [ + "absolute-lengths" + ] + }, + "https://drafts.csswg.org/css2/": { + "anchors": [ + "viewport%E2%91%A0" + ] + }, + "https://drafts.csswg.org/cssom-view-1/": { + "anchors": [ + "determine-the-device-pixel-ratio", + "element-get-the-bounding-box" + ] + }, + "https://drafts.csswg.org/cssom-view/": { + "anchors": [ + "web-exposed-screen-area", + "visual-viewport", + "dom-visualviewport-pageleft", + "dom-visualviewport-pagetop", + "dom-element-scrollheight", + "dom-element-scrollwidth", + "layout-viewport", + "evaluate-media-queries-and-report-changes" + ] + }, + "https://drafts.csswg.org/mediaqueries-4/": { + "anchors": [ + "resolution" + ] + }, + "https://drafts.csswg.org/mediaqueries-5/": { + "anchors": [ + "media-type" + ] + }, + "https://drafts.csswg.org/selectors-4/": { + "anchors": [ + "parse-a-selector", + "match-a-selector-against-a-tree", + "scoping-root" + ] + }, + "https://drafts.fxtf.org/geometry-1/": { + "anchors": [ + "domrectreadonly" + ] + }, + "https://drafts.fxtf.org/geometry/": { + "anchors": [ + "rectangle-width-dimension", + "rectangle-height-dimension", + "rectangle-x-coordinate", + "rectangle-y-coordinate" + ] + }, + "https://encoding.spec.whatwg.org/": { + "anchors": [ + "utf-8-encode", + "utf-8-decode", + "utf-8-decode-without-bom-or-fail" + ] + }, + "https://fetch.spec.whatwg.org/": { + "anchors": [ + "concept-request", + "concept-request-url", + "concept-response", + "concept-response-status", + "concept-response-status-message", + "concept-header-list", + "header-value", + "concept-response-header-list", + "concept-request-window", + "concept-request-redirect-count", + "concept-request-client", + "fetch-timing-info", + "fetch-timing-info-final-connection-timing-info", + "connection-timing-info", + "fetch-timing-info-start-time", + "fetch-timing-info-redirect-start-time", + "fetch-timing-info-redirect-end-time", + "fetch-timing-info-post-redirect-start-time", + "connection-timing-info-domain-lookup-start-time", + "connection-timing-info-domain-lookup-end-time", + "connection-timing-info-secure-connection-start-time", + "connection-timing-info-connection-start-time", + "connection-timing-info-connection-end-time", + "fetch-timing-info-final-network-request-start-time", + "fetch-timing-info-final-network-response-start-time", + "fetch-timing-info-end-time", + "concept-header", + "request-initiator-type", + "concept-request-method", + "concept-request-body", + "concept-body", + "concept-body-total-bytes", + "concept-request-header-list", + "concept-request-destination", + "response-body-info", + "fetch-timing-info-decoded-body-size", + "connection-timing-info-alpn-negotiated-protocol", + "concept-response-url", + "concept-response-cache-state", + "fetch-timing-info-encoded-body-size", + "concept-network-error", + "concept-response-body", + "byte-sequence-as-a-body" + ] + }, + "https://fullscreen.spec.whatwg.org/": { + "anchors": [ + "fullscreen-element", + "fullscreen-is-supported", + "fully-exit-fullscreen", + "fullscreen-an-element" + ] + }, + "https://html.spec.whatwg.org/multipage//canvas.html": { + "anchors": [ + "offscreencanvas-context-mode" + ] + }, + "https://html.spec.whatwg.org/multipage/browsers.html": { + "anchors": [ + "ascii-serialisation-of-an-origin", + "same-origin-domain" + ] + }, + "https://html.spec.whatwg.org/multipage/browsing-the-web.html": { + "anchors": [ + "session-history-entry", + "prompt-to-unload-a-document", + "navigation-id", + "navigate", + "history-handling-behavior", + "getting-all-used-history-steps", + "traverse-the-history-by-a-delta" + ] + }, + "https://html.spec.whatwg.org/multipage/canvas.html": { + "anchors": [ + "htmlcanvaselement", + "dom-canvas-width", + "dom-canvas-height", + "2d-context-creation-algorithm", + "concept-canvas-2d", + "a-serialisation-of-the-bitmap-as-a-file" + ] + }, + "https://html.spec.whatwg.org/multipage/document-lifecycle.html": { + "anchors": [ + "unloading-document-cleanup-steps" + ] + }, + "https://html.spec.whatwg.org/multipage/document-sequences.html": { + "anchors": [ + "top-level-traversable", + "nav-top", + "node-navigable", + "nav-window", + "navigables", + "child-navigable", + "nav-parent", + "nav-document", + "close-a-top-level-traversable", + "system-visibility-state", + "creating-a-new-top-level-traversable", + "descendant-navigables", + "tn-session-history-traversal-queue", + "tn-current-session-history-step", + "nav-bc", + "top-level-browsing-context" + ] + }, + "https://html.spec.whatwg.org/multipage/dom.html": { + "anchors": [ + "htmlelement", + "dom-innertext" + ] + }, + "https://html.spec.whatwg.org/multipage/form-control-infrastructure.html": { + "anchors": [ + "concept-fe-disabled" + ] + }, + "https://html.spec.whatwg.org/multipage/imagebitmap-and-animations.html": { + "anchors": [ + "run-the-animation-frame-callbacks" + ] + }, + "https://html.spec.whatwg.org/multipage/images.html": { + "anchors": [ + "select-an-image-source-from-a-source-set" + ] + }, + "https://html.spec.whatwg.org/multipage/infrastructure.html": { + "anchors": [ + "in-parallel" + ] + }, + "https://html.spec.whatwg.org/multipage/input.html": { + "anchors": [ + "htmlinputelement", + "attr-input-type", + "file-upload-state-(type=file)", + "attr-input-multiple", + "concept-input-type-file-selected", + "update-the-file-selection" + ] + }, + "https://html.spec.whatwg.org/multipage/interaction.html": { + "anchors": [ + "visibility-state", + "system-focus", + "focused-area-of-the-document", + "focusing-steps", + "activation-notification" + ] + }, + "https://html.spec.whatwg.org/multipage/nav-history-apis.html": { + "anchors": [ + "window", + "concept-document-window", + "dom-document-defaultview", + "window-navigable", + "windowproxy", + "set-up-a-window-environment-settings-object" + ] + }, + "https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html": { + "anchors": [ + "dom-alert", + "dom-confirm", + "dom-prompt" + ] + }, + "https://html.spec.whatwg.org/multipage/webappapis.html": { + "anchors": [ + "settings-object", + "concept-relevant-global", + "concept-realm-global", + "environment-settings-object", + "realm-execution-context", + "concept-script-base-url", + "queue-a-task", + "concept-settings-object-global", + "concept-settings-object-time-origin", + "api-base-url", + "default-script-fetch-options", + "report-an-exception", + "prepare-to-run-script", + "clean-up-after-running-script", + "relevant-settings-object", + "concept-settings-object-origin", + "creating-a-classic-script", + "concept-environment-execution-ready-flag", + "concept-relevant-realm", + "worker-event-loop-2", + "responsible-event-loop", + "environment-settings-object's-realm", + "current-settings-object", + "queue-an-element-task", + "user-interaction-task-source", + "report-the-error" + ] + }, + "https://html.spec.whatwg.org/multipage/workers.html": { + "anchors": [ + "shared-workers", + "workerglobalscope", + "concept-WorkerGlobalScope-owner-set", + "dedicatedworkerglobalscope", + "sharedworkerglobalscope", + "set-up-a-worker-environment-settings-object", + "terminate-a-worker" + ] + }, + "https://html.spec.whatwg.org/multipage/worklets.html": { + "anchors": [ + "workletglobalscope", + "set-up-a-worklet-environment-settings-object", + "concept-document-worklet-global-scopes" + ] + }, + "https://httpwg.org/specs/rfc6265.html": { + "anchors": [ + "storage-model" + ] + }, + "https://httpwg.org/specs/rfc9110.html": { + "anchors": [ + "fields.names", + "method.overview" + ] + }, + "https://infra.spec.whatwg.org/": { + "anchors": [ + "ordered-map", + "list", + "ordered-set", + "map-exists", + "list-contain", + "implementation-defined", + "set-append", + "assert", + "scalar-value-string", + "parse-a-json-string-to-an-infra-value", + "serialize-an-infra-value-to-json-bytes", + "map-size", + "list-iterate", + "list-remove", + "map-getting-the-values", + "list-empty", + "map-clear", + "list-clone", + "convert-a-json-derived-javascript-value-to-an-infra-value", + "map-sort-in-ascending-order", + "list-append", + "iteration-break", + "forgiving-base64-encode", + "list-size", + "list-extend", + "iteration-continue", + "code-point-substring", + "string-is", + "map-set", + "map-remove", + "struct", + "byte-lowercase", + "byte-case-insensitive", + "tuple", + "byte-sequence", + "forgiving-base64-decode", + "code-unit-substring", + "string-length", + "code-point", + "code-point-value", + "ascii-alphanumeric", + "ascii-lowercase", + "ascii-digit", + "string-starts-with", + "map-is-empty", + "struct-item", + "map-clone", + "string-concatenate", + "set-intersection" + ] + }, + "https://mimesniff.spec.whatwg.org/": { + "anchors": [ + "mime-type-essence", + "computed-mime-type" + ] + }, + "https://tc39.es/ecma262/": { + "anchors": [ + "sec-code-realms", + "sec-time-values-and-time-range", + "sec-undefined-value", + "sec-null-value", + "sec-completion-record-specification-type", + "sec-iscallable", + "sec-call", + "current-realm", + "sec-createbuiltinfunction", + "sec-createarrayfromlist", + "sec-date-time-string-format", + "sec-construct", + "sec-date-constructor", + "sec-map-iterable", + "sec-object.fromentries", + "sec-regexp-pattern-flags", + "sec-set-objects", + "sec-ecmascript-data-types-and-values", + "sec-tostring", + "sec-stringtonumber", + "sec-stringtobigint", + "sec-isarray", + "sec-isregexp", + "sec-get-o-p", + "sec-object-internal-methods-and-internal-slots", + "sec-date.prototype.toisostring", + "sec-createmapiterator", + "sec-createsetiterator", + "sec-ispromise", + "sec-enumerableownpropertynames", + "sec-createarrayiterator", + "sec-iteratortolist", + "sec-getiterator", + "sec-createlistfromarraylike", + "running-execution-context", + "sec-runtime-semantics-scriptevaluation", + "await", + "sec-primitive-value" + ] + }, + "https://url.spec.whatwg.org/": { + "anchors": [ + "concept-url-serializer", + "concept-url-parser", + "concept-url-scheme", + "is-special", + "concept-url-host", + "default-port", + "concept-url-port", + "url-path-serializer", + "concept-url-path", + "concept-url-query", + "concept-url" + ] + }, + "https://w3c.github.io/ServiceWorker/": { + "anchors": [ + "serviceworkerglobalscope" + ] + }, + "https://w3c.github.io/hr-time/": { + "anchors": [ + "dfn-get-time-origin-timestamp" + ] + }, + "https://w3c.github.io/resource-timing/": { + "anchors": [ + "dfn-convert-fetch-timestamp" + ] + }, + "https://w3c.github.io/webdriver/": { + "anchors": [ + "dfn-local-ends", + "dfn-remote-ends", + "dfn-sessions", + "dfn-active-sessions", + "dfn-remote-end-steps", + "dfn-error-code", + "dfn-success", + "errors", + "dfn-invalid-argument", + "dfn-session-id", + "dfn-intermediary-nodes", + "dfn-endpoint-node", + "dfn-invalid-session-id", + "dfn-unknown-command", + "dfn-webdriver-new-session-algorithms", + "dfn-getting-properties", + "dfn-set-a-property", + "dfn-http-session", + "dfn-webdriver-active-flag", + "dfn-try", + "dfn-additional-webdriver-capability", + "dfn-additional-capability-deserialization-algorithm", + "dfn-matched-capability-serialization-algorithm", + "dfn-readiness-state", + "dfn-session-not-created", + "dfn-capabilities-processing", + "dfn-create-a-session", + "dfn-unsupported-operation", + "dfn-window-handles", + "dfn-no-such-frame", + "dfn-unknown-error", + "dfn-no-such-element", + "dfn-unable-to-capture-screen", + "dfn-no-such-alert", + "dfn-invalid-selector", + "dfn-parse-a-page-range", + "dfn-get-the-prompt-handler", + "dfn-handler", + "dfn-get-a-node", + "dfn-get-or-create-a-node-reference", + "dfn-table-for-cookie-conversion", + "dfn-creating-a-cookie", + "dfn-cookie-name", + "dfn-cookie-value", + "dfn-cookie-domain", + "dfn-cookie-path", + "dfn-cookie-secure-only", + "dfn-cookie-http-only", + "dfn-cookie-expiry-time", + "dfn-cookie-same-site", + "actions", + "dfn-get-the-input-state", + "dfn-actions-options", + "dfn-is-element-origin", + "dfn-get-element-origin", + "dfn-extract-an-action-sequence", + "dfn-dispatch-actions", + "dfn-input-cancel-list", + "dfn-dispatch-tick-actions", + "dfn-reset-the-input-state" + ] + }, + "https://webaudio.github.io/web-audio-api/": { + "anchors": [ + "AudioWorkletGlobalScope" + ] + }, + "https://webidl.spec.whatwg.org/": { + "anchors": [ + "syntaxerror", + "idl-DOMException", + "this", + "exceptiondef-typeerror", + "dfn-platform-object" + ] + }, + "https://www.unicode.org/versions/Unicode15.0.0/ch03.pdf": { + "anchors": [ + "G34078", + "G34944" + ] + }, + "https://www.w3.org/TR/CSS21/intro.html": { + "anchors": [ + "canvas" + ] + }, + "https://www.w3.org/TR/accname-1.2/": { + "anchors": [ + "dfn-accessible-name" + ] + }, + "https://www.w3.org/TR/core-aam-1.2/": { + "anchors": [ + "roleMappingComputedRole" + ] + } + } + } +} \ No newline at end of file diff --git a/tr/refs/gpc.json b/tr/refs/gpc.json new file mode 100644 index 000000000000..b4ae16319e17 --- /dev/null +++ b/tr/refs/gpc.json @@ -0,0 +1,76 @@ +{ + "spec": { + "title": "Global Privacy Control (GPC)", + "url": "https://www.w3.org/TR/gpc/" + }, + "refs": { + "normative": [ + { + "name": "ABNF", + "url": "https://www.rfc-editor.org/rfc/rfc5234" + }, + { + "name": "html", + "url": "https://html.spec.whatwg.org/multipage/" + }, + { + "name": "RFC2119", + "url": "https://www.rfc-editor.org/rfc/rfc2119" + }, + { + "name": "RFC3339", + "url": "https://www.rfc-editor.org/rfc/rfc3339" + }, + { + "name": "RFC8174", + "url": "https://www.rfc-editor.org/rfc/rfc8174" + }, + { + "name": "RFC8259", + "url": "https://www.rfc-editor.org/rfc/rfc8259" + }, + { + "name": "RFC8615", + "url": "https://www.rfc-editor.org/rfc/rfc8615" + }, + { + "name": "webidl", + "url": "https://webidl.spec.whatwg.org/" + } + ], + "informative": [ + { + "name": "CCPA-AG-FINAL-STATEMENT", + "url": "https://oag.ca.gov/sites/all/files/agweb/pdfs/privacy/ccpa-fsor.pdf" + }, + { + "name": "CCPA-REGULATIONS", + "url": "https://www.oag.ca.gov/sites/all/files/agweb/pdfs/privacy/oal-sub-final-text-of-regs.pdf?" + }, + { + "name": "COLORADO-REGULATIONS", + "url": "https://coag.gov/app/uploads/2023/03/FINAL-CLEAN-2023.03.15-Official-CPA-Rules.pdf" + }, + { + "name": "CPPA-REGULATIONS", + "url": "https://cppa.ca.gov/regulations/pdf/cppa_regs.pdf" + }, + { + "name": "EPRIVACY-DIRECTIVE", + "url": "https://edps.europa.eu/data-protection/our-work/publications/legislation/directive-2009136ec_en" + }, + { + "name": "GDPR", + "url": "https://eur-lex.europa.eu/legal-content/EN/TXT/HTML/?uri=CELEX:32016R0679&from=EN" + }, + { + "name": "privacy-principles", + "url": "https://www.w3.org/TR/privacy-principles/" + }, + { + "name": "SB220", + "url": "https://www.leg.state.nv.us/NRS/NRS-603A.html" + } + ] + } +} \ No newline at end of file diff --git a/tr/refs/vibration.json b/tr/refs/vibration.json index eb2d12f7bc75..bb76ba19502d 100644 --- a/tr/refs/vibration.json +++ b/tr/refs/vibration.json @@ -1,25 +1,29 @@ { "spec": { - "title": "Vibration API (Second Edition)", + "title": "Vibration API", "url": "https://www.w3.org/TR/vibration/" }, "refs": { "normative": [ { - "name": "HTML5", - "url": "https://www.w3.org/TR/html5/" + "name": "dom", + "url": "https://dom.spec.whatwg.org/" }, { - "name": "PAGE-VISIBILITY-2", - "url": "https://www.w3.org/TR/page-visibility-2/" + "name": "html", + "url": "https://html.spec.whatwg.org/multipage/" }, { "name": "RFC2119", - "url": "https://tools.ietf.org/html/rfc2119" + "url": "https://www.rfc-editor.org/rfc/rfc2119" + }, + { + "name": "RFC8174", + "url": "https://www.rfc-editor.org/rfc/rfc8174" }, { "name": "WEBIDL-1", - "url": "https://www.w3.org/TR/WebIDL-1/" + "url": "https://webidl.spec.whatwg.org/" } ], "informative": [ diff --git a/tr/refs/webaudio-1.0.json b/tr/refs/webaudio-1.0.json index a49dd91baf82..44d86d07a479 100644 --- a/tr/refs/webaudio-1.0.json +++ b/tr/refs/webaudio-1.0.json @@ -1,7 +1,7 @@ { "spec": { - "title": "Web Audio API 1.1", - "url": "https://www.w3.org/TR/webaudio/" + "title": "Web Audio API", + "url": "https://www.w3.org/TR/webaudio-1.0/" }, "refs": { "normative": [ @@ -11,7 +11,7 @@ }, { "name": "ECMASCRIPT", - "url": "https://tc39.es/ecma262/multipage/" + "url": "https://tc39.es/ecma262/" }, { "name": "FETCH", @@ -42,12 +42,8 @@ "url": "https://datatracker.ietf.org/doc/html/rfc2119" }, { - "name": "SECURITY-PRIVACY-QUESTIONNAIRE", - "url": "https://www.w3.org/TR/security-privacy-questionnaire/" - }, - { - "name": "WEBIDL", - "url": "https://webidl.spec.whatwg.org/" + "name": "WebIDL", + "url": "https://heycam.github.io/webidl/" }, { "name": "WEBRTC", @@ -67,10 +63,6 @@ "name": "WEBAUDIO-USECASES", "url": "https://www.w3.org/TR/webaudio-usecases/" }, - { - "name": "WEBCODECS", - "url": "https://www.w3.org/TR/webcodecs/" - }, { "name": "WEBGL", "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/" diff --git a/tr/refs/webdriver-bidi.json b/tr/refs/webdriver-bidi.json new file mode 100644 index 000000000000..54d6342efd13 --- /dev/null +++ b/tr/refs/webdriver-bidi.json @@ -0,0 +1,156 @@ +{ + "spec": { + "title": "WebDriver BiDi", + "url": "https://www.w3.org/TR/webdriver-bidi/" + }, + "refs": { + "normative": [ + { + "name": "CONSOLE", + "url": "https://console.spec.whatwg.org/" + }, + { + "name": "COOKIES", + "url": "https://httpwg.org/specs/rfc6265.html" + }, + { + "name": "CSS-PAINT-API-1", + "url": "https://drafts.css-houdini.org/css-paint-api-1/" + }, + { + "name": "CSS21", + "url": "https://drafts.csswg.org/css2/" + }, + { + "name": "CSS22", + "url": "https://drafts.csswg.org/css2/" + }, + { + "name": "CSSOM-VIEW-1", + "url": "https://drafts.csswg.org/cssom-view/" + }, + { + "name": "DOM", + "url": "https://dom.spec.whatwg.org/" + }, + { + "name": "ECMAScript", + "url": "https://tc39.es/ecma262/multipage/" + }, + { + "name": "ENCODING", + "url": "https://encoding.spec.whatwg.org/" + }, + { + "name": "FETCH", + "url": "https://fetch.spec.whatwg.org/" + }, + { + "name": "FULLSCREEN", + "url": "https://fullscreen.spec.whatwg.org/" + }, + { + "name": "GEOMETRY-1", + "url": "https://drafts.fxtf.org/geometry/" + }, + { + "name": "HR-TIME-3", + "url": "https://w3c.github.io/hr-time/" + }, + { + "name": "HTML", + "url": "https://html.spec.whatwg.org/multipage/" + }, + { + "name": "INFRA", + "url": "https://infra.spec.whatwg.org/" + }, + { + "name": "MEDIAQUERIES-5", + "url": "https://drafts.csswg.org/mediaqueries-5/" + }, + { + "name": "MIMESNIFF", + "url": "https://mimesniff.spec.whatwg.org/" + }, + { + "name": "RESOURCE-TIMING", + "url": "https://w3c.github.io/resource-timing/" + }, + { + "name": "RFC4648", + "url": "https://www.rfc-editor.org/rfc/rfc4648" + }, + { + "name": "RFC6455", + "url": "https://www.rfc-editor.org/rfc/rfc6455" + }, + { + "name": "RFC8610", + "url": "https://www.rfc-editor.org/rfc/rfc8610" + }, + { + "name": "RFC9110", + "url": "https://httpwg.org/specs/rfc9110.html" + }, + { + "name": "RFC9562", + "url": "https://www.rfc-editor.org/rfc/rfc9562" + }, + { + "name": "SELECTORS-4", + "url": "https://drafts.csswg.org/selectors/" + }, + { + "name": "SERVICE-WORKERS", + "url": "https://w3c.github.io/ServiceWorker/" + }, + { + "name": "UNICODE", + "url": "https://www.unicode.org/versions/latest/" + }, + { + "name": "URL", + "url": "https://url.spec.whatwg.org/" + }, + { + "name": "WEBAUDIO-1.0", + "url": "https://webaudio.github.io/web-audio-api/" + }, + { + "name": "WEBDRIVER", + "url": "https://w3c.github.io/webdriver/" + }, + { + "name": "WEBDRIVER2", + "url": "https://w3c.github.io/webdriver/" + }, + { + "name": "WEBIDL", + "url": "https://webidl.spec.whatwg.org/" + } + ], + "informative": [ + { + "name": "CSS-VALUES-3", + "url": "https://drafts.csswg.org/css-values-3/" + }, + { + "name": "HTTP11", + "url": "https://httpwg.org/specs/rfc9112.html" + }, + { + "name": "JSON-RPC", + "url": "https://www.jsonrpc.org/specification" + }, + { + "name": "SAME-SITE-COOKIES", + "url": "https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-cookie-same-site" + }, + { + "name": "URLPattern", + "url": "https://urlpattern.spec.whatwg.org/" + } + ] + } +} \ No newline at end of file