@types/web 0.0.251 → 0.0.253
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/index.d.ts +568 -538
- package/iterable.d.ts +2 -2
- package/package.json +1 -1
- package/ts5.5/index.d.ts +568 -538
- package/ts5.5/iterable.d.ts +2 -2
- package/ts5.6/index.d.ts +568 -538
- package/ts5.6/iterable.d.ts +2 -2
package/ts5.5/index.d.ts
CHANGED
|
@@ -749,6 +749,10 @@ interface FullscreenOptions {
|
|
|
749
749
|
navigationUI?: FullscreenNavigationUI;
|
|
750
750
|
}
|
|
751
751
|
|
|
752
|
+
interface GPUPipelineErrorInit {
|
|
753
|
+
reason: GPUPipelineErrorReason;
|
|
754
|
+
}
|
|
755
|
+
|
|
752
756
|
interface GainOptions extends AudioNodeOptions {
|
|
753
757
|
gain?: number;
|
|
754
758
|
}
|
|
@@ -3121,7 +3125,7 @@ interface Animation extends EventTarget {
|
|
|
3121
3125
|
*/
|
|
3122
3126
|
reverse(): void;
|
|
3123
3127
|
/**
|
|
3124
|
-
* The **`updatePlaybackRate()`** method of the Web Animations API's synchronizing its playback position.
|
|
3128
|
+
* The **`updatePlaybackRate()`** method of the Web Animations API's Animation Interface sets the speed of an animation after first synchronizing its playback position.
|
|
3125
3129
|
*
|
|
3126
3130
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Animation/updatePlaybackRate)
|
|
3127
3131
|
*/
|
|
@@ -3342,7 +3346,7 @@ interface AudioBuffer {
|
|
|
3342
3346
|
*/
|
|
3343
3347
|
readonly sampleRate: number;
|
|
3344
3348
|
/**
|
|
3345
|
-
* The **`copyFromChannel()`** method of the
|
|
3349
|
+
* The **`copyFromChannel()`** method of the AudioBuffer interface copies the audio sample data from the specified channel of the `AudioBuffer` to a specified Float32Array.
|
|
3346
3350
|
*
|
|
3347
3351
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioBuffer/copyFromChannel)
|
|
3348
3352
|
*/
|
|
@@ -3379,7 +3383,7 @@ interface AudioBufferSourceNode extends AudioScheduledSourceNode {
|
|
|
3379
3383
|
*/
|
|
3380
3384
|
buffer: AudioBuffer | null;
|
|
3381
3385
|
/**
|
|
3382
|
-
* The **`detune`** property of the representing detuning of oscillation in cents.
|
|
3386
|
+
* The **`detune`** property of the AudioBufferSourceNode interface is a k-rate AudioParam representing detuning of oscillation in cents.
|
|
3383
3387
|
*
|
|
3384
3388
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioBufferSourceNode/detune)
|
|
3385
3389
|
*/
|
|
@@ -3432,7 +3436,7 @@ declare var AudioBufferSourceNode: {
|
|
|
3432
3436
|
*/
|
|
3433
3437
|
interface AudioContext extends BaseAudioContext {
|
|
3434
3438
|
/**
|
|
3435
|
-
* The **`baseLatency`** read-only property of the seconds of processing latency incurred by the `AudioContext` passing an audio buffer from the AudioDestinationNode — i.e., the end of the audio graph — into the host system's audio subsystem ready for playing.
|
|
3439
|
+
* The **`baseLatency`** read-only property of the AudioContext interface returns a double that represents the number of seconds of processing latency incurred by the `AudioContext` passing an audio buffer from the AudioDestinationNode — i.e., the end of the audio graph — into the host system's audio subsystem ready for playing.
|
|
3436
3440
|
*
|
|
3437
3441
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioContext/baseLatency)
|
|
3438
3442
|
*/
|
|
@@ -3468,7 +3472,7 @@ interface AudioContext extends BaseAudioContext {
|
|
|
3468
3472
|
*/
|
|
3469
3473
|
createMediaStreamSource(mediaStream: MediaStream): MediaStreamAudioSourceNode;
|
|
3470
3474
|
/**
|
|
3471
|
-
* The **`getOutputTimestamp()`** method of the containing two audio timestamp values relating to the current audio context.
|
|
3475
|
+
* The **`getOutputTimestamp()`** method of the AudioContext interface returns a new `AudioTimestamp` object containing two audio timestamp values relating to the current audio context.
|
|
3472
3476
|
*
|
|
3473
3477
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioContext/getOutputTimestamp)
|
|
3474
3478
|
*/
|
|
@@ -3838,7 +3842,7 @@ interface AudioNode extends EventTarget {
|
|
|
3838
3842
|
*/
|
|
3839
3843
|
channelInterpretation: ChannelInterpretation;
|
|
3840
3844
|
/**
|
|
3841
|
-
* The read-only `context` property of the the node is participating in.
|
|
3845
|
+
* The read-only `context` property of the AudioNode interface returns the associated BaseAudioContext, that is the object representing the processing graph the node is participating in.
|
|
3842
3846
|
*
|
|
3843
3847
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioNode/context)
|
|
3844
3848
|
*/
|
|
@@ -3856,7 +3860,7 @@ interface AudioNode extends EventTarget {
|
|
|
3856
3860
|
*/
|
|
3857
3861
|
readonly numberOfOutputs: number;
|
|
3858
3862
|
/**
|
|
3859
|
-
* The `connect()` method of the AudioNode interface lets you connect one of the node's outputs to a target, which may be either another `AudioNode` (thereby directing the sound data to the specified node) or an change the value of that parameter over time.
|
|
3863
|
+
* The `connect()` method of the AudioNode interface lets you connect one of the node's outputs to a target, which may be either another `AudioNode` (thereby directing the sound data to the specified node) or an AudioParam, so that the node's output data is automatically used to change the value of that parameter over time.
|
|
3860
3864
|
*
|
|
3861
3865
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioNode/connect)
|
|
3862
3866
|
*/
|
|
@@ -3913,7 +3917,7 @@ interface AudioParam {
|
|
|
3913
3917
|
*/
|
|
3914
3918
|
value: number;
|
|
3915
3919
|
/**
|
|
3916
|
-
* The **`cancelAndHoldAtTime()`** method of the `AudioParam` but holds its value at a given time until further changes are made using other methods.
|
|
3920
|
+
* The **`cancelAndHoldAtTime()`** method of the AudioParam interface cancels all scheduled future changes to the `AudioParam` but holds its value at a given time until further changes are made using other methods.
|
|
3917
3921
|
*
|
|
3918
3922
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/cancelAndHoldAtTime)
|
|
3919
3923
|
*/
|
|
@@ -3937,19 +3941,19 @@ interface AudioParam {
|
|
|
3937
3941
|
*/
|
|
3938
3942
|
linearRampToValueAtTime(value: number, endTime: number): AudioParam;
|
|
3939
3943
|
/**
|
|
3940
|
-
* The `setTargetAtTime()` method of the `AudioParam` value.
|
|
3944
|
+
* The `setTargetAtTime()` method of the AudioParam interface schedules the start of a gradual change to the `AudioParam` value.
|
|
3941
3945
|
*
|
|
3942
3946
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/setTargetAtTime)
|
|
3943
3947
|
*/
|
|
3944
3948
|
setTargetAtTime(target: number, startTime: number, timeConstant: number): AudioParam;
|
|
3945
3949
|
/**
|
|
3946
|
-
* The `setValueAtTime()` method of the `AudioParam` value at a precise time, as measured against
|
|
3950
|
+
* The `setValueAtTime()` method of the AudioParam interface schedules an instant change to the `AudioParam` value at a precise time, as measured against BaseAudioContext/currentTime.
|
|
3947
3951
|
*
|
|
3948
3952
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/setValueAtTime)
|
|
3949
3953
|
*/
|
|
3950
3954
|
setValueAtTime(value: number, startTime: number): AudioParam;
|
|
3951
3955
|
/**
|
|
3952
|
-
* The **`setValueCurveAtTime()`** method of the following a curve defined by a list of values.
|
|
3956
|
+
* The **`setValueCurveAtTime()`** method of the AudioParam interface schedules the parameter's value to change following a curve defined by a list of values.
|
|
3953
3957
|
*
|
|
3954
3958
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/setValueCurveAtTime)
|
|
3955
3959
|
*/
|
|
@@ -4074,13 +4078,13 @@ interface AudioWorkletNode extends AudioNode {
|
|
|
4074
4078
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioWorkletNode/processorerror_event) */
|
|
4075
4079
|
onprocessorerror: ((this: AudioWorkletNode, ev: ErrorEvent) => any) | null;
|
|
4076
4080
|
/**
|
|
4077
|
-
* The read-only **`parameters`** property of the
|
|
4081
|
+
* The read-only **`parameters`** property of the AudioWorkletNode interface returns the associated AudioParamMap — that is, a `Map`-like collection of AudioParam objects.
|
|
4078
4082
|
*
|
|
4079
4083
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioWorkletNode/parameters)
|
|
4080
4084
|
*/
|
|
4081
4085
|
readonly parameters: AudioParamMap;
|
|
4082
4086
|
/**
|
|
4083
|
-
* The read-only **`port`** property of the associated
|
|
4087
|
+
* The read-only **`port`** property of the AudioWorkletNode interface returns the associated MessagePort.
|
|
4084
4088
|
*
|
|
4085
4089
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioWorkletNode/port)
|
|
4086
4090
|
*/
|
|
@@ -4110,7 +4114,7 @@ interface AuthenticatorAssertionResponse extends AuthenticatorResponse {
|
|
|
4110
4114
|
*/
|
|
4111
4115
|
readonly authenticatorData: ArrayBuffer;
|
|
4112
4116
|
/**
|
|
4113
|
-
* The **`signature`** read-only property of the object which is the signature of the authenticator for both the client data (AuthenticatorResponse.clientDataJSON).
|
|
4117
|
+
* The **`signature`** read-only property of the AuthenticatorAssertionResponse interface is an ArrayBuffer object which is the signature of the authenticator for both AuthenticatorAssertionResponse.authenticatorData and a SHA-256 hash of the client data (AuthenticatorResponse.clientDataJSON).
|
|
4114
4118
|
*
|
|
4115
4119
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAssertionResponse/signature)
|
|
4116
4120
|
*/
|
|
@@ -4136,7 +4140,7 @@ declare var AuthenticatorAssertionResponse: {
|
|
|
4136
4140
|
*/
|
|
4137
4141
|
interface AuthenticatorAttestationResponse extends AuthenticatorResponse {
|
|
4138
4142
|
/**
|
|
4139
|
-
* The **`attestationObject`** property of the entire `attestationObject` with a private key that is stored in the authenticator when it is manufactured.
|
|
4143
|
+
* The **`attestationObject`** property of the AuthenticatorAttestationResponse interface returns an ArrayBuffer containing the new public key, as well as signature over the entire `attestationObject` with a private key that is stored in the authenticator when it is manufactured.
|
|
4140
4144
|
*
|
|
4141
4145
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAttestationResponse/attestationObject)
|
|
4142
4146
|
*/
|
|
@@ -4180,7 +4184,7 @@ declare var AuthenticatorAttestationResponse: {
|
|
|
4180
4184
|
*/
|
|
4181
4185
|
interface AuthenticatorResponse {
|
|
4182
4186
|
/**
|
|
4183
|
-
* The **`clientDataJSON`** property of the AuthenticatorResponse interface stores a JSON string in an
|
|
4187
|
+
* The **`clientDataJSON`** property of the AuthenticatorResponse interface stores a JSON string in an ArrayBuffer, representing the client data that was passed to CredentialsContainer.create() or CredentialsContainer.get().
|
|
4184
4188
|
*
|
|
4185
4189
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorResponse/clientDataJSON)
|
|
4186
4190
|
*/
|
|
@@ -4222,7 +4226,7 @@ interface BaseAudioContextEventMap {
|
|
|
4222
4226
|
*/
|
|
4223
4227
|
interface BaseAudioContext extends EventTarget {
|
|
4224
4228
|
/**
|
|
4225
|
-
* The `audioWorklet` read-only property of the processing.
|
|
4229
|
+
* The `audioWorklet` read-only property of the BaseAudioContext interface returns an instance of AudioWorklet that can be used for adding AudioWorkletProcessor-derived classes which implement custom audio processing.
|
|
4226
4230
|
* Available only in secure contexts.
|
|
4227
4231
|
*
|
|
4228
4232
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/audioWorklet)
|
|
@@ -4261,7 +4265,7 @@ interface BaseAudioContext extends EventTarget {
|
|
|
4261
4265
|
*/
|
|
4262
4266
|
readonly state: AudioContextState;
|
|
4263
4267
|
/**
|
|
4264
|
-
* The `createAnalyser()` method of the can be used to expose audio time and frequency data and create data visualizations.
|
|
4268
|
+
* The `createAnalyser()` method of the BaseAudioContext interface creates an AnalyserNode, which can be used to expose audio time and frequency data and create data visualizations.
|
|
4265
4269
|
*
|
|
4266
4270
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/createAnalyser)
|
|
4267
4271
|
*/
|
|
@@ -4297,7 +4301,7 @@ interface BaseAudioContext extends EventTarget {
|
|
|
4297
4301
|
*/
|
|
4298
4302
|
createChannelSplitter(numberOfOutputs?: number): ChannelSplitterNode;
|
|
4299
4303
|
/**
|
|
4300
|
-
* The **`createConstantSource()`** property of the BaseAudioContext interface creates a outputs a monaural (one-channel) sound signal whose samples all have the same value.
|
|
4304
|
+
* The **`createConstantSource()`** property of the BaseAudioContext interface creates a ConstantSourceNode object, which is an audio source that continuously outputs a monaural (one-channel) sound signal whose samples all have the same value.
|
|
4301
4305
|
*
|
|
4302
4306
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/createConstantSource)
|
|
4303
4307
|
*/
|
|
@@ -4309,7 +4313,7 @@ interface BaseAudioContext extends EventTarget {
|
|
|
4309
4313
|
*/
|
|
4310
4314
|
createConvolver(): ConvolverNode;
|
|
4311
4315
|
/**
|
|
4312
|
-
* The `createDelay()` method of the which is used to delay the incoming audio signal by a certain amount of time.
|
|
4316
|
+
* The `createDelay()` method of the BaseAudioContext Interface is used to create a DelayNode, which is used to delay the incoming audio signal by a certain amount of time.
|
|
4313
4317
|
*
|
|
4314
4318
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/createDelay)
|
|
4315
4319
|
*/
|
|
@@ -4370,7 +4374,7 @@ interface BaseAudioContext extends EventTarget {
|
|
|
4370
4374
|
*/
|
|
4371
4375
|
createWaveShaper(): WaveShaperNode;
|
|
4372
4376
|
/**
|
|
4373
|
-
* The `decodeAudioData()` method of the BaseAudioContext Interface is used to asynchronously decode audio file data contained in an
|
|
4377
|
+
* The `decodeAudioData()` method of the BaseAudioContext Interface is used to asynchronously decode audio file data contained in an ArrayBuffer that is loaded from Window/fetch, XMLHttpRequest, or FileReader.
|
|
4374
4378
|
*
|
|
4375
4379
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/decodeAudioData)
|
|
4376
4380
|
*/
|
|
@@ -4393,7 +4397,7 @@ declare var BaseAudioContext: {
|
|
|
4393
4397
|
*/
|
|
4394
4398
|
interface BeforeUnloadEvent extends Event {
|
|
4395
4399
|
/**
|
|
4396
|
-
* The **`returnValue`** property of the
|
|
4400
|
+
* The **`returnValue`** property of the BeforeUnloadEvent interface, when set to a truthy value, triggers a browser-generated confirmation dialog asking users to confirm if they _really_ want to leave the page when they try to close or reload it, or navigate somewhere else.
|
|
4397
4401
|
* @deprecated
|
|
4398
4402
|
*
|
|
4399
4403
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/BeforeUnloadEvent/returnValue)
|
|
@@ -4498,7 +4502,7 @@ interface Blob {
|
|
|
4498
4502
|
*/
|
|
4499
4503
|
stream(): ReadableStream<Uint8Array>;
|
|
4500
4504
|
/**
|
|
4501
|
-
* The **`text()`** method of the string containing the contents of the blob, interpreted as UTF-8.
|
|
4505
|
+
* The **`text()`** method of the Blob interface returns a Promise that resolves with a string containing the contents of the blob, interpreted as UTF-8.
|
|
4502
4506
|
*
|
|
4503
4507
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/text)
|
|
4504
4508
|
*/
|
|
@@ -4639,7 +4643,7 @@ declare var CDATASection: {
|
|
|
4639
4643
|
*/
|
|
4640
4644
|
interface CSSAnimation extends Animation {
|
|
4641
4645
|
/**
|
|
4642
|
-
* The **`animationName`** property of the
|
|
4646
|
+
* The **`animationName`** property of the CSSAnimation interface returns the animation-name.
|
|
4643
4647
|
*
|
|
4644
4648
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSAnimation/animationName)
|
|
4645
4649
|
*/
|
|
@@ -4860,19 +4864,19 @@ declare var CSSFontPaletteValuesRule: {
|
|
|
4860
4864
|
*/
|
|
4861
4865
|
interface CSSGroupingRule extends CSSRule {
|
|
4862
4866
|
/**
|
|
4863
|
-
* The **`cssRules`** property of the a collection of CSSRule objects.
|
|
4867
|
+
* The **`cssRules`** property of the CSSGroupingRule interface returns a CSSRuleList containing a collection of CSSRule objects.
|
|
4864
4868
|
*
|
|
4865
4869
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSGroupingRule/cssRules)
|
|
4866
4870
|
*/
|
|
4867
4871
|
readonly cssRules: CSSRuleList;
|
|
4868
4872
|
/**
|
|
4869
|
-
* The **`deleteRule()`** method of the rules.
|
|
4873
|
+
* The **`deleteRule()`** method of the CSSGroupingRule interface removes a CSS rule from a list of child CSS rules.
|
|
4870
4874
|
*
|
|
4871
4875
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSGroupingRule/deleteRule)
|
|
4872
4876
|
*/
|
|
4873
4877
|
deleteRule(index: number): void;
|
|
4874
4878
|
/**
|
|
4875
|
-
* The **`insertRule()`** method of the
|
|
4879
|
+
* The **`insertRule()`** method of the CSSGroupingRule interface adds a new CSS rule to a list of CSS rules.
|
|
4876
4880
|
*
|
|
4877
4881
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSGroupingRule/insertRule)
|
|
4878
4882
|
*/
|
|
@@ -4904,7 +4908,7 @@ declare var CSSImageValue: {
|
|
|
4904
4908
|
*/
|
|
4905
4909
|
interface CSSImportRule extends CSSRule {
|
|
4906
4910
|
/**
|
|
4907
|
-
* The read-only **`href`** property of the
|
|
4911
|
+
* The read-only **`href`** property of the CSSImportRule interface returns the URL specified by the @import at-rule.
|
|
4908
4912
|
*
|
|
4909
4913
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/href)
|
|
4910
4914
|
*/
|
|
@@ -4916,13 +4920,13 @@ interface CSSImportRule extends CSSRule {
|
|
|
4916
4920
|
*/
|
|
4917
4921
|
readonly layerName: string | null;
|
|
4918
4922
|
/**
|
|
4919
|
-
* The read-only **`media`** property of the containing the value of the `media` attribute of the associated stylesheet.
|
|
4923
|
+
* The read-only **`media`** property of the CSSImportRule interface returns a MediaList object, containing the value of the `media` attribute of the associated stylesheet.
|
|
4920
4924
|
*
|
|
4921
4925
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/media)
|
|
4922
4926
|
*/
|
|
4923
4927
|
readonly media: MediaList;
|
|
4924
4928
|
/**
|
|
4925
|
-
* The read-only **`styleSheet`** property of the
|
|
4929
|
+
* The read-only **`styleSheet`** property of the CSSImportRule interface returns the CSS Stylesheet specified by the @import at-rule.
|
|
4926
4930
|
*
|
|
4927
4931
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/styleSheet)
|
|
4928
4932
|
*/
|
|
@@ -5022,7 +5026,7 @@ declare var CSSKeyframesRule: {
|
|
|
5022
5026
|
*/
|
|
5023
5027
|
interface CSSKeywordValue extends CSSStyleValue {
|
|
5024
5028
|
/**
|
|
5025
|
-
* The **`value`** property of the `CSSKeywordValue`.
|
|
5029
|
+
* The **`value`** property of the CSSKeywordValue interface returns or sets the value of the `CSSKeywordValue`.
|
|
5026
5030
|
*
|
|
5027
5031
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSKeywordValue/value)
|
|
5028
5032
|
*/
|
|
@@ -5090,7 +5094,7 @@ declare var CSSMathClamp: {
|
|
|
5090
5094
|
*/
|
|
5091
5095
|
interface CSSMathInvert extends CSSMathValue {
|
|
5092
5096
|
/**
|
|
5093
|
-
* The CSSMathInvert.value read-only property of the
|
|
5097
|
+
* The CSSMathInvert.value read-only property of the CSSMathInvert interface returns a CSSNumericValue object.
|
|
5094
5098
|
*
|
|
5095
5099
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathInvert/value)
|
|
5096
5100
|
*/
|
|
@@ -5109,7 +5113,7 @@ declare var CSSMathInvert: {
|
|
|
5109
5113
|
*/
|
|
5110
5114
|
interface CSSMathMax extends CSSMathValue {
|
|
5111
5115
|
/**
|
|
5112
|
-
* The CSSMathMax.values read-only property of the which contains one or more CSSNumericValue objects.
|
|
5116
|
+
* The CSSMathMax.values read-only property of the CSSMathMax interface returns a CSSNumericArray object which contains one or more CSSNumericValue objects.
|
|
5113
5117
|
*
|
|
5114
5118
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathMax/values)
|
|
5115
5119
|
*/
|
|
@@ -5128,7 +5132,7 @@ declare var CSSMathMax: {
|
|
|
5128
5132
|
*/
|
|
5129
5133
|
interface CSSMathMin extends CSSMathValue {
|
|
5130
5134
|
/**
|
|
5131
|
-
* The CSSMathMin.values read-only property of the which contains one or more CSSNumericValue objects.
|
|
5135
|
+
* The CSSMathMin.values read-only property of the CSSMathMin interface returns a CSSNumericArray object which contains one or more CSSNumericValue objects.
|
|
5132
5136
|
*
|
|
5133
5137
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathMin/values)
|
|
5134
5138
|
*/
|
|
@@ -5147,7 +5151,7 @@ declare var CSSMathMin: {
|
|
|
5147
5151
|
*/
|
|
5148
5152
|
interface CSSMathNegate extends CSSMathValue {
|
|
5149
5153
|
/**
|
|
5150
|
-
* The CSSMathNegate.value read-only property of the
|
|
5154
|
+
* The CSSMathNegate.value read-only property of the CSSMathNegate interface returns a CSSNumericValue object.
|
|
5151
5155
|
*
|
|
5152
5156
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathNegate/value)
|
|
5153
5157
|
*/
|
|
@@ -5166,7 +5170,7 @@ declare var CSSMathNegate: {
|
|
|
5166
5170
|
*/
|
|
5167
5171
|
interface CSSMathProduct extends CSSMathValue {
|
|
5168
5172
|
/**
|
|
5169
|
-
* The **`CSSMathProduct.values`** read-only property of the CSSMathProduct interface returns a
|
|
5173
|
+
* The **`CSSMathProduct.values`** read-only property of the CSSMathProduct interface returns a CSSNumericArray object which contains one or more CSSNumericValue objects.
|
|
5170
5174
|
*
|
|
5171
5175
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathProduct/values)
|
|
5172
5176
|
*/
|
|
@@ -5223,7 +5227,7 @@ declare var CSSMathValue: {
|
|
|
5223
5227
|
*/
|
|
5224
5228
|
interface CSSMatrixComponent extends CSSTransformComponent {
|
|
5225
5229
|
/**
|
|
5226
|
-
* The **`matrix`** property of the
|
|
5230
|
+
* The **`matrix`** property of the CSSMatrixComponent interface gets and sets a 2d or 3d matrix.
|
|
5227
5231
|
*
|
|
5228
5232
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMatrixComponent/matrix)
|
|
5229
5233
|
*/
|
|
@@ -5242,7 +5246,7 @@ declare var CSSMatrixComponent: {
|
|
|
5242
5246
|
*/
|
|
5243
5247
|
interface CSSMediaRule extends CSSConditionRule {
|
|
5244
5248
|
/**
|
|
5245
|
-
* The read-only **`media`** property of the destination medium for style information.
|
|
5249
|
+
* The read-only **`media`** property of the CSSMediaRule interface returns a MediaList representing the intended destination medium for style information.
|
|
5246
5250
|
*
|
|
5247
5251
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMediaRule/media)
|
|
5248
5252
|
*/
|
|
@@ -5305,7 +5309,7 @@ declare var CSSNestedDeclarations: {
|
|
|
5305
5309
|
*/
|
|
5306
5310
|
interface CSSNumericArray {
|
|
5307
5311
|
/**
|
|
5308
|
-
* The read-only **`length`** property of the
|
|
5312
|
+
* The read-only **`length`** property of the CSSNumericArray interface returns the number of CSSNumericValue objects in the list.
|
|
5309
5313
|
*
|
|
5310
5314
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericArray/length)
|
|
5311
5315
|
*/
|
|
@@ -5326,61 +5330,61 @@ declare var CSSNumericArray: {
|
|
|
5326
5330
|
*/
|
|
5327
5331
|
interface CSSNumericValue extends CSSStyleValue {
|
|
5328
5332
|
/**
|
|
5329
|
-
* The **`add()`** method of the `CSSNumericValue`.
|
|
5333
|
+
* The **`add()`** method of the CSSNumericValue interface adds a supplied number to the `CSSNumericValue`.
|
|
5330
5334
|
*
|
|
5331
5335
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/add)
|
|
5332
5336
|
*/
|
|
5333
5337
|
add(...values: CSSNumberish[]): CSSNumericValue;
|
|
5334
5338
|
/**
|
|
5335
|
-
* The **`div()`** method of the supplied value.
|
|
5339
|
+
* The **`div()`** method of the CSSNumericValue interface divides the `CSSNumericValue` by the supplied value.
|
|
5336
5340
|
*
|
|
5337
5341
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/div)
|
|
5338
5342
|
*/
|
|
5339
5343
|
div(...values: CSSNumberish[]): CSSNumericValue;
|
|
5340
5344
|
/**
|
|
5341
|
-
* The **`equals()`** method of the value are strictly equal.
|
|
5345
|
+
* The **`equals()`** method of the CSSNumericValue interface returns a boolean indicating whether the passed value are strictly equal.
|
|
5342
5346
|
*
|
|
5343
5347
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/equals)
|
|
5344
5348
|
*/
|
|
5345
5349
|
equals(...value: CSSNumberish[]): boolean;
|
|
5346
5350
|
/**
|
|
5347
|
-
* The **`max()`** method of the passed.
|
|
5351
|
+
* The **`max()`** method of the CSSNumericValue interface returns the highest value from among the values passed.
|
|
5348
5352
|
*
|
|
5349
5353
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/max)
|
|
5350
5354
|
*/
|
|
5351
5355
|
max(...values: CSSNumberish[]): CSSNumericValue;
|
|
5352
5356
|
/**
|
|
5353
|
-
* The **`min()`** method of the values passed.
|
|
5357
|
+
* The **`min()`** method of the CSSNumericValue interface returns the lowest value from among those values passed.
|
|
5354
5358
|
*
|
|
5355
5359
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/min)
|
|
5356
5360
|
*/
|
|
5357
5361
|
min(...values: CSSNumberish[]): CSSNumericValue;
|
|
5358
5362
|
/**
|
|
5359
|
-
* The **`mul()`** method of the the supplied value.
|
|
5363
|
+
* The **`mul()`** method of the CSSNumericValue interface multiplies the `CSSNumericValue` by the supplied value.
|
|
5360
5364
|
*
|
|
5361
5365
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/mul)
|
|
5362
5366
|
*/
|
|
5363
5367
|
mul(...values: CSSNumberish[]): CSSNumericValue;
|
|
5364
5368
|
/**
|
|
5365
|
-
* The **`sub()`** method of the `CSSNumericValue`.
|
|
5369
|
+
* The **`sub()`** method of the CSSNumericValue interface subtracts a supplied number from the `CSSNumericValue`.
|
|
5366
5370
|
*
|
|
5367
5371
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/sub)
|
|
5368
5372
|
*/
|
|
5369
5373
|
sub(...values: CSSNumberish[]): CSSNumericValue;
|
|
5370
5374
|
/**
|
|
5371
|
-
* The **`to()`** method of the another.
|
|
5375
|
+
* The **`to()`** method of the CSSNumericValue interface converts a numeric value from one unit to another.
|
|
5372
5376
|
*
|
|
5373
5377
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/to)
|
|
5374
5378
|
*/
|
|
5375
5379
|
to(unit: string): CSSUnitValue;
|
|
5376
5380
|
/**
|
|
5377
|
-
* The **`toSum()`** method of the
|
|
5381
|
+
* The **`toSum()`** method of the CSSNumericValue interface converts the object's value to a CSSMathSum object to values of the specified unit.
|
|
5378
5382
|
*
|
|
5379
5383
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/toSum)
|
|
5380
5384
|
*/
|
|
5381
5385
|
toSum(...units: string[]): CSSMathSum;
|
|
5382
5386
|
/**
|
|
5383
|
-
* The **`type()`** method of the `CSSNumericValue`, one of `angle`, `flex`, `frequency`, `length`, `resolution`, `percent`, `percentHint`, or `time`.
|
|
5387
|
+
* The **`type()`** method of the CSSNumericValue interface returns the type of `CSSNumericValue`, one of `angle`, `flex`, `frequency`, `length`, `resolution`, `percent`, `percentHint`, or `time`.
|
|
5384
5388
|
*
|
|
5385
5389
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/type)
|
|
5386
5390
|
*/
|
|
@@ -5391,7 +5395,7 @@ declare var CSSNumericValue: {
|
|
|
5391
5395
|
prototype: CSSNumericValue;
|
|
5392
5396
|
new(): CSSNumericValue;
|
|
5393
5397
|
/**
|
|
5394
|
-
* The **`parse()`** static method of the members are value and the units.
|
|
5398
|
+
* The **`parse()`** static method of the CSSNumericValue interface converts a value string into an object whose members are value and the units.
|
|
5395
5399
|
*
|
|
5396
5400
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/parse_static)
|
|
5397
5401
|
*/
|
|
@@ -5463,7 +5467,7 @@ declare var CSSPageRule: {
|
|
|
5463
5467
|
*/
|
|
5464
5468
|
interface CSSPerspective extends CSSTransformComponent {
|
|
5465
5469
|
/**
|
|
5466
|
-
* The **`length`** property of the
|
|
5470
|
+
* The **`length`** property of the CSSPerspective interface sets the distance from z=0.
|
|
5467
5471
|
*
|
|
5468
5472
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPerspective/length)
|
|
5469
5473
|
*/
|
|
@@ -5697,25 +5701,25 @@ declare var CSSPropertyRule: {
|
|
|
5697
5701
|
*/
|
|
5698
5702
|
interface CSSRotate extends CSSTransformComponent {
|
|
5699
5703
|
/**
|
|
5700
|
-
* The **`angle`** property of the
|
|
5704
|
+
* The **`angle`** property of the CSSRotate interface gets and sets the angle of rotation.
|
|
5701
5705
|
*
|
|
5702
5706
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRotate/angle)
|
|
5703
5707
|
*/
|
|
5704
5708
|
angle: CSSNumericValue;
|
|
5705
5709
|
/**
|
|
5706
|
-
* The **`x`** property of the translating vector.
|
|
5710
|
+
* The **`x`** property of the CSSRotate interface gets and sets the abscissa or x-axis of the translating vector.
|
|
5707
5711
|
*
|
|
5708
5712
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRotate/x)
|
|
5709
5713
|
*/
|
|
5710
5714
|
x: CSSNumberish;
|
|
5711
5715
|
/**
|
|
5712
|
-
* The **`y`** property of the translating vector.
|
|
5716
|
+
* The **`y`** property of the CSSRotate interface gets and sets the ordinate or y-axis of the translating vector.
|
|
5713
5717
|
*
|
|
5714
5718
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRotate/y)
|
|
5715
5719
|
*/
|
|
5716
5720
|
y: CSSNumberish;
|
|
5717
5721
|
/**
|
|
5718
|
-
* The **`z`** property of the vector.
|
|
5722
|
+
* The **`z`** property of the CSSRotate interface representing the z-component of the translating vector.
|
|
5719
5723
|
*
|
|
5720
5724
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRotate/z)
|
|
5721
5725
|
*/
|
|
@@ -5747,13 +5751,13 @@ interface CSSRule {
|
|
|
5747
5751
|
*/
|
|
5748
5752
|
readonly parentRule: CSSRule | null;
|
|
5749
5753
|
/**
|
|
5750
|
-
* The **`parentStyleSheet`** property of the the current rule is defined.
|
|
5754
|
+
* The **`parentStyleSheet`** property of the CSSRule interface returns the StyleSheet object in which the current rule is defined.
|
|
5751
5755
|
*
|
|
5752
5756
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRule/parentStyleSheet)
|
|
5753
5757
|
*/
|
|
5754
5758
|
readonly parentStyleSheet: CSSStyleSheet | null;
|
|
5755
5759
|
/**
|
|
5756
|
-
* The read-only **`type`** property of the indicating which type of rule the CSSRule represents.
|
|
5760
|
+
* The read-only **`type`** property of the CSSRule interface is a deprecated property that returns an integer indicating which type of rule the CSSRule represents.
|
|
5757
5761
|
* @deprecated
|
|
5758
5762
|
*
|
|
5759
5763
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRule/type)
|
|
@@ -5823,19 +5827,19 @@ declare var CSSRuleList: {
|
|
|
5823
5827
|
*/
|
|
5824
5828
|
interface CSSScale extends CSSTransformComponent {
|
|
5825
5829
|
/**
|
|
5826
|
-
* The **`x`** property of the translating vector.
|
|
5830
|
+
* The **`x`** property of the CSSScale interface gets and sets the abscissa or x-axis of the translating vector.
|
|
5827
5831
|
*
|
|
5828
5832
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScale/x)
|
|
5829
5833
|
*/
|
|
5830
5834
|
x: CSSNumberish;
|
|
5831
5835
|
/**
|
|
5832
|
-
* The **`y`** property of the translating vector.
|
|
5836
|
+
* The **`y`** property of the CSSScale interface gets and sets the ordinate or y-axis of the translating vector.
|
|
5833
5837
|
*
|
|
5834
5838
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScale/y)
|
|
5835
5839
|
*/
|
|
5836
5840
|
y: CSSNumberish;
|
|
5837
5841
|
/**
|
|
5838
|
-
* The **`z`** property of the vector.
|
|
5842
|
+
* The **`z`** property of the CSSScale interface representing the z-component of the translating vector.
|
|
5839
5843
|
*
|
|
5840
5844
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScale/z)
|
|
5841
5845
|
*/
|
|
@@ -5879,13 +5883,13 @@ declare var CSSScopeRule: {
|
|
|
5879
5883
|
*/
|
|
5880
5884
|
interface CSSSkew extends CSSTransformComponent {
|
|
5881
5885
|
/**
|
|
5882
|
-
* The **`ax`** property of the along the x-axis (or abscissa).
|
|
5886
|
+
* The **`ax`** property of the CSSSkew interface gets and sets the angle used to distort the element along the x-axis (or abscissa).
|
|
5883
5887
|
*
|
|
5884
5888
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkew/ax)
|
|
5885
5889
|
*/
|
|
5886
5890
|
ax: CSSNumericValue;
|
|
5887
5891
|
/**
|
|
5888
|
-
* The **`ay`** property of the along the y-axis (or ordinate).
|
|
5892
|
+
* The **`ay`** property of the CSSSkew interface gets and sets the angle used to distort the element along the y-axis (or ordinate).
|
|
5889
5893
|
*
|
|
5890
5894
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkew/ay)
|
|
5891
5895
|
*/
|
|
@@ -5904,7 +5908,7 @@ declare var CSSSkew: {
|
|
|
5904
5908
|
*/
|
|
5905
5909
|
interface CSSSkewX extends CSSTransformComponent {
|
|
5906
5910
|
/**
|
|
5907
|
-
* The **`ax`** property of the along the x-axis (or abscissa).
|
|
5911
|
+
* The **`ax`** property of the CSSSkewX interface gets and sets the angle used to distort the element along the x-axis (or abscissa).
|
|
5908
5912
|
*
|
|
5909
5913
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkewX/ax)
|
|
5910
5914
|
*/
|
|
@@ -5923,7 +5927,7 @@ declare var CSSSkewX: {
|
|
|
5923
5927
|
*/
|
|
5924
5928
|
interface CSSSkewY extends CSSTransformComponent {
|
|
5925
5929
|
/**
|
|
5926
|
-
* The **`ay`** property of the along the y-axis (or ordinate).
|
|
5930
|
+
* The **`ay`** property of the CSSSkewY interface gets and sets the angle used to distort the element along the y-axis (or ordinate).
|
|
5927
5931
|
*
|
|
5928
5932
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkewY/ay)
|
|
5929
5933
|
*/
|
|
@@ -7375,7 +7379,7 @@ interface CSSStyleRule extends CSSGroupingRule {
|
|
|
7375
7379
|
*/
|
|
7376
7380
|
readonly style: CSSStyleProperties;
|
|
7377
7381
|
/**
|
|
7378
|
-
* The **`styleMap`** read-only property of the which provides access to the rule's property-value pairs.
|
|
7382
|
+
* The **`styleMap`** read-only property of the CSSStyleRule interface returns a StylePropertyMap object which provides access to the rule's property-value pairs.
|
|
7379
7383
|
*
|
|
7380
7384
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleRule/styleMap)
|
|
7381
7385
|
*/
|
|
@@ -7509,7 +7513,7 @@ interface CSSTransformComponent {
|
|
|
7509
7513
|
*/
|
|
7510
7514
|
is2D: boolean;
|
|
7511
7515
|
/**
|
|
7512
|
-
* The **`toMatrix()`** method of the object.
|
|
7516
|
+
* The **`toMatrix()`** method of the CSSTransformComponent interface returns a DOMMatrix object.
|
|
7513
7517
|
*
|
|
7514
7518
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformComponent/toMatrix)
|
|
7515
7519
|
*/
|
|
@@ -7529,19 +7533,19 @@ declare var CSSTransformComponent: {
|
|
|
7529
7533
|
*/
|
|
7530
7534
|
interface CSSTransformValue extends CSSStyleValue {
|
|
7531
7535
|
/**
|
|
7532
|
-
* The read-only **`is2D`** property of the
|
|
7536
|
+
* The read-only **`is2D`** property of the CSSTransformValue interface returns whether the transform is 2D or 3D.
|
|
7533
7537
|
*
|
|
7534
7538
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformValue/is2D)
|
|
7535
7539
|
*/
|
|
7536
7540
|
readonly is2D: boolean;
|
|
7537
7541
|
/**
|
|
7538
|
-
* The read-only **`length`** property of the the list.
|
|
7542
|
+
* The read-only **`length`** property of the CSSTransformValue interface returns the number of transform components in the list.
|
|
7539
7543
|
*
|
|
7540
7544
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformValue/length)
|
|
7541
7545
|
*/
|
|
7542
7546
|
readonly length: number;
|
|
7543
7547
|
/**
|
|
7544
|
-
* The **`toMatrix()`** method of the
|
|
7548
|
+
* The **`toMatrix()`** method of the CSSTransformValue interface returns a DOMMatrix object.
|
|
7545
7549
|
*
|
|
7546
7550
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformValue/toMatrix)
|
|
7547
7551
|
*/
|
|
@@ -7562,7 +7566,7 @@ declare var CSSTransformValue: {
|
|
|
7562
7566
|
*/
|
|
7563
7567
|
interface CSSTransition extends Animation {
|
|
7564
7568
|
/**
|
|
7565
|
-
* The **`transitionProperty`** property of the name** of the transition.
|
|
7569
|
+
* The **`transitionProperty`** property of the CSSTransition interface returns the **expanded transition property name** of the transition.
|
|
7566
7570
|
*
|
|
7567
7571
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransition/transitionProperty)
|
|
7568
7572
|
*/
|
|
@@ -7585,19 +7589,19 @@ declare var CSSTransition: {
|
|
|
7585
7589
|
*/
|
|
7586
7590
|
interface CSSTranslate extends CSSTransformComponent {
|
|
7587
7591
|
/**
|
|
7588
|
-
* The **`x`** property of the translating vector.
|
|
7592
|
+
* The **`x`** property of the CSSTranslate interface gets and sets the abscissa or x-axis of the translating vector.
|
|
7589
7593
|
*
|
|
7590
7594
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTranslate/x)
|
|
7591
7595
|
*/
|
|
7592
7596
|
x: CSSNumericValue;
|
|
7593
7597
|
/**
|
|
7594
|
-
* The **`y`** property of the translating vector.
|
|
7598
|
+
* The **`y`** property of the CSSTranslate interface gets and sets the ordinate or y-axis of the translating vector.
|
|
7595
7599
|
*
|
|
7596
7600
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTranslate/y)
|
|
7597
7601
|
*/
|
|
7598
7602
|
y: CSSNumericValue;
|
|
7599
7603
|
/**
|
|
7600
|
-
* The **`z`** property of the vector.
|
|
7604
|
+
* The **`z`** property of the CSSTranslate interface representing the z-component of the translating vector.
|
|
7601
7605
|
*
|
|
7602
7606
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTranslate/z)
|
|
7603
7607
|
*/
|
|
@@ -7622,7 +7626,7 @@ interface CSSUnitValue extends CSSNumericValue {
|
|
|
7622
7626
|
*/
|
|
7623
7627
|
readonly unit: string;
|
|
7624
7628
|
/**
|
|
7625
|
-
* The **`CSSUnitValue.value`** property of the
|
|
7629
|
+
* The **`CSSUnitValue.value`** property of the CSSUnitValue interface returns a double indicating the number of units.
|
|
7626
7630
|
*
|
|
7627
7631
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSUnitValue/value)
|
|
7628
7632
|
*/
|
|
@@ -7641,7 +7645,7 @@ declare var CSSUnitValue: {
|
|
|
7641
7645
|
*/
|
|
7642
7646
|
interface CSSUnparsedValue extends CSSStyleValue {
|
|
7643
7647
|
/**
|
|
7644
|
-
* The **`length`** read-only property of the
|
|
7648
|
+
* The **`length`** read-only property of the CSSUnparsedValue interface returns the number of items in the object.
|
|
7645
7649
|
*
|
|
7646
7650
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSUnparsedValue/length)
|
|
7647
7651
|
*/
|
|
@@ -7662,13 +7666,13 @@ declare var CSSUnparsedValue: {
|
|
|
7662
7666
|
*/
|
|
7663
7667
|
interface CSSVariableReferenceValue {
|
|
7664
7668
|
/**
|
|
7665
|
-
* The **`fallback`** read-only property of the
|
|
7669
|
+
* The **`fallback`** read-only property of the CSSVariableReferenceValue interface returns the custom property fallback value of the CSSVariableReferenceValue.
|
|
7666
7670
|
*
|
|
7667
7671
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSVariableReferenceValue/fallback)
|
|
7668
7672
|
*/
|
|
7669
7673
|
readonly fallback: CSSUnparsedValue | null;
|
|
7670
7674
|
/**
|
|
7671
|
-
* The **`variable`** property of the
|
|
7675
|
+
* The **`variable`** property of the CSSVariableReferenceValue interface returns the custom property name of the CSSVariableReferenceValue.
|
|
7672
7676
|
*
|
|
7673
7677
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSVariableReferenceValue/variable)
|
|
7674
7678
|
*/
|
|
@@ -7716,7 +7720,7 @@ interface Cache {
|
|
|
7716
7720
|
*/
|
|
7717
7721
|
delete(request: RequestInfo | URL, options?: CacheQueryOptions): Promise<boolean>;
|
|
7718
7722
|
/**
|
|
7719
|
-
* The **`keys()`** method of the Cache interface returns a representing the keys of the Cache.
|
|
7723
|
+
* The **`keys()`** method of the Cache interface returns a Promise that resolves to an array of Request objects representing the keys of the Cache.
|
|
7720
7724
|
*
|
|
7721
7725
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Cache/keys)
|
|
7722
7726
|
*/
|
|
@@ -7734,7 +7738,7 @@ interface Cache {
|
|
|
7734
7738
|
*/
|
|
7735
7739
|
matchAll(request?: RequestInfo | URL, options?: CacheQueryOptions): Promise<ReadonlyArray<Response>>;
|
|
7736
7740
|
/**
|
|
7737
|
-
* The **`put()`** method of the
|
|
7741
|
+
* The **`put()`** method of the Cache interface allows key/value pairs to be added to the current Cache object.
|
|
7738
7742
|
*
|
|
7739
7743
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Cache/put)
|
|
7740
7744
|
*/
|
|
@@ -7760,7 +7764,7 @@ interface CacheStorage {
|
|
|
7760
7764
|
*/
|
|
7761
7765
|
delete(cacheName: string): Promise<boolean>;
|
|
7762
7766
|
/**
|
|
7763
|
-
* The **`has()`** method of the CacheStorage interface returns a Promise that resolves to `true` if a
|
|
7767
|
+
* The **`has()`** method of the CacheStorage interface returns a Promise that resolves to `true` if a Cache object matches the `cacheName`.
|
|
7764
7768
|
*
|
|
7765
7769
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CacheStorage/has)
|
|
7766
7770
|
*/
|
|
@@ -7778,7 +7782,7 @@ interface CacheStorage {
|
|
|
7778
7782
|
*/
|
|
7779
7783
|
match(request: RequestInfo | URL, options?: MultiCacheQueryOptions): Promise<Response | undefined>;
|
|
7780
7784
|
/**
|
|
7781
|
-
* The **`open()`** method of the the Cache object matching the `cacheName`.
|
|
7785
|
+
* The **`open()`** method of the CacheStorage interface returns a Promise that resolves to the Cache object matching the `cacheName`.
|
|
7782
7786
|
*
|
|
7783
7787
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CacheStorage/open)
|
|
7784
7788
|
*/
|
|
@@ -7985,7 +7989,7 @@ interface CanvasRect {
|
|
|
7985
7989
|
*/
|
|
7986
7990
|
interface CanvasRenderingContext2D extends CanvasCompositing, CanvasDrawImage, CanvasDrawPath, CanvasFillStrokeStyles, CanvasFilters, CanvasImageData, CanvasImageSmoothing, CanvasPath, CanvasPathDrawingStyles, CanvasRect, CanvasSettings, CanvasShadowStyles, CanvasState, CanvasText, CanvasTextDrawingStyles, CanvasTransform, CanvasUserInterface {
|
|
7987
7991
|
/**
|
|
7988
|
-
* The **`CanvasRenderingContext2D.canvas`** property, part of the Canvas API, is a read-only reference to the
|
|
7992
|
+
* The **`CanvasRenderingContext2D.canvas`** property, part of the Canvas API, is a read-only reference to the HTMLCanvasElement object that is associated with a given context.
|
|
7989
7993
|
*
|
|
7990
7994
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/canvas)
|
|
7991
7995
|
*/
|
|
@@ -8263,7 +8267,7 @@ declare var Clipboard: {
|
|
|
8263
8267
|
*/
|
|
8264
8268
|
interface ClipboardEvent extends Event {
|
|
8265
8269
|
/**
|
|
8266
|
-
* The **`clipboardData`** property of the ClipboardEvent interface holds a DataTransfer object, which can be used to:
|
|
8270
|
+
* The **`clipboardData`** property of the ClipboardEvent interface holds a DataTransfer object, which can be used to:
|
|
8267
8271
|
*
|
|
8268
8272
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ClipboardEvent/clipboardData)
|
|
8269
8273
|
*/
|
|
@@ -8364,7 +8368,7 @@ declare var Comment: {
|
|
|
8364
8368
|
*/
|
|
8365
8369
|
interface CompositionEvent extends UIEvent {
|
|
8366
8370
|
/**
|
|
8367
|
-
* The **`data`** read-only property of the method that raised the event; its exact nature varies depending on the type of event that generated the `CompositionEvent` object.
|
|
8371
|
+
* The **`data`** read-only property of the CompositionEvent interface returns the characters generated by the input method that raised the event; its exact nature varies depending on the type of event that generated the `CompositionEvent` object.
|
|
8368
8372
|
*
|
|
8369
8373
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CompositionEvent/data)
|
|
8370
8374
|
*/
|
|
@@ -8648,7 +8652,7 @@ interface CredentialsContainer {
|
|
|
8648
8652
|
*/
|
|
8649
8653
|
preventSilentAccess(): Promise<void>;
|
|
8650
8654
|
/**
|
|
8651
|
-
* The **`store()`** method of the
|
|
8655
|
+
* The **`store()`** method of the CredentialsContainer stores a set of credentials for the user inside a Credential instance, returning this in a Promise.
|
|
8652
8656
|
*
|
|
8653
8657
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CredentialsContainer/store)
|
|
8654
8658
|
*/
|
|
@@ -8667,7 +8671,7 @@ declare var CredentialsContainer: {
|
|
|
8667
8671
|
*/
|
|
8668
8672
|
interface Crypto {
|
|
8669
8673
|
/**
|
|
8670
|
-
* The **`Crypto.subtle`** read-only property returns a cryptographic operations.
|
|
8674
|
+
* The **`Crypto.subtle`** read-only property returns a SubtleCrypto which can then be used to perform low-level cryptographic operations.
|
|
8671
8675
|
* Available only in secure contexts.
|
|
8672
8676
|
*
|
|
8673
8677
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Crypto/subtle)
|
|
@@ -8744,25 +8748,25 @@ interface CustomElementRegistry {
|
|
|
8744
8748
|
*/
|
|
8745
8749
|
define(name: string, constructor: CustomElementConstructor, options?: ElementDefinitionOptions): void;
|
|
8746
8750
|
/**
|
|
8747
|
-
* The **`get()`** method of the previously-defined custom element.
|
|
8751
|
+
* The **`get()`** method of the CustomElementRegistry interface returns the constructor for a previously-defined custom element.
|
|
8748
8752
|
*
|
|
8749
8753
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/get)
|
|
8750
8754
|
*/
|
|
8751
8755
|
get(name: string): CustomElementConstructor | undefined;
|
|
8752
8756
|
/**
|
|
8753
|
-
* The **`getName()`** method of the previously-defined custom element.
|
|
8757
|
+
* The **`getName()`** method of the CustomElementRegistry interface returns the name for a previously-defined custom element.
|
|
8754
8758
|
*
|
|
8755
8759
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/getName)
|
|
8756
8760
|
*/
|
|
8757
8761
|
getName(constructor: CustomElementConstructor): string | null;
|
|
8758
8762
|
/**
|
|
8759
|
-
* The **`upgrade()`** method of the elements in a Node subtree, even before they are connected to the main document.
|
|
8763
|
+
* The **`upgrade()`** method of the CustomElementRegistry interface upgrades all shadow-containing custom elements in a Node subtree, even before they are connected to the main document.
|
|
8760
8764
|
*
|
|
8761
8765
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/upgrade)
|
|
8762
8766
|
*/
|
|
8763
8767
|
upgrade(root: Node): void;
|
|
8764
8768
|
/**
|
|
8765
|
-
* The **`whenDefined()`** method of the resolves when the named element is defined.
|
|
8769
|
+
* The **`whenDefined()`** method of the CustomElementRegistry interface returns a Promise that resolves when the named element is defined.
|
|
8766
8770
|
*
|
|
8767
8771
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/whenDefined)
|
|
8768
8772
|
*/
|
|
@@ -8828,13 +8832,13 @@ interface DOMException extends Error {
|
|
|
8828
8832
|
*/
|
|
8829
8833
|
readonly code: number;
|
|
8830
8834
|
/**
|
|
8831
|
-
* The **`message`** read-only property of the a message or description associated with the given error name.
|
|
8835
|
+
* The **`message`** read-only property of the DOMException interface returns a string representing a message or description associated with the given error name.
|
|
8832
8836
|
*
|
|
8833
8837
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMException/message)
|
|
8834
8838
|
*/
|
|
8835
8839
|
readonly message: string;
|
|
8836
8840
|
/**
|
|
8837
|
-
* The **`name`** read-only property of the one of the strings associated with an error name.
|
|
8841
|
+
* The **`name`** read-only property of the DOMException interface returns a string that contains one of the strings associated with an error name.
|
|
8838
8842
|
*
|
|
8839
8843
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMException/name)
|
|
8840
8844
|
*/
|
|
@@ -8909,7 +8913,7 @@ interface DOMImplementation {
|
|
|
8909
8913
|
*/
|
|
8910
8914
|
createDocument(namespace: string | null, qualifiedName: string | null, doctype?: DocumentType | null): XMLDocument;
|
|
8911
8915
|
/**
|
|
8912
|
-
* The **`DOMImplementation.createDocumentType()`** method returns a DocumentType object which can either be used with into the document via methods like Node.insertBefore() or
|
|
8916
|
+
* The **`DOMImplementation.createDocumentType()`** method returns a DocumentType object which can either be used with DOMImplementation.createDocument upon document creation or can be put into the document via methods like Node.insertBefore() or Node.replaceChild().
|
|
8913
8917
|
*
|
|
8914
8918
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMImplementation/createDocumentType)
|
|
8915
8919
|
*/
|
|
@@ -9177,7 +9181,7 @@ interface DOMMatrixReadOnly {
|
|
|
9177
9181
|
*/
|
|
9178
9182
|
rotateFromVector(x?: number, y?: number): DOMMatrix;
|
|
9179
9183
|
/**
|
|
9180
|
-
* The **`scale()`** method of the original matrix with a scale transform applied.
|
|
9184
|
+
* The **`scale()`** method of the DOMMatrixReadOnly interface creates a new matrix being the result of the original matrix with a scale transform applied.
|
|
9181
9185
|
*
|
|
9182
9186
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/scale)
|
|
9183
9187
|
*/
|
|
@@ -9221,7 +9225,7 @@ interface DOMMatrixReadOnly {
|
|
|
9221
9225
|
*/
|
|
9222
9226
|
toJSON(): any;
|
|
9223
9227
|
/**
|
|
9224
|
-
* The **`transformPoint`** method of the
|
|
9228
|
+
* The **`transformPoint`** method of the DOMMatrixReadOnly interface creates a new DOMPoint object, transforming a specified point by the matrix.
|
|
9225
9229
|
*
|
|
9226
9230
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/transformPoint)
|
|
9227
9231
|
*/
|
|
@@ -9345,7 +9349,7 @@ interface DOMPointReadOnly {
|
|
|
9345
9349
|
*/
|
|
9346
9350
|
matrixTransform(matrix?: DOMMatrixInit): DOMPoint;
|
|
9347
9351
|
/**
|
|
9348
|
-
* The DOMPointReadOnly method `toJSON()` returns an object giving the
|
|
9352
|
+
* The DOMPointReadOnly method `toJSON()` returns an object giving the JSON form of the point object.
|
|
9349
9353
|
*
|
|
9350
9354
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/toJSON)
|
|
9351
9355
|
*/
|
|
@@ -9400,7 +9404,7 @@ interface DOMQuad {
|
|
|
9400
9404
|
*/
|
|
9401
9405
|
getBounds(): DOMRect;
|
|
9402
9406
|
/**
|
|
9403
|
-
* The DOMQuad method `toJSON()` returns a
|
|
9407
|
+
* The DOMQuad method `toJSON()` returns a JSON representation of the `DOMQuad` object.
|
|
9404
9408
|
*
|
|
9405
9409
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/toJSON)
|
|
9406
9410
|
*/
|
|
@@ -9450,7 +9454,7 @@ declare var DOMRect: {
|
|
|
9450
9454
|
prototype: DOMRect;
|
|
9451
9455
|
new(x?: number, y?: number, width?: number, height?: number): DOMRect;
|
|
9452
9456
|
/**
|
|
9453
|
-
* The **`fromRect()`** static method of the object with a given location and dimensions.
|
|
9457
|
+
* The **`fromRect()`** static method of the DOMRect object creates a new `DOMRect` object with a given location and dimensions.
|
|
9454
9458
|
*
|
|
9455
9459
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRect/fromRect_static)
|
|
9456
9460
|
*/
|
|
@@ -9552,7 +9556,7 @@ declare var DOMRectReadOnly: {
|
|
|
9552
9556
|
prototype: DOMRectReadOnly;
|
|
9553
9557
|
new(x?: number, y?: number, width?: number, height?: number): DOMRectReadOnly;
|
|
9554
9558
|
/**
|
|
9555
|
-
* The **`fromRect()`** static method of the object with a given location and dimensions.
|
|
9559
|
+
* The **`fromRect()`** static method of the DOMRectReadOnly object creates a new `DOMRectReadOnly` object with a given location and dimensions.
|
|
9556
9560
|
*
|
|
9557
9561
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly/fromRect_static)
|
|
9558
9562
|
*/
|
|
@@ -9700,7 +9704,7 @@ interface DataTransfer {
|
|
|
9700
9704
|
*/
|
|
9701
9705
|
readonly files: FileList;
|
|
9702
9706
|
/**
|
|
9703
|
-
* The read-only `items` property of the DataTransfer interface is a
|
|
9707
|
+
* The read-only `items` property of the DataTransfer interface is a DataTransferItemList of the DataTransferItem in a drag operation.
|
|
9704
9708
|
*
|
|
9705
9709
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransfer/items)
|
|
9706
9710
|
*/
|
|
@@ -9792,13 +9796,13 @@ declare var DataTransferItem: {
|
|
|
9792
9796
|
*/
|
|
9793
9797
|
interface DataTransferItemList {
|
|
9794
9798
|
/**
|
|
9795
|
-
* The read-only **`length`** property of the the drag item list.
|
|
9799
|
+
* The read-only **`length`** property of the DataTransferItemList interface returns the number of items currently in the drag item list.
|
|
9796
9800
|
*
|
|
9797
9801
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransferItemList/length)
|
|
9798
9802
|
*/
|
|
9799
9803
|
readonly length: number;
|
|
9800
9804
|
/**
|
|
9801
|
-
* The **`DataTransferItemList.add()`** method creates a new list.
|
|
9805
|
+
* The **`DataTransferItemList.add()`** method creates a new DataTransferItem using the specified data and adds it to the drag data list.
|
|
9802
9806
|
*
|
|
9803
9807
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransferItemList/add)
|
|
9804
9808
|
*/
|
|
@@ -9811,7 +9815,7 @@ interface DataTransferItemList {
|
|
|
9811
9815
|
*/
|
|
9812
9816
|
clear(): void;
|
|
9813
9817
|
/**
|
|
9814
|
-
* The **`DataTransferItemList.remove()`** method removes the
|
|
9818
|
+
* The **`DataTransferItemList.remove()`** method removes the DataTransferItem at the specified index from the list.
|
|
9815
9819
|
*
|
|
9816
9820
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransferItemList/remove)
|
|
9817
9821
|
*/
|
|
@@ -10025,7 +10029,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
|
|
|
10025
10029
|
*/
|
|
10026
10030
|
readonly all: HTMLAllCollection;
|
|
10027
10031
|
/**
|
|
10028
|
-
* The **`anchors`** read-only property of the
|
|
10032
|
+
* The **`anchors`** read-only property of the Document interface returns a list of all of the anchors in the document.
|
|
10029
10033
|
* @deprecated
|
|
10030
10034
|
*
|
|
10031
10035
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/anchors)
|
|
@@ -10046,7 +10050,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
|
|
|
10046
10050
|
*/
|
|
10047
10051
|
bgColor: string;
|
|
10048
10052
|
/**
|
|
10049
|
-
* The **`Document.body`** property represents the `null` if no such element exists.
|
|
10053
|
+
* The **`Document.body`** property represents the body or frameset node of the current document, or `null` if no such element exists.
|
|
10050
10054
|
*
|
|
10051
10055
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/body)
|
|
10052
10056
|
*/
|
|
@@ -10088,7 +10092,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
|
|
|
10088
10092
|
*/
|
|
10089
10093
|
readonly currentScript: HTMLOrSVGScriptElement | null;
|
|
10090
10094
|
/**
|
|
10091
|
-
* In browsers, **`document.defaultView`** returns the
|
|
10095
|
+
* In browsers, **`document.defaultView`** returns the Window object associated with Browsing_context, or `null` if none is available.
|
|
10092
10096
|
*
|
|
10093
10097
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/defaultView)
|
|
10094
10098
|
*/
|
|
@@ -10112,13 +10116,13 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
|
|
|
10112
10116
|
*/
|
|
10113
10117
|
readonly doctype: DocumentType | null;
|
|
10114
10118
|
/**
|
|
10115
|
-
* The **`documentElement`** read-only property of the Document interface returns the example, the html element for HTML documents).
|
|
10119
|
+
* The **`documentElement`** read-only property of the Document interface returns the Element that is the root element of the document (for example, the html element for HTML documents).
|
|
10116
10120
|
*
|
|
10117
10121
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/documentElement)
|
|
10118
10122
|
*/
|
|
10119
10123
|
readonly documentElement: HTMLElement;
|
|
10120
10124
|
/**
|
|
10121
|
-
* The **`documentURI`** read-only property of the
|
|
10125
|
+
* The **`documentURI`** read-only property of the Document interface returns the document location as a string.
|
|
10122
10126
|
*
|
|
10123
10127
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/documentURI)
|
|
10124
10128
|
*/
|
|
@@ -10131,7 +10135,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
|
|
|
10131
10135
|
*/
|
|
10132
10136
|
domain: string;
|
|
10133
10137
|
/**
|
|
10134
|
-
* The **`embeds`** read-only property of the
|
|
10138
|
+
* The **`embeds`** read-only property of the Document interface returns a list of the embedded embed elements within the current document.
|
|
10135
10139
|
*
|
|
10136
10140
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/embeds)
|
|
10137
10141
|
*/
|
|
@@ -10187,7 +10191,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
|
|
|
10187
10191
|
*/
|
|
10188
10192
|
readonly images: HTMLCollectionOf<HTMLImageElement>;
|
|
10189
10193
|
/**
|
|
10190
|
-
* The **`Document.implementation`** property returns a
|
|
10194
|
+
* The **`Document.implementation`** property returns a DOMImplementation object associated with the current document.
|
|
10191
10195
|
*
|
|
10192
10196
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/implementation)
|
|
10193
10197
|
*/
|
|
@@ -10218,7 +10222,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
|
|
|
10218
10222
|
*/
|
|
10219
10223
|
readonly links: HTMLCollectionOf<HTMLAnchorElement | HTMLAreaElement>;
|
|
10220
10224
|
/**
|
|
10221
|
-
* The **`Document.location`** read-only property returns a and provides methods for changing that URL and loading another URL.
|
|
10225
|
+
* The **`Document.location`** read-only property returns a Location object, which contains information about the URL of the document and provides methods for changing that URL and loading another URL.
|
|
10222
10226
|
*
|
|
10223
10227
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/location)
|
|
10224
10228
|
*/
|
|
@@ -10238,13 +10242,13 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
|
|
|
10238
10242
|
onvisibilitychange: ((this: Document, ev: Event) => any) | null;
|
|
10239
10243
|
readonly ownerDocument: null;
|
|
10240
10244
|
/**
|
|
10241
|
-
* The read-only **`pictureInPictureEnabled`** property of the available.
|
|
10245
|
+
* The read-only **`pictureInPictureEnabled`** property of the Document interface indicates whether or not picture-in-picture mode is available.
|
|
10242
10246
|
*
|
|
10243
10247
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/pictureInPictureEnabled)
|
|
10244
10248
|
*/
|
|
10245
10249
|
readonly pictureInPictureEnabled: boolean;
|
|
10246
10250
|
/**
|
|
10247
|
-
* The **`plugins`** read-only property of the containing one or more HTMLEmbedElements representing the
|
|
10251
|
+
* The **`plugins`** read-only property of the Document interface returns an HTMLCollection object containing one or more HTMLEmbedElements representing the embed elements in the current document.
|
|
10248
10252
|
*
|
|
10249
10253
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/plugins)
|
|
10250
10254
|
*/
|
|
@@ -10262,7 +10266,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
|
|
|
10262
10266
|
*/
|
|
10263
10267
|
readonly referrer: string;
|
|
10264
10268
|
/**
|
|
10265
|
-
* **`Document.rootElement`** returns the Element that is the root element of the document if it is an
|
|
10269
|
+
* **`Document.rootElement`** returns the Element that is the root element of the document if it is an svg element, otherwise `null`.
|
|
10266
10270
|
* @deprecated
|
|
10267
10271
|
*
|
|
10268
10272
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/rootElement)
|
|
@@ -10275,7 +10279,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
|
|
|
10275
10279
|
*/
|
|
10276
10280
|
readonly scripts: HTMLCollectionOf<HTMLScriptElement>;
|
|
10277
10281
|
/**
|
|
10278
|
-
* The **`scrollingElement`** read-only property of the scrolls the document.
|
|
10282
|
+
* The **`scrollingElement`** read-only property of the Document interface returns a reference to the Element that scrolls the document.
|
|
10279
10283
|
*
|
|
10280
10284
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/scrollingElement)
|
|
10281
10285
|
*/
|
|
@@ -10472,7 +10476,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
|
|
|
10472
10476
|
*/
|
|
10473
10477
|
createProcessingInstruction(target: string, data: string): ProcessingInstruction;
|
|
10474
10478
|
/**
|
|
10475
|
-
* The **`Document.createRange()`** method returns a new
|
|
10479
|
+
* The **`Document.createRange()`** method returns a new Range object.
|
|
10476
10480
|
*
|
|
10477
10481
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createRange)
|
|
10478
10482
|
*/
|
|
@@ -10516,7 +10520,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
|
|
|
10516
10520
|
exitPointerLock(): void;
|
|
10517
10521
|
getElementById(elementId: string): HTMLElement | null;
|
|
10518
10522
|
/**
|
|
10519
|
-
* The **`getElementsByClassName`** method of of all child elements which have all of the given class name(s).
|
|
10523
|
+
* The **`getElementsByClassName`** method of Document interface returns an array-like object of all child elements which have all of the given class name(s).
|
|
10520
10524
|
*
|
|
10521
10525
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/getElementsByClassName)
|
|
10522
10526
|
*/
|
|
@@ -10528,7 +10532,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
|
|
|
10528
10532
|
*/
|
|
10529
10533
|
getElementsByName(elementName: string): NodeListOf<HTMLElement>;
|
|
10530
10534
|
/**
|
|
10531
|
-
* The **`getElementsByTagName`** method of
|
|
10535
|
+
* The **`getElementsByTagName`** method of Document interface returns an HTMLCollection of elements with the given tag name.
|
|
10532
10536
|
*
|
|
10533
10537
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/getElementsByTagName)
|
|
10534
10538
|
*/
|
|
@@ -10566,13 +10570,13 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
|
|
|
10566
10570
|
*/
|
|
10567
10571
|
hasStorageAccess(): Promise<boolean>;
|
|
10568
10572
|
/**
|
|
10569
|
-
* The Document object's **`importNode()`** method creates a copy of a inserted into the current document later.
|
|
10573
|
+
* The Document object's **`importNode()`** method creates a copy of a Node or DocumentFragment from another document, to be inserted into the current document later.
|
|
10570
10574
|
*
|
|
10571
10575
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/importNode)
|
|
10572
10576
|
*/
|
|
10573
10577
|
importNode<T extends Node>(node: T, options?: boolean | ImportNodeOptions): T;
|
|
10574
10578
|
/**
|
|
10575
|
-
* The **`Document.open()`** method opens a document for
|
|
10579
|
+
* The **`Document.open()`** method opens a document for Document.write.
|
|
10576
10580
|
*
|
|
10577
10581
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/open)
|
|
10578
10582
|
*/
|
|
@@ -10954,7 +10958,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
|
|
|
10954
10958
|
*/
|
|
10955
10959
|
readonly classList: DOMTokenList;
|
|
10956
10960
|
/**
|
|
10957
|
-
* The **`className`** property of the of the specified element.
|
|
10961
|
+
* The **`className`** property of the Element interface gets and sets the value of the `class` attribute of the specified element.
|
|
10958
10962
|
*
|
|
10959
10963
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/className)
|
|
10960
10964
|
*/
|
|
@@ -11106,7 +11110,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
|
|
|
11106
11110
|
*/
|
|
11107
11111
|
computedStyleMap(): StylePropertyMapReadOnly;
|
|
11108
11112
|
/**
|
|
11109
|
-
* The **`getAttribute()`** method of the element.
|
|
11113
|
+
* The **`getAttribute()`** method of the Element interface returns the value of a specified attribute on the element.
|
|
11110
11114
|
*
|
|
11111
11115
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getAttribute)
|
|
11112
11116
|
*/
|
|
@@ -11118,7 +11122,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
|
|
|
11118
11122
|
*/
|
|
11119
11123
|
getAttributeNS(namespace: string | null, localName: string): string | null;
|
|
11120
11124
|
/**
|
|
11121
|
-
* The **`getAttributeNames()`** method of the
|
|
11125
|
+
* The **`getAttributeNames()`** method of the Element interface returns the attribute names of the element as an Array of strings.
|
|
11122
11126
|
*
|
|
11123
11127
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getAttributeNames)
|
|
11124
11128
|
*/
|
|
@@ -11136,7 +11140,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
|
|
|
11136
11140
|
*/
|
|
11137
11141
|
getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
|
|
11138
11142
|
/**
|
|
11139
|
-
* The **`Element.getBoundingClientRect()`** method returns a position relative to the viewport.
|
|
11143
|
+
* The **`Element.getBoundingClientRect()`** method returns a DOMRect object providing information about the size of an element and its position relative to the viewport.
|
|
11140
11144
|
*
|
|
11141
11145
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getBoundingClientRect)
|
|
11142
11146
|
*/
|
|
@@ -11148,13 +11152,13 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
|
|
|
11148
11152
|
*/
|
|
11149
11153
|
getClientRects(): DOMRectList;
|
|
11150
11154
|
/**
|
|
11151
|
-
* The Element method **`getElementsByClassName()`** returns a live specified class name or names.
|
|
11155
|
+
* The Element method **`getElementsByClassName()`** returns a live HTMLCollection which contains every descendant element which has the specified class name or names.
|
|
11152
11156
|
*
|
|
11153
11157
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getElementsByClassName)
|
|
11154
11158
|
*/
|
|
11155
11159
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
11156
11160
|
/**
|
|
11157
|
-
* The **`Element.getElementsByTagName()`** method returns a live
|
|
11161
|
+
* The **`Element.getElementsByTagName()`** method returns a live HTMLCollection of elements with the given tag name.
|
|
11158
11162
|
*
|
|
11159
11163
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getElementsByTagName)
|
|
11160
11164
|
*/
|
|
@@ -11198,19 +11202,19 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
|
|
|
11198
11202
|
*/
|
|
11199
11203
|
hasAttributes(): boolean;
|
|
11200
11204
|
/**
|
|
11201
|
-
* The **`hasPointerCapture()`** method of the pointer capture for the pointer identified by the given pointer ID.
|
|
11205
|
+
* The **`hasPointerCapture()`** method of the Element interface checks whether the element on which it is invoked has pointer capture for the pointer identified by the given pointer ID.
|
|
11202
11206
|
*
|
|
11203
11207
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/hasPointerCapture)
|
|
11204
11208
|
*/
|
|
11205
11209
|
hasPointerCapture(pointerId: number): boolean;
|
|
11206
11210
|
/**
|
|
11207
|
-
* The **`insertAdjacentElement()`** method of the relative to the element it is invoked upon.
|
|
11211
|
+
* The **`insertAdjacentElement()`** method of the Element interface inserts a given element node at a given position relative to the element it is invoked upon.
|
|
11208
11212
|
*
|
|
11209
11213
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/insertAdjacentElement)
|
|
11210
11214
|
*/
|
|
11211
11215
|
insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
|
|
11212
11216
|
/**
|
|
11213
|
-
* The **`insertAdjacentHTML()`** method of the the resulting nodes into the DOM tree at a specified position.
|
|
11217
|
+
* The **`insertAdjacentHTML()`** method of the Element interface parses the specified text as HTML or XML and inserts the resulting nodes into the DOM tree at a specified position.
|
|
11214
11218
|
*
|
|
11215
11219
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/insertAdjacentHTML)
|
|
11216
11220
|
*/
|
|
@@ -11228,7 +11232,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
|
|
|
11228
11232
|
*/
|
|
11229
11233
|
matches(selectors: string): boolean;
|
|
11230
11234
|
/**
|
|
11231
|
-
* The **`releasePointerCapture()`** method of the previously set for a specific (PointerEvent) _pointer_.
|
|
11235
|
+
* The **`releasePointerCapture()`** method of the Element interface releases (stops) _pointer capture_ that was previously set for a specific (PointerEvent) _pointer_.
|
|
11232
11236
|
*
|
|
11233
11237
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/releasePointerCapture)
|
|
11234
11238
|
*/
|
|
@@ -11240,7 +11244,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
|
|
|
11240
11244
|
*/
|
|
11241
11245
|
removeAttribute(qualifiedName: string): void;
|
|
11242
11246
|
/**
|
|
11243
|
-
* The **`removeAttributeNS()`** method of the
|
|
11247
|
+
* The **`removeAttributeNS()`** method of the Element interface removes the specified attribute with the specified namespace from an element.
|
|
11244
11248
|
*
|
|
11245
11249
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/removeAttributeNS)
|
|
11246
11250
|
*/
|
|
@@ -11321,13 +11325,13 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
|
|
|
11321
11325
|
*/
|
|
11322
11326
|
setHTMLUnsafe(html: string): void;
|
|
11323
11327
|
/**
|
|
11324
|
-
* The **`setPointerCapture()`** method of the _capture target_ of future pointer events.
|
|
11328
|
+
* The **`setPointerCapture()`** method of the Element interface is used to designate a specific element as the _capture target_ of future pointer events.
|
|
11325
11329
|
*
|
|
11326
11330
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setPointerCapture)
|
|
11327
11331
|
*/
|
|
11328
11332
|
setPointerCapture(pointerId: number): void;
|
|
11329
11333
|
/**
|
|
11330
|
-
* The **`toggleAttribute()`** method of the present and adding it if it is not present) on the given element.
|
|
11334
|
+
* The **`toggleAttribute()`** method of the Element interface toggles a Boolean attribute (removing it if it is present and adding it if it is not present) on the given element.
|
|
11331
11335
|
*
|
|
11332
11336
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/toggleAttribute)
|
|
11333
11337
|
*/
|
|
@@ -11604,7 +11608,7 @@ interface Event {
|
|
|
11604
11608
|
*/
|
|
11605
11609
|
readonly cancelable: boolean;
|
|
11606
11610
|
/**
|
|
11607
|
-
* The read-only **`composed`** property of the or not the event will propagate across the shadow DOM boundary into the standard DOM.
|
|
11611
|
+
* The read-only **`composed`** property of the Event interface returns a boolean value which indicates whether or not the event will propagate across the shadow DOM boundary into the standard DOM.
|
|
11608
11612
|
*
|
|
11609
11613
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/composed)
|
|
11610
11614
|
*/
|
|
@@ -11622,13 +11626,13 @@ interface Event {
|
|
|
11622
11626
|
*/
|
|
11623
11627
|
readonly defaultPrevented: boolean;
|
|
11624
11628
|
/**
|
|
11625
|
-
* The **`eventPhase`** read-only property of the being evaluated.
|
|
11629
|
+
* The **`eventPhase`** read-only property of the Event interface indicates which phase of the event flow is currently being evaluated.
|
|
11626
11630
|
*
|
|
11627
11631
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/eventPhase)
|
|
11628
11632
|
*/
|
|
11629
11633
|
readonly eventPhase: number;
|
|
11630
11634
|
/**
|
|
11631
|
-
* The **`isTrusted`** read-only property of the when the event was generated by the user agent (including via user actions and programmatic methods such as HTMLElement.focus()), and `false` when the event was dispatched via
|
|
11635
|
+
* The **`isTrusted`** read-only property of the Event interface is a boolean value that is `true` when the event was generated by the user agent (including via user actions and programmatic methods such as HTMLElement.focus()), and `false` when the event was dispatched via EventTarget.dispatchEvent().
|
|
11632
11636
|
*
|
|
11633
11637
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/isTrusted)
|
|
11634
11638
|
*/
|
|
@@ -11648,7 +11652,7 @@ interface Event {
|
|
|
11648
11652
|
*/
|
|
11649
11653
|
readonly srcElement: EventTarget | null;
|
|
11650
11654
|
/**
|
|
11651
|
-
* The read-only **`target`** property of the dispatched.
|
|
11655
|
+
* The read-only **`target`** property of the Event interface is a reference to the object onto which the event was dispatched.
|
|
11652
11656
|
*
|
|
11653
11657
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/target)
|
|
11654
11658
|
*/
|
|
@@ -11685,7 +11689,7 @@ interface Event {
|
|
|
11685
11689
|
*/
|
|
11686
11690
|
preventDefault(): void;
|
|
11687
11691
|
/**
|
|
11688
|
-
* The **`stopImmediatePropagation()`** method of the
|
|
11692
|
+
* The **`stopImmediatePropagation()`** method of the Event interface prevents other listeners of the same event from being called.
|
|
11689
11693
|
*
|
|
11690
11694
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/stopImmediatePropagation)
|
|
11691
11695
|
*/
|
|
@@ -11752,25 +11756,25 @@ interface EventSource extends EventTarget {
|
|
|
11752
11756
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/open_event) */
|
|
11753
11757
|
onopen: ((this: EventSource, ev: Event) => any) | null;
|
|
11754
11758
|
/**
|
|
11755
|
-
* The **`readyState`** read-only property of the connection.
|
|
11759
|
+
* The **`readyState`** read-only property of the EventSource interface returns a number representing the state of the connection.
|
|
11756
11760
|
*
|
|
11757
11761
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/readyState)
|
|
11758
11762
|
*/
|
|
11759
11763
|
readonly readyState: number;
|
|
11760
11764
|
/**
|
|
11761
|
-
* The **`url`** read-only property of the URL of the source.
|
|
11765
|
+
* The **`url`** read-only property of the EventSource interface returns a string representing the URL of the source.
|
|
11762
11766
|
*
|
|
11763
11767
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/url)
|
|
11764
11768
|
*/
|
|
11765
11769
|
readonly url: string;
|
|
11766
11770
|
/**
|
|
11767
|
-
* The **`withCredentials`** read-only property of the the `EventSource` object was instantiated with CORS credentials set.
|
|
11771
|
+
* The **`withCredentials`** read-only property of the EventSource interface returns a boolean value indicating whether the `EventSource` object was instantiated with CORS credentials set.
|
|
11768
11772
|
*
|
|
11769
11773
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/withCredentials)
|
|
11770
11774
|
*/
|
|
11771
11775
|
readonly withCredentials: boolean;
|
|
11772
11776
|
/**
|
|
11773
|
-
* The **`close()`** method of the EventSource interface closes the connection, if one is made, and sets the
|
|
11777
|
+
* The **`close()`** method of the EventSource interface closes the connection, if one is made, and sets the EventSource.readyState attribute to `2` (closed).
|
|
11774
11778
|
*
|
|
11775
11779
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/close)
|
|
11776
11780
|
*/
|
|
@@ -11961,7 +11965,7 @@ interface FileReader extends EventTarget {
|
|
|
11961
11965
|
*/
|
|
11962
11966
|
readAsBinaryString(blob: Blob): void;
|
|
11963
11967
|
/**
|
|
11964
|
-
* The **`readAsDataURL()`** method of the FileReader interface is used to read the contents of the specified
|
|
11968
|
+
* The **`readAsDataURL()`** method of the FileReader interface is used to read the contents of the specified Blob or File.
|
|
11965
11969
|
*
|
|
11966
11970
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/readAsDataURL)
|
|
11967
11971
|
*/
|
|
@@ -11996,13 +12000,13 @@ declare var FileReader: {
|
|
|
11996
12000
|
*/
|
|
11997
12001
|
interface FileSystem {
|
|
11998
12002
|
/**
|
|
11999
|
-
* The read-only **`name`** property of the
|
|
12003
|
+
* The read-only **`name`** property of the FileSystem interface indicates the file system's name.
|
|
12000
12004
|
*
|
|
12001
12005
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystem/name)
|
|
12002
12006
|
*/
|
|
12003
12007
|
readonly name: string;
|
|
12004
12008
|
/**
|
|
12005
|
-
* The read-only **`root`** property of the object representing the root directory of the file system, for use with the File and Directory Entries API.
|
|
12009
|
+
* The read-only **`root`** property of the FileSystem interface specifies a FileSystemDirectoryEntry object representing the root directory of the file system, for use with the File and Directory Entries API.
|
|
12006
12010
|
*
|
|
12007
12011
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystem/root)
|
|
12008
12012
|
*/
|
|
@@ -12021,19 +12025,19 @@ declare var FileSystem: {
|
|
|
12021
12025
|
*/
|
|
12022
12026
|
interface FileSystemDirectoryEntry extends FileSystemEntry {
|
|
12023
12027
|
/**
|
|
12024
|
-
* The FileSystemDirectoryEntry interface's method **`createReader()`** returns a the directory.
|
|
12028
|
+
* The FileSystemDirectoryEntry interface's method **`createReader()`** returns a FileSystemDirectoryReader object which can be used to read the entries in the directory.
|
|
12025
12029
|
*
|
|
12026
12030
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryEntry/createReader)
|
|
12027
12031
|
*/
|
|
12028
12032
|
createReader(): FileSystemDirectoryReader;
|
|
12029
12033
|
/**
|
|
12030
|
-
* The FileSystemDirectoryEntry interface's method **`getDirectory()`** returns a somewhere within the directory subtree rooted at the directory on which it's called.
|
|
12034
|
+
* The FileSystemDirectoryEntry interface's method **`getDirectory()`** returns a FileSystemDirectoryEntry object corresponding to a directory contained somewhere within the directory subtree rooted at the directory on which it's called.
|
|
12031
12035
|
*
|
|
12032
12036
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryEntry/getDirectory)
|
|
12033
12037
|
*/
|
|
12034
12038
|
getDirectory(path?: string | null, options?: FileSystemFlags, successCallback?: FileSystemEntryCallback, errorCallback?: ErrorCallback): void;
|
|
12035
12039
|
/**
|
|
12036
|
-
* The FileSystemDirectoryEntry interface's method **`getFile()`** returns a within the directory subtree rooted at the directory on which it's called.
|
|
12040
|
+
* The FileSystemDirectoryEntry interface's method **`getFile()`** returns a FileSystemFileEntry object corresponding to a file contained somewhere within the directory subtree rooted at the directory on which it's called.
|
|
12037
12041
|
*
|
|
12038
12042
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryEntry/getFile)
|
|
12039
12043
|
*/
|
|
@@ -12054,25 +12058,25 @@ declare var FileSystemDirectoryEntry: {
|
|
|
12054
12058
|
interface FileSystemDirectoryHandle extends FileSystemHandle {
|
|
12055
12059
|
readonly kind: "directory";
|
|
12056
12060
|
/**
|
|
12057
|
-
* The **`getDirectoryHandle()`** method of the within the directory handle on which the method is called.
|
|
12061
|
+
* The **`getDirectoryHandle()`** method of the FileSystemDirectoryHandle interface returns a FileSystemDirectoryHandle for a subdirectory with the specified name within the directory handle on which the method is called.
|
|
12058
12062
|
*
|
|
12059
12063
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryHandle/getDirectoryHandle)
|
|
12060
12064
|
*/
|
|
12061
12065
|
getDirectoryHandle(name: string, options?: FileSystemGetDirectoryOptions): Promise<FileSystemDirectoryHandle>;
|
|
12062
12066
|
/**
|
|
12063
|
-
* The **`getFileHandle()`** method of the directory the method is called.
|
|
12067
|
+
* The **`getFileHandle()`** method of the FileSystemDirectoryHandle interface returns a FileSystemFileHandle for a file with the specified name, within the directory the method is called.
|
|
12064
12068
|
*
|
|
12065
12069
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryHandle/getFileHandle)
|
|
12066
12070
|
*/
|
|
12067
12071
|
getFileHandle(name: string, options?: FileSystemGetFileOptions): Promise<FileSystemFileHandle>;
|
|
12068
12072
|
/**
|
|
12069
|
-
* The **`removeEntry()`** method of the directory handle contains a file or directory called the name specified.
|
|
12073
|
+
* The **`removeEntry()`** method of the FileSystemDirectoryHandle interface attempts to remove an entry if the directory handle contains a file or directory called the name specified.
|
|
12070
12074
|
*
|
|
12071
12075
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryHandle/removeEntry)
|
|
12072
12076
|
*/
|
|
12073
12077
|
removeEntry(name: string, options?: FileSystemRemoveOptions): Promise<void>;
|
|
12074
12078
|
/**
|
|
12075
|
-
* The **`resolve()`** method of the directory names from the parent handle to the specified child entry, with the name of the child entry as the last array item.
|
|
12079
|
+
* The **`resolve()`** method of the FileSystemDirectoryHandle interface returns an Array of directory names from the parent handle to the specified child entry, with the name of the child entry as the last array item.
|
|
12076
12080
|
*
|
|
12077
12081
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryHandle/resolve)
|
|
12078
12082
|
*/
|
|
@@ -12110,7 +12114,7 @@ declare var FileSystemDirectoryReader: {
|
|
|
12110
12114
|
*/
|
|
12111
12115
|
interface FileSystemEntry {
|
|
12112
12116
|
/**
|
|
12113
|
-
* The read-only **`filesystem`** property of the FileSystemEntry interface contains a resides.
|
|
12117
|
+
* The read-only **`filesystem`** property of the FileSystemEntry interface contains a FileSystem object that represents the file system on which the entry resides.
|
|
12114
12118
|
*
|
|
12115
12119
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemEntry/filesystem)
|
|
12116
12120
|
*/
|
|
@@ -12140,7 +12144,7 @@ interface FileSystemEntry {
|
|
|
12140
12144
|
*/
|
|
12141
12145
|
readonly name: string;
|
|
12142
12146
|
/**
|
|
12143
|
-
* The FileSystemEntry interface's method **`getParent()`** obtains a
|
|
12147
|
+
* The FileSystemEntry interface's method **`getParent()`** obtains a FileSystemDirectoryEntry.
|
|
12144
12148
|
*
|
|
12145
12149
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemEntry/getParent)
|
|
12146
12150
|
*/
|
|
@@ -12159,7 +12163,7 @@ declare var FileSystemEntry: {
|
|
|
12159
12163
|
*/
|
|
12160
12164
|
interface FileSystemFileEntry extends FileSystemEntry {
|
|
12161
12165
|
/**
|
|
12162
|
-
* The FileSystemFileEntry interface's method **`file()`** returns a the directory entry.
|
|
12166
|
+
* The FileSystemFileEntry interface's method **`file()`** returns a File object which can be used to read data from the file represented by the directory entry.
|
|
12163
12167
|
*
|
|
12164
12168
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemFileEntry/file)
|
|
12165
12169
|
*/
|
|
@@ -12186,7 +12190,7 @@ interface FileSystemFileHandle extends FileSystemHandle {
|
|
|
12186
12190
|
*/
|
|
12187
12191
|
createWritable(options?: FileSystemCreateWritableOptions): Promise<FileSystemWritableFileStream>;
|
|
12188
12192
|
/**
|
|
12189
|
-
* The **`getFile()`** method of the
|
|
12193
|
+
* The **`getFile()`** method of the FileSystemFileHandle interface returns a Promise which resolves to a File object representing the state on disk of the entry represented by the handle.
|
|
12190
12194
|
*
|
|
12191
12195
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemFileHandle/getFile)
|
|
12192
12196
|
*/
|
|
@@ -12206,19 +12210,19 @@ declare var FileSystemFileHandle: {
|
|
|
12206
12210
|
*/
|
|
12207
12211
|
interface FileSystemHandle {
|
|
12208
12212
|
/**
|
|
12209
|
-
* The **`kind`** read-only property of the
|
|
12213
|
+
* The **`kind`** read-only property of the FileSystemHandle interface returns the type of entry.
|
|
12210
12214
|
*
|
|
12211
12215
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemHandle/kind)
|
|
12212
12216
|
*/
|
|
12213
12217
|
readonly kind: FileSystemHandleKind;
|
|
12214
12218
|
/**
|
|
12215
|
-
* The **`name`** read-only property of the handle.
|
|
12219
|
+
* The **`name`** read-only property of the FileSystemHandle interface returns the name of the entry represented by handle.
|
|
12216
12220
|
*
|
|
12217
12221
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemHandle/name)
|
|
12218
12222
|
*/
|
|
12219
12223
|
readonly name: string;
|
|
12220
12224
|
/**
|
|
12221
|
-
* The **`isSameEntry()`** method of the
|
|
12225
|
+
* The **`isSameEntry()`** method of the FileSystemHandle interface compares two FileSystemHandle to see if the associated entries (either a file or directory) match.
|
|
12222
12226
|
*
|
|
12223
12227
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemHandle/isSameEntry)
|
|
12224
12228
|
*/
|
|
@@ -12269,7 +12273,7 @@ declare var FileSystemWritableFileStream: {
|
|
|
12269
12273
|
*/
|
|
12270
12274
|
interface FocusEvent extends UIEvent {
|
|
12271
12275
|
/**
|
|
12272
|
-
* The **`relatedTarget`** read-only property of the FocusEvent interface is the secondary target, depending on the type of event:
|
|
12276
|
+
* The **`relatedTarget`** read-only property of the FocusEvent interface is the secondary target, depending on the type of event:
|
|
12273
12277
|
*
|
|
12274
12278
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FocusEvent/relatedTarget)
|
|
12275
12279
|
*/
|
|
@@ -12433,7 +12437,7 @@ declare var FontFaceSet: {
|
|
|
12433
12437
|
*/
|
|
12434
12438
|
interface FontFaceSetLoadEvent extends Event {
|
|
12435
12439
|
/**
|
|
12436
|
-
* The **`fontfaces`** read-only property of the
|
|
12440
|
+
* The **`fontfaces`** read-only property of the FontFaceSetLoadEvent interface returns an array of FontFace instances, each of which represents a single usable font.
|
|
12437
12441
|
*
|
|
12438
12442
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFaceSetLoadEvent/fontfaces)
|
|
12439
12443
|
*/
|
|
@@ -12544,13 +12548,38 @@ declare var FragmentDirective: {
|
|
|
12544
12548
|
*/
|
|
12545
12549
|
interface GPUError {
|
|
12546
12550
|
/**
|
|
12547
|
-
* The **`message`** read-only property of the
|
|
12551
|
+
* The **`message`** read-only property of the GPUError interface provides a human-readable message that explains why the error occurred.
|
|
12548
12552
|
*
|
|
12549
12553
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUError/message)
|
|
12550
12554
|
*/
|
|
12551
12555
|
readonly message: string;
|
|
12552
12556
|
}
|
|
12553
12557
|
|
|
12558
|
+
declare var GPUError: {
|
|
12559
|
+
prototype: GPUError;
|
|
12560
|
+
new(): GPUError;
|
|
12561
|
+
};
|
|
12562
|
+
|
|
12563
|
+
/**
|
|
12564
|
+
* The **`GPUPipelineError`** interface of the WebGPU API describes a pipeline failure.
|
|
12565
|
+
* Available only in secure contexts.
|
|
12566
|
+
*
|
|
12567
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUPipelineError)
|
|
12568
|
+
*/
|
|
12569
|
+
interface GPUPipelineError extends DOMException {
|
|
12570
|
+
/**
|
|
12571
|
+
* The **`reason`** read-only property of the GPUPipelineError interface defines the reason the pipeline creation failed in a machine-readable way.
|
|
12572
|
+
*
|
|
12573
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUPipelineError/reason)
|
|
12574
|
+
*/
|
|
12575
|
+
readonly reason: GPUPipelineErrorReason;
|
|
12576
|
+
}
|
|
12577
|
+
|
|
12578
|
+
declare var GPUPipelineError: {
|
|
12579
|
+
prototype: GPUPipelineError;
|
|
12580
|
+
new(message: string, options: GPUPipelineErrorInit): GPUPipelineError;
|
|
12581
|
+
};
|
|
12582
|
+
|
|
12554
12583
|
/**
|
|
12555
12584
|
* The `GainNode` interface represents a change in volume.
|
|
12556
12585
|
*
|
|
@@ -12589,7 +12618,7 @@ interface Gamepad {
|
|
|
12589
12618
|
*/
|
|
12590
12619
|
readonly buttons: ReadonlyArray<GamepadButton>;
|
|
12591
12620
|
/**
|
|
12592
|
-
* The **`Gamepad.connected`** property of the still connected to the system.
|
|
12621
|
+
* The **`Gamepad.connected`** property of the Gamepad interface returns a boolean indicating whether the gamepad is still connected to the system.
|
|
12593
12622
|
*
|
|
12594
12623
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/connected)
|
|
12595
12624
|
*/
|
|
@@ -12607,13 +12636,13 @@ interface Gamepad {
|
|
|
12607
12636
|
*/
|
|
12608
12637
|
readonly index: number;
|
|
12609
12638
|
/**
|
|
12610
|
-
* The **`Gamepad.mapping`** property of the remapped the controls on the device to a known layout.
|
|
12639
|
+
* The **`Gamepad.mapping`** property of the Gamepad interface returns a string indicating whether the browser has remapped the controls on the device to a known layout.
|
|
12611
12640
|
*
|
|
12612
12641
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/mapping)
|
|
12613
12642
|
*/
|
|
12614
12643
|
readonly mapping: GamepadMappingType;
|
|
12615
12644
|
/**
|
|
12616
|
-
* The **`Gamepad.timestamp`** property of the representing the last time the data for this gamepad was updated.
|
|
12645
|
+
* The **`Gamepad.timestamp`** property of the Gamepad interface returns a DOMHighResTimeStamp representing the last time the data for this gamepad was updated.
|
|
12617
12646
|
*
|
|
12618
12647
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/timestamp)
|
|
12619
12648
|
*/
|
|
@@ -12638,19 +12667,19 @@ declare var Gamepad: {
|
|
|
12638
12667
|
*/
|
|
12639
12668
|
interface GamepadButton {
|
|
12640
12669
|
/**
|
|
12641
|
-
* The **`GamepadButton.pressed`** property of the the button is currently pressed (`true`) or unpressed (`false`).
|
|
12670
|
+
* The **`GamepadButton.pressed`** property of the GamepadButton interface returns a `boolean` indicating whether the button is currently pressed (`true`) or unpressed (`false`).
|
|
12642
12671
|
*
|
|
12643
12672
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadButton/pressed)
|
|
12644
12673
|
*/
|
|
12645
12674
|
readonly pressed: boolean;
|
|
12646
12675
|
/**
|
|
12647
|
-
* The **`touched`** property of the a button capable of detecting touch is currently touched (`true`) or not touched (`false`).
|
|
12676
|
+
* The **`touched`** property of the GamepadButton interface returns a `boolean` indicating whether a button capable of detecting touch is currently touched (`true`) or not touched (`false`).
|
|
12648
12677
|
*
|
|
12649
12678
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadButton/touched)
|
|
12650
12679
|
*/
|
|
12651
12680
|
readonly touched: boolean;
|
|
12652
12681
|
/**
|
|
12653
|
-
* The **`GamepadButton.value`** property of the current state of analog buttons on many modern gamepads, such as the triggers.
|
|
12682
|
+
* The **`GamepadButton.value`** property of the GamepadButton interface returns a double value used to represent the current state of analog buttons on many modern gamepads, such as the triggers.
|
|
12654
12683
|
*
|
|
12655
12684
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadButton/value)
|
|
12656
12685
|
*/
|
|
@@ -12669,7 +12698,7 @@ declare var GamepadButton: {
|
|
|
12669
12698
|
*/
|
|
12670
12699
|
interface GamepadEvent extends Event {
|
|
12671
12700
|
/**
|
|
12672
|
-
* The **`GamepadEvent.gamepad`** property of the **GamepadEvent interface** returns a Gamepad object, providing access to the associated gamepad data for fired
|
|
12701
|
+
* The **`GamepadEvent.gamepad`** property of the **GamepadEvent interface** returns a Gamepad object, providing access to the associated gamepad data for fired Window.gamepadconnected_event and Window.gamepaddisconnected_event events.
|
|
12673
12702
|
*
|
|
12674
12703
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadEvent/gamepad)
|
|
12675
12704
|
*/
|
|
@@ -13271,7 +13300,7 @@ interface HTMLAnchorElement extends HTMLElement, HTMLHyperlinkElementUtils {
|
|
|
13271
13300
|
*/
|
|
13272
13301
|
ping: string;
|
|
13273
13302
|
/**
|
|
13274
|
-
* The **`HTMLAnchorElement.referrerPolicy`** property reflect the HTML `referrerpolicy` attribute of the
|
|
13303
|
+
* The **`HTMLAnchorElement.referrerPolicy`** property reflect the HTML `referrerpolicy` attribute of the a element defining which referrer is sent when fetching the resource.
|
|
13275
13304
|
*
|
|
13276
13305
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/referrerPolicy)
|
|
13277
13306
|
*/
|
|
@@ -13354,7 +13383,7 @@ interface HTMLAreaElement extends HTMLElement, HTMLHyperlinkElementUtils {
|
|
|
13354
13383
|
*/
|
|
13355
13384
|
ping: string;
|
|
13356
13385
|
/**
|
|
13357
|
-
* The **`HTMLAreaElement.referrerPolicy`** property reflect the HTML `referrerpolicy` attribute of the resource.
|
|
13386
|
+
* The **`HTMLAreaElement.referrerPolicy`** property reflect the HTML `referrerpolicy` attribute of the area element defining which referrer is sent when fetching the resource.
|
|
13358
13387
|
*
|
|
13359
13388
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/referrerPolicy)
|
|
13360
13389
|
*/
|
|
@@ -13540,7 +13569,7 @@ interface HTMLButtonElement extends HTMLElement, PopoverInvokerElement {
|
|
|
13540
13569
|
*/
|
|
13541
13570
|
formTarget: string;
|
|
13542
13571
|
/**
|
|
13543
|
-
* The **`HTMLButtonElement.labels`** read-only property returns a
|
|
13572
|
+
* The **`HTMLButtonElement.labels`** read-only property returns a NodeList of the label elements associated with the button element.
|
|
13544
13573
|
*
|
|
13545
13574
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/labels)
|
|
13546
13575
|
*/
|
|
@@ -13797,7 +13826,7 @@ interface HTMLDetailsElement extends HTMLElement {
|
|
|
13797
13826
|
*/
|
|
13798
13827
|
name: string;
|
|
13799
13828
|
/**
|
|
13800
|
-
* The **`open`** property of the `open` HTML attribute, indicating whether the details's contents (not counting the summary) is to be shown to the user.
|
|
13829
|
+
* The **`open`** property of the HTMLDetailsElement interface is a boolean value reflecting the `open` HTML attribute, indicating whether the details's contents (not counting the summary) is to be shown to the user.
|
|
13801
13830
|
*
|
|
13802
13831
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDetailsElement/open)
|
|
13803
13832
|
*/
|
|
@@ -13820,13 +13849,13 @@ declare var HTMLDetailsElement: {
|
|
|
13820
13849
|
*/
|
|
13821
13850
|
interface HTMLDialogElement extends HTMLElement {
|
|
13822
13851
|
/**
|
|
13823
|
-
* The **`closedBy`** property of the
|
|
13852
|
+
* The **`closedBy`** property of the HTMLDialogElement interface indicates the types of user actions that can be used to close the associated dialog element.
|
|
13824
13853
|
*
|
|
13825
13854
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/closedBy)
|
|
13826
13855
|
*/
|
|
13827
13856
|
closedBy: string;
|
|
13828
13857
|
/**
|
|
13829
|
-
* The **`open`** property of the `open` HTML attribute, indicating whether the dialog is available for interaction.
|
|
13858
|
+
* The **`open`** property of the HTMLDialogElement interface is a boolean value reflecting the `open` HTML attribute, indicating whether the dialog is available for interaction.
|
|
13830
13859
|
*
|
|
13831
13860
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/open)
|
|
13832
13861
|
*/
|
|
@@ -13856,7 +13885,7 @@ interface HTMLDialogElement extends HTMLElement {
|
|
|
13856
13885
|
*/
|
|
13857
13886
|
show(): void;
|
|
13858
13887
|
/**
|
|
13859
|
-
* The **`showModal()`** method of the of any other dialogs that might be present.
|
|
13888
|
+
* The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal, over the top of any other dialogs that might be present.
|
|
13860
13889
|
*
|
|
13861
13890
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/showModal)
|
|
13862
13891
|
*/
|
|
@@ -14313,7 +14342,7 @@ interface HTMLFormElement extends HTMLElement {
|
|
|
14313
14342
|
*/
|
|
14314
14343
|
autocomplete: AutoFillBase;
|
|
14315
14344
|
/**
|
|
14316
|
-
* The HTMLFormElement property **`elements`** returns an the form element.
|
|
14345
|
+
* The HTMLFormElement property **`elements`** returns an HTMLFormControlsCollection listing all the form controls contained in the form element.
|
|
14317
14346
|
*
|
|
14318
14347
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/elements)
|
|
14319
14348
|
*/
|
|
@@ -14337,7 +14366,7 @@ interface HTMLFormElement extends HTMLElement {
|
|
|
14337
14366
|
*/
|
|
14338
14367
|
readonly length: number;
|
|
14339
14368
|
/**
|
|
14340
|
-
* The **`HTMLFormElement.method`** property represents the
|
|
14369
|
+
* The **`HTMLFormElement.method`** property represents the HTTP method used to submit the form.
|
|
14341
14370
|
*
|
|
14342
14371
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/method)
|
|
14343
14372
|
*/
|
|
@@ -14397,7 +14426,7 @@ interface HTMLFormElement extends HTMLElement {
|
|
|
14397
14426
|
*/
|
|
14398
14427
|
reset(): void;
|
|
14399
14428
|
/**
|
|
14400
|
-
* The **`HTMLFormElement.submit()`** method submits a given
|
|
14429
|
+
* The **`HTMLFormElement.submit()`** method submits a given form.
|
|
14401
14430
|
*
|
|
14402
14431
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/submit)
|
|
14403
14432
|
*/
|
|
@@ -14711,7 +14740,7 @@ interface HTMLIFrameElement extends HTMLElement {
|
|
|
14711
14740
|
*/
|
|
14712
14741
|
name: string;
|
|
14713
14742
|
/**
|
|
14714
|
-
* The **`HTMLIFrameElement.referrerPolicy`** property reflects the HTML `referrerpolicy` attribute of the resource.
|
|
14743
|
+
* The **`HTMLIFrameElement.referrerPolicy`** property reflects the HTML `referrerpolicy` attribute of the iframe element defining which referrer is sent when fetching the resource.
|
|
14715
14744
|
*
|
|
14716
14745
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/referrerPolicy)
|
|
14717
14746
|
*/
|
|
@@ -14816,13 +14845,13 @@ interface HTMLImageElement extends HTMLElement {
|
|
|
14816
14845
|
*/
|
|
14817
14846
|
fetchPriority: "high" | "low" | "auto";
|
|
14818
14847
|
/**
|
|
14819
|
-
* The **`height`** property of the drawn, in CSS pixel if the image is being drawn or rendered to any visual medium such as the screen or a printer; otherwise, it's the natural, pixel density corrected height of the image.
|
|
14848
|
+
* The **`height`** property of the HTMLImageElement interface indicates the height at which the image is drawn, in CSS pixel if the image is being drawn or rendered to any visual medium such as the screen or a printer; otherwise, it's the natural, pixel density corrected height of the image.
|
|
14820
14849
|
*
|
|
14821
14850
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/height)
|
|
14822
14851
|
*/
|
|
14823
14852
|
height: number;
|
|
14824
14853
|
/**
|
|
14825
|
-
* The _obsolete_ **`hspace`** property of the space to leave empty on the left and right sides of the img element when laying out the page.
|
|
14854
|
+
* The _obsolete_ **`hspace`** property of the HTMLImageElement interface specifies the number of pixels of empty space to leave empty on the left and right sides of the img element when laying out the page.
|
|
14826
14855
|
* @deprecated
|
|
14827
14856
|
*
|
|
14828
14857
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/hspace)
|
|
@@ -14857,7 +14886,7 @@ interface HTMLImageElement extends HTMLElement {
|
|
|
14857
14886
|
*/
|
|
14858
14887
|
name: string;
|
|
14859
14888
|
/**
|
|
14860
|
-
* The HTMLImageElement interface's **`naturalHeight`** property is a read-only value which returns the intrinsic (natural), density-corrected height of the image in
|
|
14889
|
+
* The HTMLImageElement interface's **`naturalHeight`** property is a read-only value which returns the intrinsic (natural), density-corrected height of the image in CSS pixel.
|
|
14861
14890
|
*
|
|
14862
14891
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/naturalHeight)
|
|
14863
14892
|
*/
|
|
@@ -14869,7 +14898,7 @@ interface HTMLImageElement extends HTMLElement {
|
|
|
14869
14898
|
*/
|
|
14870
14899
|
readonly naturalWidth: number;
|
|
14871
14900
|
/**
|
|
14872
|
-
* The **`HTMLImageElement.referrerPolicy`** property reflects the HTML `referrerpolicy` attribute of the resource.
|
|
14901
|
+
* The **`HTMLImageElement.referrerPolicy`** property reflects the HTML `referrerpolicy` attribute of the img element defining which referrer is sent when fetching the resource.
|
|
14873
14902
|
*
|
|
14874
14903
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/referrerPolicy)
|
|
14875
14904
|
*/
|
|
@@ -14893,38 +14922,38 @@ interface HTMLImageElement extends HTMLElement {
|
|
|
14893
14922
|
*/
|
|
14894
14923
|
srcset: string;
|
|
14895
14924
|
/**
|
|
14896
|
-
* The **`useMap`** property on the providing the name of the client-side image map to apply to the image.
|
|
14925
|
+
* The **`useMap`** property on the HTMLImageElement interface reflects the value of the HTML `usemap` attribute, which is a string providing the name of the client-side image map to apply to the image.
|
|
14897
14926
|
*
|
|
14898
14927
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/useMap)
|
|
14899
14928
|
*/
|
|
14900
14929
|
useMap: string;
|
|
14901
14930
|
/**
|
|
14902
|
-
* The _obsolete_ **`vspace`** property of the to leave empty on the top and bottom of the img element when laying out the page.
|
|
14931
|
+
* The _obsolete_ **`vspace`** property of the HTMLImageElement interface specifies the number of pixels of empty space to leave empty on the top and bottom of the img element when laying out the page.
|
|
14903
14932
|
* @deprecated
|
|
14904
14933
|
*
|
|
14905
14934
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/vspace)
|
|
14906
14935
|
*/
|
|
14907
14936
|
vspace: number;
|
|
14908
14937
|
/**
|
|
14909
|
-
* The **`width`** property of the drawn in CSS pixel if it's being drawn or rendered to any visual medium such as a screen or printer.
|
|
14938
|
+
* The **`width`** property of the HTMLImageElement interface indicates the width at which an image is drawn in CSS pixel if it's being drawn or rendered to any visual medium such as a screen or printer.
|
|
14910
14939
|
*
|
|
14911
14940
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/width)
|
|
14912
14941
|
*/
|
|
14913
14942
|
width: number;
|
|
14914
14943
|
/**
|
|
14915
|
-
* The read-only HTMLImageElement property **`x`** indicates the x-coordinate of the origin.
|
|
14944
|
+
* The read-only HTMLImageElement property **`x`** indicates the x-coordinate of the img element's left border edge relative to the root element's origin.
|
|
14916
14945
|
*
|
|
14917
14946
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/x)
|
|
14918
14947
|
*/
|
|
14919
14948
|
readonly x: number;
|
|
14920
14949
|
/**
|
|
14921
|
-
* The read-only HTMLImageElement property **`y`** indicates the y-coordinate of the origin.
|
|
14950
|
+
* The read-only HTMLImageElement property **`y`** indicates the y-coordinate of the img element's top border edge relative to the root element's origin.
|
|
14922
14951
|
*
|
|
14923
14952
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/y)
|
|
14924
14953
|
*/
|
|
14925
14954
|
readonly y: number;
|
|
14926
14955
|
/**
|
|
14927
|
-
* The **`decode()`** method of the HTMLImageElement interface returns a it to the DOM.
|
|
14956
|
+
* The **`decode()`** method of the HTMLImageElement interface returns a Promise that resolves once the image is decoded and it is safe to append it to the DOM.
|
|
14928
14957
|
*
|
|
14929
14958
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/decode)
|
|
14930
14959
|
*/
|
|
@@ -15057,7 +15086,7 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
|
|
|
15057
15086
|
*/
|
|
15058
15087
|
indeterminate: boolean;
|
|
15059
15088
|
/**
|
|
15060
|
-
* The **`HTMLInputElement.labels`** read-only property returns a
|
|
15089
|
+
* The **`HTMLInputElement.labels`** read-only property returns a NodeList of the label elements associated with the input element, if the element is not hidden.
|
|
15061
15090
|
*
|
|
15062
15091
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/labels)
|
|
15063
15092
|
*/
|
|
@@ -15452,7 +15481,7 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
|
|
|
15452
15481
|
*/
|
|
15453
15482
|
media: string;
|
|
15454
15483
|
/**
|
|
15455
|
-
* The **`referrerPolicy`** property of the HTMLLinkElement interface reflects the HTML `referrerpolicy` attribute of the resource.
|
|
15484
|
+
* The **`referrerPolicy`** property of the HTMLLinkElement interface reflects the HTML `referrerpolicy` attribute of the link element defining which referrer is sent when fetching the resource.
|
|
15456
15485
|
*
|
|
15457
15486
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/referrerPolicy)
|
|
15458
15487
|
*/
|
|
@@ -15648,7 +15677,7 @@ interface HTMLMediaElement extends HTMLElement {
|
|
|
15648
15677
|
*/
|
|
15649
15678
|
readonly ended: boolean;
|
|
15650
15679
|
/**
|
|
15651
|
-
* The **`HTMLMediaElement.error`** property is the there has not been an error.
|
|
15680
|
+
* The **`HTMLMediaElement.error`** property is the MediaError object for the most recent error, or `null` if there has not been an error.
|
|
15652
15681
|
*
|
|
15653
15682
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/error)
|
|
15654
15683
|
*/
|
|
@@ -15750,13 +15779,13 @@ interface HTMLMediaElement extends HTMLElement {
|
|
|
15750
15779
|
*/
|
|
15751
15780
|
src: string;
|
|
15752
15781
|
/**
|
|
15753
|
-
* The **`srcObject`** property of the the source of the media associated with the HTMLMediaElement, or `null` if not assigned.
|
|
15782
|
+
* The **`srcObject`** property of the HTMLMediaElement interface sets or returns the object which serves as the source of the media associated with the HTMLMediaElement, or `null` if not assigned.
|
|
15754
15783
|
*
|
|
15755
15784
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/srcObject)
|
|
15756
15785
|
*/
|
|
15757
15786
|
srcObject: MediaProvider | null;
|
|
15758
15787
|
/**
|
|
15759
|
-
* The read-only **`textTracks`** property on HTMLMediaElement objects returns a objects representing the media element's text tracks, in the same order as in the list of text tracks.
|
|
15788
|
+
* The read-only **`textTracks`** property on HTMLMediaElement objects returns a TextTrackList object listing all of the TextTrack objects representing the media element's text tracks, in the same order as in the list of text tracks.
|
|
15760
15789
|
*
|
|
15761
15790
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/textTracks)
|
|
15762
15791
|
*/
|
|
@@ -15931,7 +15960,7 @@ interface HTMLMeterElement extends HTMLElement {
|
|
|
15931
15960
|
*/
|
|
15932
15961
|
high: number;
|
|
15933
15962
|
/**
|
|
15934
|
-
* The **`HTMLMeterElement.labels`** read-only property returns a
|
|
15963
|
+
* The **`HTMLMeterElement.labels`** read-only property returns a NodeList of the label elements associated with the meter element.
|
|
15935
15964
|
*
|
|
15936
15965
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement/labels)
|
|
15937
15966
|
*/
|
|
@@ -16079,7 +16108,7 @@ interface HTMLObjectElement extends HTMLElement {
|
|
|
16079
16108
|
*/
|
|
16080
16109
|
readonly contentWindow: WindowProxy | null;
|
|
16081
16110
|
/**
|
|
16082
|
-
* The **`data`** property of the reflects the `data` HTML attribute, specifying the address of a resource's data.
|
|
16111
|
+
* The **`data`** property of the HTMLObjectElement interface returns a string that reflects the `data` HTML attribute, specifying the address of a resource's data.
|
|
16083
16112
|
*
|
|
16084
16113
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/data)
|
|
16085
16114
|
*/
|
|
@@ -16093,7 +16122,7 @@ interface HTMLObjectElement extends HTMLElement {
|
|
|
16093
16122
|
*/
|
|
16094
16123
|
readonly form: HTMLFormElement | null;
|
|
16095
16124
|
/**
|
|
16096
|
-
* The **`height`** property of the reflects the `height` HTML attribute, specifying the displayed height of the resource in CSS pixels.
|
|
16125
|
+
* The **`height`** property of the HTMLObjectElement interface Returns a string that reflects the `height` HTML attribute, specifying the displayed height of the resource in CSS pixels.
|
|
16097
16126
|
*
|
|
16098
16127
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/height)
|
|
16099
16128
|
*/
|
|
@@ -16101,7 +16130,7 @@ interface HTMLObjectElement extends HTMLElement {
|
|
|
16101
16130
|
/** @deprecated */
|
|
16102
16131
|
hspace: number;
|
|
16103
16132
|
/**
|
|
16104
|
-
* The **`name`** property of the reflects the `name` HTML attribute, specifying the name of the browsing context.
|
|
16133
|
+
* The **`name`** property of the HTMLObjectElement interface returns a string that reflects the `name` HTML attribute, specifying the name of the browsing context.
|
|
16105
16134
|
*
|
|
16106
16135
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/name)
|
|
16107
16136
|
*/
|
|
@@ -16109,13 +16138,13 @@ interface HTMLObjectElement extends HTMLElement {
|
|
|
16109
16138
|
/** @deprecated */
|
|
16110
16139
|
standby: string;
|
|
16111
16140
|
/**
|
|
16112
|
-
* The **`type`** property of the reflects the `type` HTML attribute, specifying the MIME type of the resource.
|
|
16141
|
+
* The **`type`** property of the HTMLObjectElement interface returns a string that reflects the `type` HTML attribute, specifying the MIME type of the resource.
|
|
16113
16142
|
*
|
|
16114
16143
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/type)
|
|
16115
16144
|
*/
|
|
16116
16145
|
type: string;
|
|
16117
16146
|
/**
|
|
16118
|
-
* The **`useMap`** property of the reflects the `usemap` HTML attribute, specifying a
|
|
16147
|
+
* The **`useMap`** property of the HTMLObjectElement interface returns a string that reflects the `usemap` HTML attribute, specifying a map element to use.
|
|
16119
16148
|
* @deprecated
|
|
16120
16149
|
*
|
|
16121
16150
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/useMap)
|
|
@@ -16136,7 +16165,7 @@ interface HTMLObjectElement extends HTMLElement {
|
|
|
16136
16165
|
/** @deprecated */
|
|
16137
16166
|
vspace: number;
|
|
16138
16167
|
/**
|
|
16139
|
-
* The **`width`** property of the reflects the `width` HTML attribute, specifying the displayed width of the resource in CSS pixels.
|
|
16168
|
+
* The **`width`** property of the HTMLObjectElement interface returns a string that reflects the `width` HTML attribute, specifying the displayed width of the resource in CSS pixels.
|
|
16140
16169
|
*
|
|
16141
16170
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/width)
|
|
16142
16171
|
*/
|
|
@@ -16166,7 +16195,7 @@ interface HTMLObjectElement extends HTMLElement {
|
|
|
16166
16195
|
*/
|
|
16167
16196
|
reportValidity(): boolean;
|
|
16168
16197
|
/**
|
|
16169
|
-
* The **`setCustomValidity()`** method of the element.
|
|
16198
|
+
* The **`setCustomValidity()`** method of the HTMLObjectElement interface sets a custom validity message for the element.
|
|
16170
16199
|
*
|
|
16171
16200
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/setCustomValidity)
|
|
16172
16201
|
*/
|
|
@@ -16353,7 +16382,7 @@ interface HTMLOutputElement extends HTMLElement {
|
|
|
16353
16382
|
*/
|
|
16354
16383
|
readonly htmlFor: DOMTokenList;
|
|
16355
16384
|
/**
|
|
16356
|
-
* The **`HTMLOutputElement.labels`** read-only property returns a
|
|
16385
|
+
* The **`HTMLOutputElement.labels`** read-only property returns a NodeList of the label elements associated with the output element.
|
|
16357
16386
|
*
|
|
16358
16387
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/labels)
|
|
16359
16388
|
*/
|
|
@@ -16512,7 +16541,7 @@ declare var HTMLPreElement: {
|
|
|
16512
16541
|
*/
|
|
16513
16542
|
interface HTMLProgressElement extends HTMLElement {
|
|
16514
16543
|
/**
|
|
16515
|
-
* The **`HTMLProgressElement.labels`** read-only property returns a NodeList of the label elements associated with the
|
|
16544
|
+
* The **`HTMLProgressElement.labels`** read-only property returns a NodeList of the label elements associated with the progress element.
|
|
16516
16545
|
*
|
|
16517
16546
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLProgressElement/labels)
|
|
16518
16547
|
*/
|
|
@@ -16624,7 +16653,7 @@ interface HTMLScriptElement extends HTMLElement {
|
|
|
16624
16653
|
*/
|
|
16625
16654
|
noModule: boolean;
|
|
16626
16655
|
/**
|
|
16627
|
-
* The **`referrerPolicy`** property of the `referrerpolicy` of the script element, which defines how the referrer is set when fetching the script and any scripts it imports.
|
|
16656
|
+
* The **`referrerPolicy`** property of the HTMLScriptElement interface reflects the HTML `referrerpolicy` of the script element, which defines how the referrer is set when fetching the script and any scripts it imports.
|
|
16628
16657
|
*
|
|
16629
16658
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/referrerPolicy)
|
|
16630
16659
|
*/
|
|
@@ -16689,7 +16718,7 @@ interface HTMLSelectElement extends HTMLElement {
|
|
|
16689
16718
|
*/
|
|
16690
16719
|
readonly form: HTMLFormElement | null;
|
|
16691
16720
|
/**
|
|
16692
|
-
* The **`HTMLSelectElement.labels`** read-only property returns a
|
|
16721
|
+
* The **`HTMLSelectElement.labels`** read-only property returns a NodeList of the label elements associated with the select element.
|
|
16693
16722
|
*
|
|
16694
16723
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/labels)
|
|
16695
16724
|
*/
|
|
@@ -16731,7 +16760,7 @@ interface HTMLSelectElement extends HTMLElement {
|
|
|
16731
16760
|
*/
|
|
16732
16761
|
selectedIndex: number;
|
|
16733
16762
|
/**
|
|
16734
|
-
* The **read-only** HTMLSelectElement property **`selectedOptions`** contains a list of the element that are currently selected.
|
|
16763
|
+
* The **read-only** HTMLSelectElement property **`selectedOptions`** contains a list of the option elements contained within the select element that are currently selected.
|
|
16735
16764
|
*
|
|
16736
16765
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/selectedOptions)
|
|
16737
16766
|
*/
|
|
@@ -16785,13 +16814,13 @@ interface HTMLSelectElement extends HTMLElement {
|
|
|
16785
16814
|
*/
|
|
16786
16815
|
checkValidity(): boolean;
|
|
16787
16816
|
/**
|
|
16788
|
-
* The **`HTMLSelectElement.item()`** method returns the position in the options list corresponds to the index given in the parameter, or `null` if there are none.
|
|
16817
|
+
* The **`HTMLSelectElement.item()`** method returns the Element corresponding to the HTMLOptionElement whose position in the options list corresponds to the index given in the parameter, or `null` if there are none.
|
|
16789
16818
|
*
|
|
16790
16819
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/item)
|
|
16791
16820
|
*/
|
|
16792
16821
|
item(index: number): HTMLOptionElement | null;
|
|
16793
16822
|
/**
|
|
16794
|
-
* The **`HTMLSelectElement.namedItem()`** method returns the whose `name` or `id` match the specified name, or `null` if no option matches.
|
|
16823
|
+
* The **`HTMLSelectElement.namedItem()`** method returns the HTMLOptionElement corresponding to the HTMLOptionElement whose `name` or `id` match the specified name, or `null` if no option matches.
|
|
16795
16824
|
*
|
|
16796
16825
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/namedItem)
|
|
16797
16826
|
*/
|
|
@@ -17219,7 +17248,7 @@ interface HTMLTableElement extends HTMLElement {
|
|
|
17219
17248
|
*/
|
|
17220
17249
|
cellPadding: string;
|
|
17221
17250
|
/**
|
|
17222
|
-
* While you should instead use the CSS interface's **`cellSpacing`** property represents the spacing around the individual th and td elements representing a table's cells.
|
|
17251
|
+
* While you should instead use the CSS border-spacing property, the obsolete HTMLTableElement interface's **`cellSpacing`** property represents the spacing around the individual th and td elements representing a table's cells.
|
|
17223
17252
|
* @deprecated
|
|
17224
17253
|
*
|
|
17225
17254
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/cellSpacing)
|
|
@@ -17233,7 +17262,7 @@ interface HTMLTableElement extends HTMLElement {
|
|
|
17233
17262
|
*/
|
|
17234
17263
|
frame: string;
|
|
17235
17264
|
/**
|
|
17236
|
-
* The read-only HTMLTableElement property **`rows`** returns a live
|
|
17265
|
+
* The read-only HTMLTableElement property **`rows`** returns a live HTMLCollection of all the rows in the table, including the rows contained within any thead, tfoot, and tbody elements.
|
|
17237
17266
|
*
|
|
17238
17267
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/rows)
|
|
17239
17268
|
*/
|
|
@@ -17259,13 +17288,13 @@ interface HTMLTableElement extends HTMLElement {
|
|
|
17259
17288
|
*/
|
|
17260
17289
|
readonly tBodies: HTMLCollectionOf<HTMLTableSectionElement>;
|
|
17261
17290
|
/**
|
|
17262
|
-
* The **`HTMLTableElement.tFoot`** property represents the
|
|
17291
|
+
* The **`HTMLTableElement.tFoot`** property represents the tfoot element of a table.
|
|
17263
17292
|
*
|
|
17264
17293
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/tFoot)
|
|
17265
17294
|
*/
|
|
17266
17295
|
tFoot: HTMLTableSectionElement | null;
|
|
17267
17296
|
/**
|
|
17268
|
-
* The **`HTMLTableElement.tHead`** represents the
|
|
17297
|
+
* The **`HTMLTableElement.tHead`** represents the thead element of a table.
|
|
17269
17298
|
*
|
|
17270
17299
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/tHead)
|
|
17271
17300
|
*/
|
|
@@ -17278,31 +17307,31 @@ interface HTMLTableElement extends HTMLElement {
|
|
|
17278
17307
|
*/
|
|
17279
17308
|
width: string;
|
|
17280
17309
|
/**
|
|
17281
|
-
* The **`HTMLTableElement.createCaption()`** method returns the
|
|
17310
|
+
* The **`HTMLTableElement.createCaption()`** method returns the caption element associated with a given table.
|
|
17282
17311
|
*
|
|
17283
17312
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/createCaption)
|
|
17284
17313
|
*/
|
|
17285
17314
|
createCaption(): HTMLTableCaptionElement;
|
|
17286
17315
|
/**
|
|
17287
|
-
* The **`createTBody()`** method of
|
|
17316
|
+
* The **`createTBody()`** method of HTMLTableElement objects creates and returns a new tbody element associated with a given table.
|
|
17288
17317
|
*
|
|
17289
17318
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/createTBody)
|
|
17290
17319
|
*/
|
|
17291
17320
|
createTBody(): HTMLTableSectionElement;
|
|
17292
17321
|
/**
|
|
17293
|
-
* The **`createTFoot()`** method of associated with a given table.
|
|
17322
|
+
* The **`createTFoot()`** method of HTMLTableElement objects returns the tfoot element associated with a given table.
|
|
17294
17323
|
*
|
|
17295
17324
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/createTFoot)
|
|
17296
17325
|
*/
|
|
17297
17326
|
createTFoot(): HTMLTableSectionElement;
|
|
17298
17327
|
/**
|
|
17299
|
-
* The **`createTHead()`** method of associated with a given table.
|
|
17328
|
+
* The **`createTHead()`** method of HTMLTableElement objects returns the thead element associated with a given table.
|
|
17300
17329
|
*
|
|
17301
17330
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/createTHead)
|
|
17302
17331
|
*/
|
|
17303
17332
|
createTHead(): HTMLTableSectionElement;
|
|
17304
17333
|
/**
|
|
17305
|
-
* The **`HTMLTableElement.deleteCaption()`** method removes the
|
|
17334
|
+
* The **`HTMLTableElement.deleteCaption()`** method removes the caption element from a given table.
|
|
17306
17335
|
*
|
|
17307
17336
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/deleteCaption)
|
|
17308
17337
|
*/
|
|
@@ -17314,13 +17343,13 @@ interface HTMLTableElement extends HTMLElement {
|
|
|
17314
17343
|
*/
|
|
17315
17344
|
deleteRow(index: number): void;
|
|
17316
17345
|
/**
|
|
17317
|
-
* The **`HTMLTableElement.deleteTFoot()`** method removes the
|
|
17346
|
+
* The **`HTMLTableElement.deleteTFoot()`** method removes the tfoot element from a given table.
|
|
17318
17347
|
*
|
|
17319
17348
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/deleteTFoot)
|
|
17320
17349
|
*/
|
|
17321
17350
|
deleteTFoot(): void;
|
|
17322
17351
|
/**
|
|
17323
|
-
* The **`HTMLTableElement.deleteTHead()`** removes the
|
|
17352
|
+
* The **`HTMLTableElement.deleteTHead()`** removes the thead element from a given table.
|
|
17324
17353
|
*
|
|
17325
17354
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/deleteTHead)
|
|
17326
17355
|
*/
|
|
@@ -17479,7 +17508,7 @@ interface HTMLTableSectionElement extends HTMLElement {
|
|
|
17479
17508
|
*/
|
|
17480
17509
|
deleteRow(index: number): void;
|
|
17481
17510
|
/**
|
|
17482
|
-
* The **`insertRow()`** method of the HTMLTableSectionElement interface inserts a new row (tr) in the given table sectioning element (thead, tfoot, or
|
|
17511
|
+
* The **`insertRow()`** method of the HTMLTableSectionElement interface inserts a new row (tr) in the given table sectioning element (thead, tfoot, or tbody), then returns a reference to this new row.
|
|
17483
17512
|
*
|
|
17484
17513
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableSectionElement/insertRow)
|
|
17485
17514
|
*/
|
|
@@ -17502,7 +17531,7 @@ declare var HTMLTableSectionElement: {
|
|
|
17502
17531
|
*/
|
|
17503
17532
|
interface HTMLTemplateElement extends HTMLElement {
|
|
17504
17533
|
/**
|
|
17505
|
-
* The **`HTMLTemplateElement.content`** property returns a `<template>` element's template contents (a
|
|
17534
|
+
* The **`HTMLTemplateElement.content`** property returns a `<template>` element's template contents (a DocumentFragment).
|
|
17506
17535
|
*
|
|
17507
17536
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/content)
|
|
17508
17537
|
*/
|
|
@@ -17585,7 +17614,7 @@ interface HTMLTextAreaElement extends HTMLElement {
|
|
|
17585
17614
|
*/
|
|
17586
17615
|
readonly form: HTMLFormElement | null;
|
|
17587
17616
|
/**
|
|
17588
|
-
* The **`HTMLTextAreaElement.labels`** read-only property returns a NodeList of the label elements associated with the
|
|
17617
|
+
* The **`HTMLTextAreaElement.labels`** read-only property returns a NodeList of the label elements associated with the textArea element.
|
|
17589
17618
|
*
|
|
17590
17619
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/labels)
|
|
17591
17620
|
*/
|
|
@@ -17633,7 +17662,7 @@ interface HTMLTextAreaElement extends HTMLElement {
|
|
|
17633
17662
|
*/
|
|
17634
17663
|
rows: number;
|
|
17635
17664
|
/**
|
|
17636
|
-
*
|
|
17665
|
+
* The **`selectionDirection`** property of the HTMLTextAreaElement interface specifies the current direction of the selection.
|
|
17637
17666
|
*
|
|
17638
17667
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/selectionDirection)
|
|
17639
17668
|
*/
|
|
@@ -17811,7 +17840,7 @@ interface HTMLTrackElement extends HTMLElement {
|
|
|
17811
17840
|
*/
|
|
17812
17841
|
label: string;
|
|
17813
17842
|
/**
|
|
17814
|
-
* The **`readyState`** read-only property of the HTMLTrackElement interface returns a number representing the track element's text track readiness state:
|
|
17843
|
+
* The **`readyState`** read-only property of the HTMLTrackElement interface returns a number representing the track element's text track readiness state:
|
|
17815
17844
|
*
|
|
17816
17845
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/readyState)
|
|
17817
17846
|
*/
|
|
@@ -17955,7 +17984,7 @@ interface HTMLVideoElement extends HTMLMediaElement {
|
|
|
17955
17984
|
*/
|
|
17956
17985
|
cancelVideoFrameCallback(handle: number): void;
|
|
17957
17986
|
/**
|
|
17958
|
-
* The **HTMLVideoElement** method **`getVideoPlaybackQuality()`** creates and returns a frames have been lost.
|
|
17987
|
+
* The **HTMLVideoElement** method **`getVideoPlaybackQuality()`** creates and returns a VideoPlaybackQuality object containing metrics including how many frames have been lost.
|
|
17959
17988
|
*
|
|
17960
17989
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/getVideoPlaybackQuality)
|
|
17961
17990
|
*/
|
|
@@ -17990,13 +18019,13 @@ declare var HTMLVideoElement: {
|
|
|
17990
18019
|
*/
|
|
17991
18020
|
interface HashChangeEvent extends Event {
|
|
17992
18021
|
/**
|
|
17993
|
-
* The **`newURL`** read-only property of the navigating.
|
|
18022
|
+
* The **`newURL`** read-only property of the HashChangeEvent interface returns the new URL to which the window is navigating.
|
|
17994
18023
|
*
|
|
17995
18024
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HashChangeEvent/newURL)
|
|
17996
18025
|
*/
|
|
17997
18026
|
readonly newURL: string;
|
|
17998
18027
|
/**
|
|
17999
|
-
* The **`oldURL`** read-only property of the was navigated.
|
|
18028
|
+
* The **`oldURL`** read-only property of the HashChangeEvent interface returns the previous URL from which the window was navigated.
|
|
18000
18029
|
*
|
|
18001
18030
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HashChangeEvent/oldURL)
|
|
18002
18031
|
*/
|
|
@@ -18166,19 +18195,19 @@ declare var History: {
|
|
|
18166
18195
|
*/
|
|
18167
18196
|
interface IDBCursor {
|
|
18168
18197
|
/**
|
|
18169
|
-
* The **`direction`** read-only property of the direction of traversal of the cursor (set using
|
|
18198
|
+
* The **`direction`** read-only property of the IDBCursor interface is a string that returns the direction of traversal of the cursor (set using IDBObjectStore.openCursor for example).
|
|
18170
18199
|
*
|
|
18171
18200
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/direction)
|
|
18172
18201
|
*/
|
|
18173
18202
|
readonly direction: IDBCursorDirection;
|
|
18174
18203
|
/**
|
|
18175
|
-
* The **`key`** read-only property of the position.
|
|
18204
|
+
* The **`key`** read-only property of the IDBCursor interface returns the key for the record at the cursor's position.
|
|
18176
18205
|
*
|
|
18177
18206
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/key)
|
|
18178
18207
|
*/
|
|
18179
18208
|
readonly key: IDBValidKey;
|
|
18180
18209
|
/**
|
|
18181
|
-
* The **`primaryKey`** read-only property of the
|
|
18210
|
+
* The **`primaryKey`** read-only property of the IDBCursor interface returns the cursor's current effective key.
|
|
18182
18211
|
*
|
|
18183
18212
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/primaryKey)
|
|
18184
18213
|
*/
|
|
@@ -18190,7 +18219,7 @@ interface IDBCursor {
|
|
|
18190
18219
|
*/
|
|
18191
18220
|
readonly request: IDBRequest;
|
|
18192
18221
|
/**
|
|
18193
|
-
* The **`source`** read-only property of the
|
|
18222
|
+
* The **`source`** read-only property of the IDBCursor interface returns the IDBObjectStore or IDBIndex that the cursor is iterating over.
|
|
18194
18223
|
*
|
|
18195
18224
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/source)
|
|
18196
18225
|
*/
|
|
@@ -18208,7 +18237,7 @@ interface IDBCursor {
|
|
|
18208
18237
|
*/
|
|
18209
18238
|
continue(key?: IDBValidKey): void;
|
|
18210
18239
|
/**
|
|
18211
|
-
* The **`continuePrimaryKey()`** method of the matches the key parameter as well as whose primary key matches the primary key parameter.
|
|
18240
|
+
* The **`continuePrimaryKey()`** method of the IDBCursor interface advances the cursor to the item whose key matches the key parameter as well as whose primary key matches the primary key parameter.
|
|
18212
18241
|
*
|
|
18213
18242
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/continuePrimaryKey)
|
|
18214
18243
|
*/
|
|
@@ -18239,7 +18268,7 @@ declare var IDBCursor: {
|
|
|
18239
18268
|
*/
|
|
18240
18269
|
interface IDBCursorWithValue extends IDBCursor {
|
|
18241
18270
|
/**
|
|
18242
|
-
* The **`value`** read-only property of the whatever that is.
|
|
18271
|
+
* The **`value`** read-only property of the IDBCursorWithValue interface returns the value of the current cursor, whatever that is.
|
|
18243
18272
|
*
|
|
18244
18273
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursorWithValue/value)
|
|
18245
18274
|
*/
|
|
@@ -18271,7 +18300,7 @@ interface IDBDatabase extends EventTarget {
|
|
|
18271
18300
|
*/
|
|
18272
18301
|
readonly name: string;
|
|
18273
18302
|
/**
|
|
18274
|
-
* The **`objectStoreNames`** read-only property of the list of the names of the object stores currently in the connected database.
|
|
18303
|
+
* The **`objectStoreNames`** read-only property of the IDBDatabase interface is a DOMStringList containing a list of the names of the object stores currently in the connected database.
|
|
18275
18304
|
*
|
|
18276
18305
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/objectStoreNames)
|
|
18277
18306
|
*/
|
|
@@ -18295,13 +18324,13 @@ interface IDBDatabase extends EventTarget {
|
|
|
18295
18324
|
*/
|
|
18296
18325
|
close(): void;
|
|
18297
18326
|
/**
|
|
18298
|
-
* The **`createObjectStore()`** method of the
|
|
18327
|
+
* The **`createObjectStore()`** method of the IDBDatabase interface creates and returns a new IDBObjectStore.
|
|
18299
18328
|
*
|
|
18300
18329
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/createObjectStore)
|
|
18301
18330
|
*/
|
|
18302
18331
|
createObjectStore(name: string, options?: IDBObjectStoreParameters): IDBObjectStore;
|
|
18303
18332
|
/**
|
|
18304
|
-
* The **`deleteObjectStore()`** method of the the connected database, along with any indexes that reference it.
|
|
18333
|
+
* The **`deleteObjectStore()`** method of the IDBDatabase interface destroys the object store with the given name in the connected database, along with any indexes that reference it.
|
|
18305
18334
|
*
|
|
18306
18335
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/deleteObjectStore)
|
|
18307
18336
|
*/
|
|
@@ -18342,7 +18371,7 @@ interface IDBFactory {
|
|
|
18342
18371
|
*/
|
|
18343
18372
|
databases(): Promise<IDBDatabaseInfo[]>;
|
|
18344
18373
|
/**
|
|
18345
|
-
* The **`deleteDatabase()`** method of the
|
|
18374
|
+
* The **`deleteDatabase()`** method of the IDBFactory interface requests the deletion of a database.
|
|
18346
18375
|
*
|
|
18347
18376
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBFactory/deleteDatabase)
|
|
18348
18377
|
*/
|
|
@@ -18373,7 +18402,7 @@ interface IDBIndex {
|
|
|
18373
18402
|
*/
|
|
18374
18403
|
readonly keyPath: string | string[];
|
|
18375
18404
|
/**
|
|
18376
|
-
* The **`multiEntry`** read-only property of the behaves when the result of evaluating the index's key path yields an array.
|
|
18405
|
+
* The **`multiEntry`** read-only property of the IDBIndex interface returns a boolean value that affects how the index behaves when the result of evaluating the index's key path yields an array.
|
|
18377
18406
|
*
|
|
18378
18407
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/multiEntry)
|
|
18379
18408
|
*/
|
|
@@ -18403,7 +18432,7 @@ interface IDBIndex {
|
|
|
18403
18432
|
*/
|
|
18404
18433
|
count(query?: IDBValidKey | IDBKeyRange): IDBRequest<number>;
|
|
18405
18434
|
/**
|
|
18406
|
-
* The **`get()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the value in the referenced object store that corresponds to the given key or the first corresponding value, if `key` is set to an
|
|
18435
|
+
* The **`get()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the value in the referenced object store that corresponds to the given key or the first corresponding value, if `key` is set to an IDBKeyRange.
|
|
18407
18436
|
*
|
|
18408
18437
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/get)
|
|
18409
18438
|
*/
|
|
@@ -18421,7 +18450,7 @@ interface IDBIndex {
|
|
|
18421
18450
|
*/
|
|
18422
18451
|
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
|
|
18423
18452
|
/**
|
|
18424
|
-
* The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an
|
|
18453
|
+
* The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an IDBKeyRange.
|
|
18425
18454
|
*
|
|
18426
18455
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getKey)
|
|
18427
18456
|
*/
|
|
@@ -18433,7 +18462,7 @@ interface IDBIndex {
|
|
|
18433
18462
|
*/
|
|
18434
18463
|
openCursor(query?: IDBValidKey | IDBKeyRange | null, direction?: IDBCursorDirection): IDBRequest<IDBCursorWithValue | null>;
|
|
18435
18464
|
/**
|
|
18436
|
-
* The **`openKeyCursor()`** method of the a separate thread, creates a cursor over the specified key range, as arranged by this index.
|
|
18465
|
+
* The **`openKeyCursor()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, creates a cursor over the specified key range, as arranged by this index.
|
|
18437
18466
|
*
|
|
18438
18467
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/openKeyCursor)
|
|
18439
18468
|
*/
|
|
@@ -18452,25 +18481,25 @@ declare var IDBIndex: {
|
|
|
18452
18481
|
*/
|
|
18453
18482
|
interface IDBKeyRange {
|
|
18454
18483
|
/**
|
|
18455
|
-
* The **`lower`** read-only property of the
|
|
18484
|
+
* The **`lower`** read-only property of the IDBKeyRange interface returns the lower bound of the key range.
|
|
18456
18485
|
*
|
|
18457
18486
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/lower)
|
|
18458
18487
|
*/
|
|
18459
18488
|
readonly lower: any;
|
|
18460
18489
|
/**
|
|
18461
|
-
* The **`lowerOpen`** read-only property of the lower-bound value is included in the key range.
|
|
18490
|
+
* The **`lowerOpen`** read-only property of the IDBKeyRange interface returns a boolean indicating whether the lower-bound value is included in the key range.
|
|
18462
18491
|
*
|
|
18463
18492
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/lowerOpen)
|
|
18464
18493
|
*/
|
|
18465
18494
|
readonly lowerOpen: boolean;
|
|
18466
18495
|
/**
|
|
18467
|
-
* The **`upper`** read-only property of the
|
|
18496
|
+
* The **`upper`** read-only property of the IDBKeyRange interface returns the upper bound of the key range.
|
|
18468
18497
|
*
|
|
18469
18498
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/upper)
|
|
18470
18499
|
*/
|
|
18471
18500
|
readonly upper: any;
|
|
18472
18501
|
/**
|
|
18473
|
-
* The **`upperOpen`** read-only property of the upper-bound value is included in the key range.
|
|
18502
|
+
* The **`upperOpen`** read-only property of the IDBKeyRange interface returns a boolean indicating whether the upper-bound value is included in the key range.
|
|
18474
18503
|
*
|
|
18475
18504
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/upperOpen)
|
|
18476
18505
|
*/
|
|
@@ -18493,7 +18522,7 @@ declare var IDBKeyRange: {
|
|
|
18493
18522
|
*/
|
|
18494
18523
|
bound(lower: any, upper: any, lowerOpen?: boolean, upperOpen?: boolean): IDBKeyRange;
|
|
18495
18524
|
/**
|
|
18496
|
-
* The **`lowerBound()`** static method of the
|
|
18525
|
+
* The **`lowerBound()`** static method of the IDBKeyRange interface creates a new key range with only a lower bound.
|
|
18497
18526
|
*
|
|
18498
18527
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/lowerBound_static)
|
|
18499
18528
|
*/
|
|
@@ -18505,7 +18534,7 @@ declare var IDBKeyRange: {
|
|
|
18505
18534
|
*/
|
|
18506
18535
|
only(value: any): IDBKeyRange;
|
|
18507
18536
|
/**
|
|
18508
|
-
* The **`upperBound()`** static method of the
|
|
18537
|
+
* The **`upperBound()`** static method of the IDBKeyRange interface creates a new upper-bound key range.
|
|
18509
18538
|
*
|
|
18510
18539
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/upperBound_static)
|
|
18511
18540
|
*/
|
|
@@ -18519,19 +18548,19 @@ declare var IDBKeyRange: {
|
|
|
18519
18548
|
*/
|
|
18520
18549
|
interface IDBObjectStore {
|
|
18521
18550
|
/**
|
|
18522
|
-
* The **`autoIncrement`** read-only property of the for this object store.
|
|
18551
|
+
* The **`autoIncrement`** read-only property of the IDBObjectStore interface returns the value of the auto increment flag for this object store.
|
|
18523
18552
|
*
|
|
18524
18553
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/autoIncrement)
|
|
18525
18554
|
*/
|
|
18526
18555
|
readonly autoIncrement: boolean;
|
|
18527
18556
|
/**
|
|
18528
|
-
* The **`indexNames`** read-only property of the in this object store.
|
|
18557
|
+
* The **`indexNames`** read-only property of the IDBObjectStore interface returns a list of the names of indexes on objects in this object store.
|
|
18529
18558
|
*
|
|
18530
18559
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/indexNames)
|
|
18531
18560
|
*/
|
|
18532
18561
|
readonly indexNames: DOMStringList;
|
|
18533
18562
|
/**
|
|
18534
|
-
* The **`keyPath`** read-only property of the
|
|
18563
|
+
* The **`keyPath`** read-only property of the IDBObjectStore interface returns the key path of this object store.
|
|
18535
18564
|
*
|
|
18536
18565
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/keyPath)
|
|
18537
18566
|
*/
|
|
@@ -18543,7 +18572,7 @@ interface IDBObjectStore {
|
|
|
18543
18572
|
*/
|
|
18544
18573
|
name: string;
|
|
18545
18574
|
/**
|
|
18546
|
-
* The **`transaction`** read-only property of the object store belongs.
|
|
18575
|
+
* The **`transaction`** read-only property of the IDBObjectStore interface returns the transaction object to which this object store belongs.
|
|
18547
18576
|
*
|
|
18548
18577
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/transaction)
|
|
18549
18578
|
*/
|
|
@@ -18561,25 +18590,25 @@ interface IDBObjectStore {
|
|
|
18561
18590
|
*/
|
|
18562
18591
|
clear(): IDBRequest<undefined>;
|
|
18563
18592
|
/**
|
|
18564
|
-
* The **`count()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the total number of records that match the provided key or
|
|
18593
|
+
* The **`count()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the total number of records that match the provided key or IDBKeyRange.
|
|
18565
18594
|
*
|
|
18566
18595
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/count)
|
|
18567
18596
|
*/
|
|
18568
18597
|
count(query?: IDBValidKey | IDBKeyRange): IDBRequest<number>;
|
|
18569
18598
|
/**
|
|
18570
|
-
* The **`createIndex()`** method of the
|
|
18599
|
+
* The **`createIndex()`** method of the IDBObjectStore interface creates and returns a new IDBIndex object in the connected database.
|
|
18571
18600
|
*
|
|
18572
18601
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/createIndex)
|
|
18573
18602
|
*/
|
|
18574
18603
|
createIndex(name: string, keyPath: string | string[], options?: IDBIndexParameters): IDBIndex;
|
|
18575
18604
|
/**
|
|
18576
|
-
* The **`delete()`** method of the and, in a separate thread, deletes the specified record or records.
|
|
18605
|
+
* The **`delete()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, deletes the specified record or records.
|
|
18577
18606
|
*
|
|
18578
18607
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/delete)
|
|
18579
18608
|
*/
|
|
18580
18609
|
delete(query: IDBValidKey | IDBKeyRange): IDBRequest<undefined>;
|
|
18581
18610
|
/**
|
|
18582
|
-
* The **`deleteIndex()`** method of the the connected database, used during a version upgrade.
|
|
18611
|
+
* The **`deleteIndex()`** method of the IDBObjectStore interface destroys the index with the specified name in the connected database, used during a version upgrade.
|
|
18583
18612
|
*
|
|
18584
18613
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/deleteIndex)
|
|
18585
18614
|
*/
|
|
@@ -18591,7 +18620,7 @@ interface IDBObjectStore {
|
|
|
18591
18620
|
*/
|
|
18592
18621
|
get(query: IDBValidKey | IDBKeyRange): IDBRequest<any>;
|
|
18593
18622
|
/**
|
|
18594
|
-
* The **`getAll()`** method of the containing all objects in the object store matching the specified parameter or all objects in the store if no parameters are given.
|
|
18623
|
+
* The **`getAll()`** method of the IDBObjectStore interface returns an IDBRequest object containing all objects in the object store matching the specified parameter or all objects in the store if no parameters are given.
|
|
18595
18624
|
*
|
|
18596
18625
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll)
|
|
18597
18626
|
*/
|
|
@@ -18603,7 +18632,7 @@ interface IDBObjectStore {
|
|
|
18603
18632
|
*/
|
|
18604
18633
|
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
|
|
18605
18634
|
/**
|
|
18606
|
-
* The **`getKey()`** method of the and, in a separate thread, returns the key selected by the specified query.
|
|
18635
|
+
* The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query.
|
|
18607
18636
|
*
|
|
18608
18637
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getKey)
|
|
18609
18638
|
*/
|
|
@@ -18615,13 +18644,13 @@ interface IDBObjectStore {
|
|
|
18615
18644
|
*/
|
|
18616
18645
|
index(name: string): IDBIndex;
|
|
18617
18646
|
/**
|
|
18618
|
-
* The **`openCursor()`** method of the and, in a separate thread, returns a new IDBCursorWithValue object.
|
|
18647
|
+
* The **`openCursor()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns a new IDBCursorWithValue object.
|
|
18619
18648
|
*
|
|
18620
18649
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/openCursor)
|
|
18621
18650
|
*/
|
|
18622
18651
|
openCursor(query?: IDBValidKey | IDBKeyRange | null, direction?: IDBCursorDirection): IDBRequest<IDBCursorWithValue | null>;
|
|
18623
18652
|
/**
|
|
18624
|
-
* The **`openKeyCursor()`** method of the whose result will be set to an IDBCursor that can be used to iterate through matching results.
|
|
18653
|
+
* The **`openKeyCursor()`** method of the IDBObjectStore interface returns an IDBRequest object whose result will be set to an IDBCursor that can be used to iterate through matching results.
|
|
18625
18654
|
*
|
|
18626
18655
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/openKeyCursor)
|
|
18627
18656
|
*/
|
|
@@ -18677,7 +18706,7 @@ interface IDBRequestEventMap {
|
|
|
18677
18706
|
*/
|
|
18678
18707
|
interface IDBRequest<T = any> extends EventTarget {
|
|
18679
18708
|
/**
|
|
18680
|
-
* The **`error`** read-only property of the request.
|
|
18709
|
+
* The **`error`** read-only property of the IDBRequest interface returns the error in the event of an unsuccessful request.
|
|
18681
18710
|
*
|
|
18682
18711
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/error)
|
|
18683
18712
|
*/
|
|
@@ -18687,19 +18716,19 @@ interface IDBRequest<T = any> extends EventTarget {
|
|
|
18687
18716
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/success_event) */
|
|
18688
18717
|
onsuccess: ((this: IDBRequest<T>, ev: Event) => any) | null;
|
|
18689
18718
|
/**
|
|
18690
|
-
* The **`readyState`** read-only property of the
|
|
18719
|
+
* The **`readyState`** read-only property of the IDBRequest interface returns the state of the request.
|
|
18691
18720
|
*
|
|
18692
18721
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/readyState)
|
|
18693
18722
|
*/
|
|
18694
18723
|
readonly readyState: IDBRequestReadyState;
|
|
18695
18724
|
/**
|
|
18696
|
-
* The **`result`** read-only property of the
|
|
18725
|
+
* The **`result`** read-only property of the IDBRequest interface returns the result of the request.
|
|
18697
18726
|
*
|
|
18698
18727
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/result)
|
|
18699
18728
|
*/
|
|
18700
18729
|
readonly result: T;
|
|
18701
18730
|
/**
|
|
18702
|
-
* The **`source`** read-only property of the Index or an object store.
|
|
18731
|
+
* The **`source`** read-only property of the IDBRequest interface returns the source of the request, such as an Index or an object store.
|
|
18703
18732
|
*
|
|
18704
18733
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/source)
|
|
18705
18734
|
*/
|
|
@@ -18752,13 +18781,13 @@ interface IDBTransaction extends EventTarget {
|
|
|
18752
18781
|
*/
|
|
18753
18782
|
readonly error: DOMException | null;
|
|
18754
18783
|
/**
|
|
18755
|
-
* The **`mode`** read-only property of the data in the object stores in the scope of the transaction (i.e., is the mode to be read-only, or do you want to write to the object stores?) The default value is `readonly`.
|
|
18784
|
+
* The **`mode`** read-only property of the IDBTransaction interface returns the current mode for accessing the data in the object stores in the scope of the transaction (i.e., is the mode to be read-only, or do you want to write to the object stores?) The default value is `readonly`.
|
|
18756
18785
|
*
|
|
18757
18786
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/mode)
|
|
18758
18787
|
*/
|
|
18759
18788
|
readonly mode: IDBTransactionMode;
|
|
18760
18789
|
/**
|
|
18761
|
-
* The **`objectStoreNames`** read-only property of the of IDBObjectStore objects.
|
|
18790
|
+
* The **`objectStoreNames`** read-only property of the IDBTransaction interface returns a DOMStringList of names of IDBObjectStore objects.
|
|
18762
18791
|
*
|
|
18763
18792
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/objectStoreNames)
|
|
18764
18793
|
*/
|
|
@@ -18782,7 +18811,7 @@ interface IDBTransaction extends EventTarget {
|
|
|
18782
18811
|
*/
|
|
18783
18812
|
commit(): void;
|
|
18784
18813
|
/**
|
|
18785
|
-
* The **`objectStore()`** method of the added to the scope of this transaction.
|
|
18814
|
+
* The **`objectStore()`** method of the IDBTransaction interface returns an object store that has already been added to the scope of this transaction.
|
|
18786
18815
|
*
|
|
18787
18816
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/objectStore)
|
|
18788
18817
|
*/
|
|
@@ -18805,13 +18834,13 @@ declare var IDBTransaction: {
|
|
|
18805
18834
|
*/
|
|
18806
18835
|
interface IDBVersionChangeEvent extends Event {
|
|
18807
18836
|
/**
|
|
18808
|
-
* The **`newVersion`** read-only property of the database.
|
|
18837
|
+
* The **`newVersion`** read-only property of the IDBVersionChangeEvent interface returns the new version number of the database.
|
|
18809
18838
|
*
|
|
18810
18839
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBVersionChangeEvent/newVersion)
|
|
18811
18840
|
*/
|
|
18812
18841
|
readonly newVersion: number | null;
|
|
18813
18842
|
/**
|
|
18814
|
-
* The **`oldVersion`** read-only property of the database.
|
|
18843
|
+
* The **`oldVersion`** read-only property of the IDBVersionChangeEvent interface returns the old version number of the database.
|
|
18815
18844
|
*
|
|
18816
18845
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBVersionChangeEvent/oldVersion)
|
|
18817
18846
|
*/
|
|
@@ -18905,7 +18934,7 @@ declare var ImageBitmap: {
|
|
|
18905
18934
|
*/
|
|
18906
18935
|
interface ImageBitmapRenderingContext {
|
|
18907
18936
|
/**
|
|
18908
|
-
* The **`ImageBitmapRenderingContext.canvas`** property, part of the Canvas API, is a read-only reference to the
|
|
18937
|
+
* The **`ImageBitmapRenderingContext.canvas`** property, part of the Canvas API, is a read-only reference to the HTMLCanvasElement or OffscreenCanvas object that is associated with the given context.
|
|
18909
18938
|
*
|
|
18910
18939
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageBitmapRenderingContext/canvas)
|
|
18911
18940
|
*/
|
|
@@ -18931,7 +18960,7 @@ declare var ImageBitmapRenderingContext: {
|
|
|
18931
18960
|
*/
|
|
18932
18961
|
interface ImageCapture {
|
|
18933
18962
|
/**
|
|
18934
|
-
* The **`track`** read-only property of the
|
|
18963
|
+
* The **`track`** read-only property of the ImageCapture interface returns a reference to the MediaStreamTrack passed to the ImageCapture.ImageCapture constructor.
|
|
18935
18964
|
*
|
|
18936
18965
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageCapture/track)
|
|
18937
18966
|
*/
|
|
@@ -18949,13 +18978,13 @@ interface ImageCapture {
|
|
|
18949
18978
|
*/
|
|
18950
18979
|
getPhotoSettings(): Promise<PhotoSettings>;
|
|
18951
18980
|
/**
|
|
18952
|
-
* The **`grabFrame()`** method of the a ImageBitmap containing the snapshot.
|
|
18981
|
+
* The **`grabFrame()`** method of the ImageCapture interface takes a snapshot of the live video in a MediaStreamTrack and returns a Promise that resolves with a ImageBitmap containing the snapshot.
|
|
18953
18982
|
*
|
|
18954
18983
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageCapture/grabFrame)
|
|
18955
18984
|
*/
|
|
18956
18985
|
grabFrame(): Promise<ImageBitmap>;
|
|
18957
18986
|
/**
|
|
18958
|
-
* The **`takePhoto()`** method of the device sourcing a MediaStreamTrack and returns a Promise that resolves with a Blob containing the data.
|
|
18987
|
+
* The **`takePhoto()`** method of the ImageCapture interface takes a single exposure using the video capture device sourcing a MediaStreamTrack and returns a Promise that resolves with a Blob containing the data.
|
|
18959
18988
|
*
|
|
18960
18989
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageCapture/takePhoto)
|
|
18961
18990
|
*/
|
|
@@ -18980,7 +19009,7 @@ interface ImageData {
|
|
|
18980
19009
|
*/
|
|
18981
19010
|
readonly colorSpace: PredefinedColorSpace;
|
|
18982
19011
|
/**
|
|
18983
|
-
* The readonly **`ImageData.data`** property returns a pixel data.
|
|
19012
|
+
* The readonly **`ImageData.data`** property returns a Uint8ClampedArray or Float16Array that contains the ImageData object's pixel data.
|
|
18984
19013
|
*
|
|
18985
19014
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageData/data)
|
|
18986
19015
|
*/
|
|
@@ -19174,25 +19203,25 @@ declare var InputDeviceInfo: {
|
|
|
19174
19203
|
*/
|
|
19175
19204
|
interface InputEvent extends UIEvent {
|
|
19176
19205
|
/**
|
|
19177
|
-
* The **`data`** read-only property of the characters.
|
|
19206
|
+
* The **`data`** read-only property of the InputEvent interface returns a string with inserted characters.
|
|
19178
19207
|
*
|
|
19179
19208
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/InputEvent/data)
|
|
19180
19209
|
*/
|
|
19181
19210
|
readonly data: string | null;
|
|
19182
19211
|
/**
|
|
19183
|
-
* The **`dataTransfer`** read-only property of the containing information about richtext or plaintext data being added to or removed from editable content.
|
|
19212
|
+
* The **`dataTransfer`** read-only property of the InputEvent interface returns a DataTransfer object containing information about richtext or plaintext data being added to or removed from editable content.
|
|
19184
19213
|
*
|
|
19185
19214
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/InputEvent/dataTransfer)
|
|
19186
19215
|
*/
|
|
19187
19216
|
readonly dataTransfer: DataTransfer | null;
|
|
19188
19217
|
/**
|
|
19189
|
-
* The **`inputType`** read-only property of the
|
|
19218
|
+
* The **`inputType`** read-only property of the InputEvent interface returns the type of change made to editable content.
|
|
19190
19219
|
*
|
|
19191
19220
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/InputEvent/inputType)
|
|
19192
19221
|
*/
|
|
19193
19222
|
readonly inputType: string;
|
|
19194
19223
|
/**
|
|
19195
|
-
* The **`InputEvent.isComposing`** read-only property returns a boolean value indicating if the event is fired after
|
|
19224
|
+
* The **`InputEvent.isComposing`** read-only property returns a boolean value indicating if the event is fired after Element/compositionstart_event and before Element/compositionend_event.
|
|
19196
19225
|
*
|
|
19197
19226
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/InputEvent/isComposing)
|
|
19198
19227
|
*/
|
|
@@ -19348,7 +19377,7 @@ interface KeyboardEvent extends UIEvent {
|
|
|
19348
19377
|
*/
|
|
19349
19378
|
readonly altKey: boolean;
|
|
19350
19379
|
/**
|
|
19351
|
-
* The **`charCode`** read-only property of the pressed during a Element/keypress_event event.
|
|
19380
|
+
* The **`charCode`** read-only property of the KeyboardEvent interface returns the Unicode value of a character key pressed during a Element/keypress_event event.
|
|
19352
19381
|
* @deprecated
|
|
19353
19382
|
*
|
|
19354
19383
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyboardEvent/charCode)
|
|
@@ -19398,7 +19427,7 @@ interface KeyboardEvent extends UIEvent {
|
|
|
19398
19427
|
*/
|
|
19399
19428
|
readonly metaKey: boolean;
|
|
19400
19429
|
/**
|
|
19401
|
-
* The **`repeat`** read-only property of the `true` if the given key is being held down such that it is automatically repeating.
|
|
19430
|
+
* The **`repeat`** read-only property of the KeyboardEvent interface returns a boolean value that is `true` if the given key is being held down such that it is automatically repeating.
|
|
19402
19431
|
*
|
|
19403
19432
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyboardEvent/repeat)
|
|
19404
19433
|
*/
|
|
@@ -19550,7 +19579,7 @@ interface LinkStyle {
|
|
|
19550
19579
|
*/
|
|
19551
19580
|
interface Location {
|
|
19552
19581
|
/**
|
|
19553
|
-
* The **`ancestorOrigins`** read-only property of the Location interface is a static browsing contexts of the document associated with the given Location object.
|
|
19582
|
+
* The **`ancestorOrigins`** read-only property of the Location interface is a static DOMStringList containing, in reverse order, the origins of all ancestor browsing contexts of the document associated with the given Location object.
|
|
19554
19583
|
*
|
|
19555
19584
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Location/ancestorOrigins)
|
|
19556
19585
|
*/
|
|
@@ -19649,7 +19678,7 @@ interface Lock {
|
|
|
19649
19678
|
*/
|
|
19650
19679
|
readonly mode: LockMode;
|
|
19651
19680
|
/**
|
|
19652
|
-
* The **`name`** read-only property of the Lock interface returns the _name_ passed to
|
|
19681
|
+
* The **`name`** read-only property of the Lock interface returns the _name_ passed to LockManager.request selected when the lock was requested.
|
|
19653
19682
|
*
|
|
19654
19683
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Lock/name)
|
|
19655
19684
|
*/
|
|
@@ -20070,7 +20099,7 @@ declare var MediaDevices: {
|
|
|
20070
20099
|
*/
|
|
20071
20100
|
interface MediaElementAudioSourceNode extends AudioNode {
|
|
20072
20101
|
/**
|
|
20073
|
-
* The MediaElementAudioSourceNode interface's read-only **`mediaElement`** property indicates the receiving audio.
|
|
20102
|
+
* The MediaElementAudioSourceNode interface's read-only **`mediaElement`** property indicates the HTMLMediaElement that contains the audio track from which the node is receiving audio.
|
|
20074
20103
|
*
|
|
20075
20104
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaElementAudioSourceNode/mediaElement)
|
|
20076
20105
|
*/
|
|
@@ -20267,7 +20296,7 @@ interface MediaKeyStatusMap {
|
|
|
20267
20296
|
*/
|
|
20268
20297
|
get(keyId: BufferSource): MediaKeyStatus | undefined;
|
|
20269
20298
|
/**
|
|
20270
|
-
* The **`has()`** method of the whether a value has been associated with the given key.
|
|
20299
|
+
* The **`has()`** method of the MediaKeyStatusMap interface returns a Boolean, asserting whether a value has been associated with the given key.
|
|
20271
20300
|
*
|
|
20272
20301
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeyStatusMap/has)
|
|
20273
20302
|
*/
|
|
@@ -20294,13 +20323,13 @@ interface MediaKeySystemAccess {
|
|
|
20294
20323
|
*/
|
|
20295
20324
|
readonly keySystem: string;
|
|
20296
20325
|
/**
|
|
20297
|
-
* The `MediaKeySystemAccess.createMediaKeys()` method returns a
|
|
20326
|
+
* The `MediaKeySystemAccess.createMediaKeys()` method returns a Promise that resolves to a new MediaKeys object.
|
|
20298
20327
|
*
|
|
20299
20328
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeySystemAccess/createMediaKeys)
|
|
20300
20329
|
*/
|
|
20301
20330
|
createMediaKeys(): Promise<MediaKeys>;
|
|
20302
20331
|
/**
|
|
20303
|
-
* The **`getConfiguration()`** method of the MediaKeySystemAccess interface returns an object with the supported combination of the following configuration options:
|
|
20332
|
+
* The **`getConfiguration()`** method of the MediaKeySystemAccess interface returns an object with the supported combination of the following configuration options:
|
|
20304
20333
|
*
|
|
20305
20334
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeySystemAccess/getConfiguration)
|
|
20306
20335
|
*/
|
|
@@ -20396,25 +20425,25 @@ declare var MediaList: {
|
|
|
20396
20425
|
*/
|
|
20397
20426
|
interface MediaMetadata {
|
|
20398
20427
|
/**
|
|
20399
|
-
* The **`album`** property of the collection containing the media to be played.
|
|
20428
|
+
* The **`album`** property of the MediaMetadata interface returns or sets the name of the album or collection containing the media to be played.
|
|
20400
20429
|
*
|
|
20401
20430
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaMetadata/album)
|
|
20402
20431
|
*/
|
|
20403
20432
|
album: string;
|
|
20404
20433
|
/**
|
|
20405
|
-
* The **`artist`** property of the creator, etc., of the media to be played.
|
|
20434
|
+
* The **`artist`** property of the MediaMetadata interface returns or sets the name of the artist, group, creator, etc., of the media to be played.
|
|
20406
20435
|
*
|
|
20407
20436
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaMetadata/artist)
|
|
20408
20437
|
*/
|
|
20409
20438
|
artist: string;
|
|
20410
20439
|
/**
|
|
20411
|
-
* The **`artwork`** property of the objects representing images associated with playing media.
|
|
20440
|
+
* The **`artwork`** property of the MediaMetadata interface returns or sets an array of objects representing images associated with playing media.
|
|
20412
20441
|
*
|
|
20413
20442
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaMetadata/artwork)
|
|
20414
20443
|
*/
|
|
20415
20444
|
artwork: ReadonlyArray<MediaImage>;
|
|
20416
20445
|
/**
|
|
20417
|
-
* The **`title`** property of the played.
|
|
20446
|
+
* The **`title`** property of the MediaMetadata interface returns or sets the title of the media to be played.
|
|
20418
20447
|
*
|
|
20419
20448
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaMetadata/title)
|
|
20420
20449
|
*/
|
|
@@ -20437,13 +20466,13 @@ interface MediaQueryListEventMap {
|
|
|
20437
20466
|
*/
|
|
20438
20467
|
interface MediaQueryList extends EventTarget {
|
|
20439
20468
|
/**
|
|
20440
|
-
* The **`matches`** read-only property of the `true` if the document currently matches the media query list, or `false` if not.
|
|
20469
|
+
* The **`matches`** read-only property of the MediaQueryList interface is a boolean value that returns `true` if the document currently matches the media query list, or `false` if not.
|
|
20441
20470
|
*
|
|
20442
20471
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryList/matches)
|
|
20443
20472
|
*/
|
|
20444
20473
|
readonly matches: boolean;
|
|
20445
20474
|
/**
|
|
20446
|
-
* The **`media`** read-only property of the serialized media query.
|
|
20475
|
+
* The **`media`** read-only property of the MediaQueryList interface is a string representing a serialized media query.
|
|
20447
20476
|
*
|
|
20448
20477
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryList/media)
|
|
20449
20478
|
*/
|
|
@@ -20451,14 +20480,14 @@ interface MediaQueryList extends EventTarget {
|
|
|
20451
20480
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryList/change_event) */
|
|
20452
20481
|
onchange: ((this: MediaQueryList, ev: MediaQueryListEvent) => any) | null;
|
|
20453
20482
|
/**
|
|
20454
|
-
* The deprecated **`addListener()`** method of the `MediaQueryListener` that will run a custom callback function in response to the media query status changing.
|
|
20483
|
+
* The deprecated **`addListener()`** method of the MediaQueryList interface adds a listener to the `MediaQueryListener` that will run a custom callback function in response to the media query status changing.
|
|
20455
20484
|
* @deprecated
|
|
20456
20485
|
*
|
|
20457
20486
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryList/addListener)
|
|
20458
20487
|
*/
|
|
20459
20488
|
addListener(callback: ((this: MediaQueryList, ev: MediaQueryListEvent) => any) | null): void;
|
|
20460
20489
|
/**
|
|
20461
|
-
* The **`removeListener()`** method of the `MediaQueryListener`.
|
|
20490
|
+
* The **`removeListener()`** method of the MediaQueryList interface removes a listener from the `MediaQueryListener`.
|
|
20462
20491
|
* @deprecated
|
|
20463
20492
|
*
|
|
20464
20493
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryList/removeListener)
|
|
@@ -20482,13 +20511,13 @@ declare var MediaQueryList: {
|
|
|
20482
20511
|
*/
|
|
20483
20512
|
interface MediaQueryListEvent extends Event {
|
|
20484
20513
|
/**
|
|
20485
|
-
* The **`matches`** read-only property of the `true` if the document currently matches the media query list, or `false` if not.
|
|
20514
|
+
* The **`matches`** read-only property of the MediaQueryListEvent interface is a boolean value that is `true` if the document currently matches the media query list, or `false` if not.
|
|
20486
20515
|
*
|
|
20487
20516
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryListEvent/matches)
|
|
20488
20517
|
*/
|
|
20489
20518
|
readonly matches: boolean;
|
|
20490
20519
|
/**
|
|
20491
|
-
* The **`media`** read-only property of the a serialized media query.
|
|
20520
|
+
* The **`media`** read-only property of the MediaQueryListEvent interface is a string representing a serialized media query.
|
|
20492
20521
|
*
|
|
20493
20522
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryListEvent/media)
|
|
20494
20523
|
*/
|
|
@@ -20564,7 +20593,7 @@ interface MediaRecorder extends EventTarget {
|
|
|
20564
20593
|
*/
|
|
20565
20594
|
pause(): void;
|
|
20566
20595
|
/**
|
|
20567
|
-
* The **`requestData()`** method of the MediaRecorder interface is used to raise a MediaRecorder.dataavailable_event event containing a called.
|
|
20596
|
+
* The **`requestData()`** method of the MediaRecorder interface is used to raise a MediaRecorder.dataavailable_event event containing a Blob object of the captured media as it was when the method was called.
|
|
20568
20597
|
*
|
|
20569
20598
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaRecorder/requestData)
|
|
20570
20599
|
*/
|
|
@@ -20617,7 +20646,7 @@ interface MediaSession {
|
|
|
20617
20646
|
*/
|
|
20618
20647
|
metadata: MediaMetadata | null;
|
|
20619
20648
|
/**
|
|
20620
|
-
* The **`playbackState`** property of the playing or paused.
|
|
20649
|
+
* The **`playbackState`** property of the MediaSession interface indicates whether the current media session is playing or paused.
|
|
20621
20650
|
*
|
|
20622
20651
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSession/playbackState)
|
|
20623
20652
|
*/
|
|
@@ -20641,7 +20670,7 @@ interface MediaSession {
|
|
|
20641
20670
|
*/
|
|
20642
20671
|
setMicrophoneActive(active: boolean): Promise<void>;
|
|
20643
20672
|
/**
|
|
20644
|
-
* The **`setPositionState()`** method of the document's media playback position and speed for presentation by user's device in any kind of interface that provides details about ongoing media.
|
|
20673
|
+
* The **`setPositionState()`** method of the MediaSession interface is used to update the current document's media playback position and speed for presentation by user's device in any kind of interface that provides details about ongoing media.
|
|
20645
20674
|
*
|
|
20646
20675
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSession/setPositionState)
|
|
20647
20676
|
*/
|
|
@@ -20666,7 +20695,7 @@ interface MediaSourceEventMap {
|
|
|
20666
20695
|
*/
|
|
20667
20696
|
interface MediaSource extends EventTarget {
|
|
20668
20697
|
/**
|
|
20669
|
-
* The **`activeSourceBuffers`** read-only property of the containing a subset of the SourceBuffer objects contained within providing the selected video track, enabled audio tracks, and shown/hidden text tracks.
|
|
20698
|
+
* The **`activeSourceBuffers`** read-only property of the MediaSource interface returns a SourceBufferList object containing a subset of the SourceBuffer objects contained within MediaSource.sourceBuffers — the list of objects providing the selected video track, enabled audio tracks, and shown/hidden text tracks.
|
|
20670
20699
|
*
|
|
20671
20700
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/activeSourceBuffers)
|
|
20672
20701
|
*/
|
|
@@ -20684,31 +20713,31 @@ interface MediaSource extends EventTarget {
|
|
|
20684
20713
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceopen_event) */
|
|
20685
20714
|
onsourceopen: ((this: MediaSource, ev: Event) => any) | null;
|
|
20686
20715
|
/**
|
|
20687
|
-
* The **`readyState`** read-only property of the current `MediaSource`.
|
|
20716
|
+
* The **`readyState`** read-only property of the MediaSource interface returns an enum representing the state of the current `MediaSource`.
|
|
20688
20717
|
*
|
|
20689
20718
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/readyState)
|
|
20690
20719
|
*/
|
|
20691
20720
|
readonly readyState: ReadyState;
|
|
20692
20721
|
/**
|
|
20693
|
-
* The **`sourceBuffers`** read-only property of the containing the list of SourceBuffer objects associated with this `MediaSource`.
|
|
20722
|
+
* The **`sourceBuffers`** read-only property of the MediaSource interface returns a SourceBufferList object containing the list of SourceBuffer objects associated with this `MediaSource`.
|
|
20694
20723
|
*
|
|
20695
20724
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceBuffers)
|
|
20696
20725
|
*/
|
|
20697
20726
|
readonly sourceBuffers: SourceBufferList;
|
|
20698
20727
|
/**
|
|
20699
|
-
* The **`addSourceBuffer()`** method of the given MIME type and adds it to the `MediaSource`'s
|
|
20728
|
+
* The **`addSourceBuffer()`** method of the MediaSource interface creates a new SourceBuffer of the given MIME type and adds it to the `MediaSource`'s MediaSource.sourceBuffers list.
|
|
20700
20729
|
*
|
|
20701
20730
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/addSourceBuffer)
|
|
20702
20731
|
*/
|
|
20703
20732
|
addSourceBuffer(type: string): SourceBuffer;
|
|
20704
20733
|
/**
|
|
20705
|
-
* The **`clearLiveSeekableRange()`** method of the to MediaSource.setLiveSeekableRange().
|
|
20734
|
+
* The **`clearLiveSeekableRange()`** method of the MediaSource interface clears a seekable range previously set with a call to MediaSource.setLiveSeekableRange().
|
|
20706
20735
|
*
|
|
20707
20736
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/clearLiveSeekableRange)
|
|
20708
20737
|
*/
|
|
20709
20738
|
clearLiveSeekableRange(): void;
|
|
20710
20739
|
/**
|
|
20711
|
-
* The **`endOfStream()`** method of the
|
|
20740
|
+
* The **`endOfStream()`** method of the MediaSource interface signals the end of the stream.
|
|
20712
20741
|
*
|
|
20713
20742
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/endOfStream)
|
|
20714
20743
|
*/
|
|
@@ -20720,7 +20749,7 @@ interface MediaSource extends EventTarget {
|
|
|
20720
20749
|
*/
|
|
20721
20750
|
removeSourceBuffer(sourceBuffer: SourceBuffer): void;
|
|
20722
20751
|
/**
|
|
20723
|
-
* The **`setLiveSeekableRange()`** method of the media element.
|
|
20752
|
+
* The **`setLiveSeekableRange()`** method of the MediaSource interface sets the range that the user can seek to in the media element.
|
|
20724
20753
|
*
|
|
20725
20754
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/setLiveSeekableRange)
|
|
20726
20755
|
*/
|
|
@@ -20773,7 +20802,7 @@ interface MediaStreamEventMap {
|
|
|
20773
20802
|
*/
|
|
20774
20803
|
interface MediaStream extends EventTarget {
|
|
20775
20804
|
/**
|
|
20776
|
-
* The **`active`** read-only property of the `true` if the stream is currently active; otherwise, it returns `false`.
|
|
20805
|
+
* The **`active`** read-only property of the MediaStream interface returns a Boolean value which is `true` if the stream is currently active; otherwise, it returns `false`.
|
|
20777
20806
|
*
|
|
20778
20807
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStream/active)
|
|
20779
20808
|
*/
|
|
@@ -20801,7 +20830,7 @@ interface MediaStream extends EventTarget {
|
|
|
20801
20830
|
*/
|
|
20802
20831
|
clone(): MediaStream;
|
|
20803
20832
|
/**
|
|
20804
|
-
* The **`getAudioTracks()`** method of the stream's track set where MediaStreamTrack.kind is `audio`.
|
|
20833
|
+
* The **`getAudioTracks()`** method of the MediaStream interface returns a sequence that represents all the MediaStreamTrack objects in this stream's track set where MediaStreamTrack.kind is `audio`.
|
|
20805
20834
|
*
|
|
20806
20835
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStream/getAudioTracks)
|
|
20807
20836
|
*/
|
|
@@ -20813,19 +20842,19 @@ interface MediaStream extends EventTarget {
|
|
|
20813
20842
|
*/
|
|
20814
20843
|
getTrackById(trackId: string): MediaStreamTrack | null;
|
|
20815
20844
|
/**
|
|
20816
|
-
* The **`getTracks()`** method of the stream's track set, regardless of MediaStreamTrack.kind.
|
|
20845
|
+
* The **`getTracks()`** method of the MediaStream interface returns a sequence that represents all the MediaStreamTrack objects in this stream's track set, regardless of MediaStreamTrack.kind.
|
|
20817
20846
|
*
|
|
20818
20847
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStream/getTracks)
|
|
20819
20848
|
*/
|
|
20820
20849
|
getTracks(): MediaStreamTrack[];
|
|
20821
20850
|
/**
|
|
20822
|
-
* The **`getVideoTracks()`** method of the
|
|
20851
|
+
* The **`getVideoTracks()`** method of the MediaStream interface returns a sequence of MediaStreamTrack objects representing the video tracks in this stream.
|
|
20823
20852
|
*
|
|
20824
20853
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStream/getVideoTracks)
|
|
20825
20854
|
*/
|
|
20826
20855
|
getVideoTracks(): MediaStreamTrack[];
|
|
20827
20856
|
/**
|
|
20828
|
-
* The **`removeTrack()`** method of the MediaStream interface removes a
|
|
20857
|
+
* The **`removeTrack()`** method of the MediaStream interface removes a MediaStreamTrack from a stream.
|
|
20829
20858
|
*
|
|
20830
20859
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStream/removeTrack)
|
|
20831
20860
|
*/
|
|
@@ -20869,7 +20898,7 @@ declare var MediaStreamAudioDestinationNode: {
|
|
|
20869
20898
|
*/
|
|
20870
20899
|
interface MediaStreamAudioSourceNode extends AudioNode {
|
|
20871
20900
|
/**
|
|
20872
|
-
* The MediaStreamAudioSourceNode interface's read-only **`mediaStream`** property indicates the receiving audio.
|
|
20901
|
+
* The MediaStreamAudioSourceNode interface's read-only **`mediaStream`** property indicates the MediaStream that contains the audio track from which the node is receiving audio.
|
|
20873
20902
|
*
|
|
20874
20903
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamAudioSourceNode/mediaStream)
|
|
20875
20904
|
*/
|
|
@@ -20900,7 +20929,7 @@ interface MediaStreamTrack extends EventTarget {
|
|
|
20900
20929
|
*/
|
|
20901
20930
|
contentHint: string;
|
|
20902
20931
|
/**
|
|
20903
|
-
* The **`enabled`** property of the `true` if the track is allowed to render the source stream or `false` if it is not.
|
|
20932
|
+
* The **`enabled`** property of the MediaStreamTrack interface is a Boolean value which is `true` if the track is allowed to render the source stream or `false` if it is not.
|
|
20904
20933
|
*
|
|
20905
20934
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrack/enabled)
|
|
20906
20935
|
*/
|
|
@@ -20924,7 +20953,7 @@ interface MediaStreamTrack extends EventTarget {
|
|
|
20924
20953
|
*/
|
|
20925
20954
|
readonly label: string;
|
|
20926
20955
|
/**
|
|
20927
|
-
* The **`muted`** read-only property of the indicating whether or not the track is currently unable to provide media output.
|
|
20956
|
+
* The **`muted`** read-only property of the MediaStreamTrack interface returns a boolean value indicating whether or not the track is currently unable to provide media output.
|
|
20928
20957
|
*
|
|
20929
20958
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrack/muted)
|
|
20930
20959
|
*/
|
|
@@ -20960,13 +20989,13 @@ interface MediaStreamTrack extends EventTarget {
|
|
|
20960
20989
|
*/
|
|
20961
20990
|
getCapabilities(): MediaTrackCapabilities;
|
|
20962
20991
|
/**
|
|
20963
|
-
* The **`getConstraints()`** method of the MediaStreamTrack interface returns a
|
|
20992
|
+
* The **`getConstraints()`** method of the MediaStreamTrack interface returns a MediaTrackConstraints object containing the set of constraints most recently established for the track using a prior call to MediaStreamTrack.applyConstraints.
|
|
20964
20993
|
*
|
|
20965
20994
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrack/getConstraints)
|
|
20966
20995
|
*/
|
|
20967
20996
|
getConstraints(): MediaTrackConstraints;
|
|
20968
20997
|
/**
|
|
20969
|
-
* The **`getSettings()`** method of the object containing the current values of each of the constrainable properties for the current `MediaStreamTrack`.
|
|
20998
|
+
* The **`getSettings()`** method of the MediaStreamTrack interface returns a MediaTrackSettings object containing the current values of each of the constrainable properties for the current `MediaStreamTrack`.
|
|
20970
20999
|
*
|
|
20971
21000
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrack/getSettings)
|
|
20972
21001
|
*/
|
|
@@ -21014,13 +21043,13 @@ declare var MediaStreamTrackEvent: {
|
|
|
21014
21043
|
*/
|
|
21015
21044
|
interface MessageChannel {
|
|
21016
21045
|
/**
|
|
21017
|
-
* The **`port1`** read-only property of the the port attached to the context that originated the channel.
|
|
21046
|
+
* The **`port1`** read-only property of the MessageChannel interface returns the first port of the message channel — the port attached to the context that originated the channel.
|
|
21018
21047
|
*
|
|
21019
21048
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageChannel/port1)
|
|
21020
21049
|
*/
|
|
21021
21050
|
readonly port1: MessagePort;
|
|
21022
21051
|
/**
|
|
21023
|
-
* The **`port2`** read-only property of the the port attached to the context at the other end of the channel, which the message is initially sent to.
|
|
21052
|
+
* The **`port2`** read-only property of the MessageChannel interface returns the second port of the message channel — the port attached to the context at the other end of the channel, which the message is initially sent to.
|
|
21024
21053
|
*
|
|
21025
21054
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageChannel/port2)
|
|
21026
21055
|
*/
|
|
@@ -21039,31 +21068,31 @@ declare var MessageChannel: {
|
|
|
21039
21068
|
*/
|
|
21040
21069
|
interface MessageEvent<T = any> extends Event {
|
|
21041
21070
|
/**
|
|
21042
|
-
* The **`data`** read-only property of the
|
|
21071
|
+
* The **`data`** read-only property of the MessageEvent interface represents the data sent by the message emitter.
|
|
21043
21072
|
*
|
|
21044
21073
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/data)
|
|
21045
21074
|
*/
|
|
21046
21075
|
readonly data: T;
|
|
21047
21076
|
/**
|
|
21048
|
-
* The **`lastEventId`** read-only property of the unique ID for the event.
|
|
21077
|
+
* The **`lastEventId`** read-only property of the MessageEvent interface is a string representing a unique ID for the event.
|
|
21049
21078
|
*
|
|
21050
21079
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/lastEventId)
|
|
21051
21080
|
*/
|
|
21052
21081
|
readonly lastEventId: string;
|
|
21053
21082
|
/**
|
|
21054
|
-
* The **`origin`** read-only property of the origin of the message emitter.
|
|
21083
|
+
* The **`origin`** read-only property of the MessageEvent interface is a string representing the origin of the message emitter.
|
|
21055
21084
|
*
|
|
21056
21085
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/origin)
|
|
21057
21086
|
*/
|
|
21058
21087
|
readonly origin: string;
|
|
21059
21088
|
/**
|
|
21060
|
-
* The **`ports`** read-only property of the containing all MessagePort objects sent with the message, in order.
|
|
21089
|
+
* The **`ports`** read-only property of the MessageEvent interface is an array of MessagePort objects containing all MessagePort objects sent with the message, in order.
|
|
21061
21090
|
*
|
|
21062
21091
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/ports)
|
|
21063
21092
|
*/
|
|
21064
21093
|
readonly ports: ReadonlyArray<MessagePort>;
|
|
21065
21094
|
/**
|
|
21066
|
-
* The **`source`** read-only property of the
|
|
21095
|
+
* The **`source`** read-only property of the MessageEvent interface is a `MessageEventSource` (which can be a WindowProxy, MessagePort, or ServiceWorker object) representing the message emitter.
|
|
21067
21096
|
*
|
|
21068
21097
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/source)
|
|
21069
21098
|
*/
|
|
@@ -21111,7 +21140,7 @@ interface MessagePort extends EventTarget, MessageEventTarget<MessagePort> {
|
|
|
21111
21140
|
*/
|
|
21112
21141
|
close(): void;
|
|
21113
21142
|
/**
|
|
21114
|
-
* The **`postMessage()`** method of the transfers ownership of objects to other browsing contexts.
|
|
21143
|
+
* The **`postMessage()`** method of the MessagePort interface sends a message from the port, and optionally, transfers ownership of objects to other browsing contexts.
|
|
21115
21144
|
*
|
|
21116
21145
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessagePort/postMessage)
|
|
21117
21146
|
*/
|
|
@@ -21653,7 +21682,7 @@ interface Navigator extends NavigatorAutomationInformation, NavigatorBadge, Navi
|
|
|
21653
21682
|
readonly credentials: CredentialsContainer;
|
|
21654
21683
|
readonly doNotTrack: string | null;
|
|
21655
21684
|
/**
|
|
21656
|
-
* The **`Navigator.geolocation`** read-only property returns a device.
|
|
21685
|
+
* The **`Navigator.geolocation`** read-only property returns a Geolocation object that gives Web content access to the location of the device.
|
|
21657
21686
|
*
|
|
21658
21687
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/geolocation)
|
|
21659
21688
|
*/
|
|
@@ -21666,7 +21695,7 @@ interface Navigator extends NavigatorAutomationInformation, NavigatorBadge, Navi
|
|
|
21666
21695
|
*/
|
|
21667
21696
|
readonly login: NavigatorLogin;
|
|
21668
21697
|
/**
|
|
21669
|
-
* The **`maxTouchPoints`** read-only property of the contact points that are supported by the current device.
|
|
21698
|
+
* The **`maxTouchPoints`** read-only property of the Navigator interface returns the maximum number of simultaneous touch contact points that are supported by the current device.
|
|
21670
21699
|
*
|
|
21671
21700
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/maxTouchPoints)
|
|
21672
21701
|
*/
|
|
@@ -21691,7 +21720,7 @@ interface Navigator extends NavigatorAutomationInformation, NavigatorBadge, Navi
|
|
|
21691
21720
|
*/
|
|
21692
21721
|
readonly mediaSession: MediaSession;
|
|
21693
21722
|
/**
|
|
21694
|
-
* The **`permissions`** read-only property of the Navigator interface returns a status of APIs covered by the Permissions API.
|
|
21723
|
+
* The **`permissions`** read-only property of the Navigator interface returns a Permissions object that can be used to query and update permission status of APIs covered by the Permissions API.
|
|
21695
21724
|
*
|
|
21696
21725
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/permissions)
|
|
21697
21726
|
*/
|
|
@@ -21723,7 +21752,7 @@ interface Navigator extends NavigatorAutomationInformation, NavigatorBadge, Navi
|
|
|
21723
21752
|
*/
|
|
21724
21753
|
canShare(data?: ShareData): boolean;
|
|
21725
21754
|
/**
|
|
21726
|
-
* The **`Navigator.getGamepads()`** method returns an array of
|
|
21755
|
+
* The **`Navigator.getGamepads()`** method returns an array of Gamepad objects, one for each gamepad connected to the device.
|
|
21727
21756
|
*
|
|
21728
21757
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/getGamepads)
|
|
21729
21758
|
*/
|
|
@@ -21933,7 +21962,7 @@ interface Node extends EventTarget {
|
|
|
21933
21962
|
*/
|
|
21934
21963
|
readonly baseURI: string;
|
|
21935
21964
|
/**
|
|
21936
|
-
* The read-only **`childNodes`** property of the Node interface returns a live the first child node is assigned index `0`.
|
|
21965
|
+
* The read-only **`childNodes`** property of the Node interface returns a live NodeList of child Node of the given element where the first child node is assigned index `0`.
|
|
21937
21966
|
*
|
|
21938
21967
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/childNodes)
|
|
21939
21968
|
*/
|
|
@@ -21999,7 +22028,7 @@ interface Node extends EventTarget {
|
|
|
21999
22028
|
*/
|
|
22000
22029
|
readonly parentNode: ParentNode | null;
|
|
22001
22030
|
/**
|
|
22002
|
-
* The read-only **`previousSibling`** property of the Node interface returns the node immediately preceding the specified one in its parent's or `null` if the specified node is the first in that list.
|
|
22031
|
+
* The read-only **`previousSibling`** property of the Node interface returns the node immediately preceding the specified one in its parent's Node.childNodes list, or `null` if the specified node is the first in that list.
|
|
22003
22032
|
*
|
|
22004
22033
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/previousSibling)
|
|
22005
22034
|
*/
|
|
@@ -22182,19 +22211,19 @@ interface NodeIterator {
|
|
|
22182
22211
|
*/
|
|
22183
22212
|
readonly filter: NodeFilter | null;
|
|
22184
22213
|
/**
|
|
22185
|
-
* The **`NodeIterator.pointerBeforeReferenceNode`** read-only property returns a boolean flag that indicates whether the `NodeFilter` is anchored before (if this value is `true`) or after (if this value is `false`) the anchor node indicated by the
|
|
22214
|
+
* The **`NodeIterator.pointerBeforeReferenceNode`** read-only property returns a boolean flag that indicates whether the `NodeFilter` is anchored before (if this value is `true`) or after (if this value is `false`) the anchor node indicated by the NodeIterator.referenceNode property.
|
|
22186
22215
|
*
|
|
22187
22216
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/NodeIterator/pointerBeforeReferenceNode)
|
|
22188
22217
|
*/
|
|
22189
22218
|
readonly pointerBeforeReferenceNode: boolean;
|
|
22190
22219
|
/**
|
|
22191
|
-
* The **`NodeIterator.referenceNode`** read-only property returns the iterator remains anchored to the reference node as specified by this property.
|
|
22220
|
+
* The **`NodeIterator.referenceNode`** read-only property returns the Node to which the iterator is anchored; as new nodes are inserted, the iterator remains anchored to the reference node as specified by this property.
|
|
22192
22221
|
*
|
|
22193
22222
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/NodeIterator/referenceNode)
|
|
22194
22223
|
*/
|
|
22195
22224
|
readonly referenceNode: Node;
|
|
22196
22225
|
/**
|
|
22197
|
-
* The **`NodeIterator.root`** read-only property represents the traverses.
|
|
22226
|
+
* The **`NodeIterator.root`** read-only property represents the Node that is the root of what the NodeIterator traverses.
|
|
22198
22227
|
*
|
|
22199
22228
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/NodeIterator/root)
|
|
22200
22229
|
*/
|
|
@@ -22302,13 +22331,13 @@ interface NotificationEventMap {
|
|
|
22302
22331
|
*/
|
|
22303
22332
|
interface Notification extends EventTarget {
|
|
22304
22333
|
/**
|
|
22305
|
-
* The **`body`** read-only property of the specified in the `body` option of the
|
|
22334
|
+
* The **`body`** read-only property of the Notification interface indicates the body string of the notification, as specified in the `body` option of the Notification.Notification constructor.
|
|
22306
22335
|
*
|
|
22307
22336
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/body)
|
|
22308
22337
|
*/
|
|
22309
22338
|
readonly body: string;
|
|
22310
22339
|
/**
|
|
22311
|
-
* The **`data`** read-only property of the
|
|
22340
|
+
* The **`data`** read-only property of the Notification interface returns a structured clone of the notification's data, as specified in the `data` option of the Notification.Notification constructor.
|
|
22312
22341
|
*
|
|
22313
22342
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/data)
|
|
22314
22343
|
*/
|
|
@@ -22320,13 +22349,13 @@ interface Notification extends EventTarget {
|
|
|
22320
22349
|
*/
|
|
22321
22350
|
readonly dir: NotificationDirection;
|
|
22322
22351
|
/**
|
|
22323
|
-
* The **`icon`** read-only property of the part of the notification, as specified in the `icon` option of the
|
|
22352
|
+
* The **`icon`** read-only property of the Notification interface contains the URL of an icon to be displayed as part of the notification, as specified in the `icon` option of the Notification.Notification constructor.
|
|
22324
22353
|
*
|
|
22325
22354
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/icon)
|
|
22326
22355
|
*/
|
|
22327
22356
|
readonly icon: string;
|
|
22328
22357
|
/**
|
|
22329
|
-
* The **`lang`** read-only property of the
|
|
22358
|
+
* The **`lang`** read-only property of the Notification interface indicates the language used in the notification, as specified in the `lang` option of the Notification.Notification constructor.
|
|
22330
22359
|
*
|
|
22331
22360
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/lang)
|
|
22332
22361
|
*/
|
|
@@ -22346,19 +22375,19 @@ interface Notification extends EventTarget {
|
|
|
22346
22375
|
*/
|
|
22347
22376
|
readonly requireInteraction: boolean;
|
|
22348
22377
|
/**
|
|
22349
|
-
* The **`silent`** read-only property of the silent, i.e., no sounds or vibrations should be issued regardless of the device settings.
|
|
22378
|
+
* The **`silent`** read-only property of the Notification interface specifies whether the notification should be silent, i.e., no sounds or vibrations should be issued regardless of the device settings.
|
|
22350
22379
|
*
|
|
22351
22380
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/silent)
|
|
22352
22381
|
*/
|
|
22353
22382
|
readonly silent: boolean | null;
|
|
22354
22383
|
/**
|
|
22355
|
-
* The **`tag`** read-only property of the
|
|
22384
|
+
* The **`tag`** read-only property of the Notification interface signifies an identifying tag for the notification, as specified in the `tag` option of the Notification.Notification constructor.
|
|
22356
22385
|
*
|
|
22357
22386
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/tag)
|
|
22358
22387
|
*/
|
|
22359
22388
|
readonly tag: string;
|
|
22360
22389
|
/**
|
|
22361
|
-
* The **`title`** read-only property of the specified in the `title` parameter of the
|
|
22390
|
+
* The **`title`** read-only property of the Notification interface indicates the title of the notification, as specified in the `title` parameter of the Notification.Notification constructor.
|
|
22362
22391
|
*
|
|
22363
22392
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/title)
|
|
22364
22393
|
*/
|
|
@@ -22513,13 +22542,13 @@ interface OES_vertex_array_object {
|
|
|
22513
22542
|
*/
|
|
22514
22543
|
bindVertexArrayOES(arrayObject: WebGLVertexArrayObjectOES | null): void;
|
|
22515
22544
|
/**
|
|
22516
|
-
* The **`OES_vertex_array_object.createVertexArrayOES()`** method of the WebGL API creates and initializes a pointing to vertex array data and which provides names for different sets of vertex data.
|
|
22545
|
+
* The **`OES_vertex_array_object.createVertexArrayOES()`** method of the WebGL API creates and initializes a WebGLVertexArrayObject object that represents a vertex array object (VAO) pointing to vertex array data and which provides names for different sets of vertex data.
|
|
22517
22546
|
*
|
|
22518
22547
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_vertex_array_object/createVertexArrayOES)
|
|
22519
22548
|
*/
|
|
22520
22549
|
createVertexArrayOES(): WebGLVertexArrayObjectOES;
|
|
22521
22550
|
/**
|
|
22522
|
-
* The **`OES_vertex_array_object.deleteVertexArrayOES()`** method of the WebGL API deletes a given
|
|
22551
|
+
* The **`OES_vertex_array_object.deleteVertexArrayOES()`** method of the WebGL API deletes a given WebGLVertexArrayObject object.
|
|
22523
22552
|
*
|
|
22524
22553
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_vertex_array_object/deleteVertexArrayOES)
|
|
22525
22554
|
*/
|
|
@@ -22558,7 +22587,7 @@ interface OVR_multiview2 {
|
|
|
22558
22587
|
*/
|
|
22559
22588
|
interface OfflineAudioCompletionEvent extends Event {
|
|
22560
22589
|
/**
|
|
22561
|
-
* The **`renderedBuffer`** read-only property of the containing the result of processing an OfflineAudioContext.
|
|
22590
|
+
* The **`renderedBuffer`** read-only property of the OfflineAudioCompletionEvent interface is an AudioBuffer containing the result of processing an OfflineAudioContext.
|
|
22562
22591
|
*
|
|
22563
22592
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/OfflineAudioCompletionEvent/renderedBuffer)
|
|
22564
22593
|
*/
|
|
@@ -22581,7 +22610,7 @@ interface OfflineAudioContextEventMap extends BaseAudioContextEventMap {
|
|
|
22581
22610
|
*/
|
|
22582
22611
|
interface OfflineAudioContext extends BaseAudioContext {
|
|
22583
22612
|
/**
|
|
22584
|
-
* The **`length`** property of the the buffer in sample-frames.
|
|
22613
|
+
* The **`length`** property of the OfflineAudioContext interface returns an integer representing the size of the buffer in sample-frames.
|
|
22585
22614
|
*
|
|
22586
22615
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/OfflineAudioContext/length)
|
|
22587
22616
|
*/
|
|
@@ -22589,7 +22618,7 @@ interface OfflineAudioContext extends BaseAudioContext {
|
|
|
22589
22618
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/OfflineAudioContext/complete_event) */
|
|
22590
22619
|
oncomplete: ((this: OfflineAudioContext, ev: OfflineAudioCompletionEvent) => any) | null;
|
|
22591
22620
|
/**
|
|
22592
|
-
* The **`resume()`** method of the context that has been suspended.
|
|
22621
|
+
* The **`resume()`** method of the OfflineAudioContext interface resumes the progression of time in an audio context that has been suspended.
|
|
22593
22622
|
*
|
|
22594
22623
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/OfflineAudioContext/resume)
|
|
22595
22624
|
*/
|
|
@@ -22718,7 +22747,7 @@ interface OscillatorNode extends AudioScheduledSourceNode {
|
|
|
22718
22747
|
*/
|
|
22719
22748
|
type: OscillatorType;
|
|
22720
22749
|
/**
|
|
22721
|
-
* The **`setPeriodicWave()`** method of the OscillatorNode interface is used to point to a PeriodicWave defining a periodic waveform that can be used to shape the oscillator's output, when
|
|
22750
|
+
* The **`setPeriodicWave()`** method of the OscillatorNode interface is used to point to a PeriodicWave defining a periodic waveform that can be used to shape the oscillator's output, when OscillatorNode.type is `custom`.
|
|
22722
22751
|
*
|
|
22723
22752
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/OscillatorNode/setPeriodicWave)
|
|
22724
22753
|
*/
|
|
@@ -22741,7 +22770,7 @@ declare var OscillatorNode: {
|
|
|
22741
22770
|
*/
|
|
22742
22771
|
interface OverconstrainedError extends DOMException {
|
|
22743
22772
|
/**
|
|
22744
|
-
* The **`constraint`** read-only property of the in the constructor, meaning the constraint that was not satisfied.
|
|
22773
|
+
* The **`constraint`** read-only property of the OverconstrainedError interface returns the constraint that was supplied in the constructor, meaning the constraint that was not satisfied.
|
|
22745
22774
|
*
|
|
22746
22775
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/OverconstrainedError/constraint)
|
|
22747
22776
|
*/
|
|
@@ -23134,7 +23163,7 @@ interface PaymentRequestEventMap {
|
|
|
23134
23163
|
*/
|
|
23135
23164
|
interface PaymentRequest extends EventTarget {
|
|
23136
23165
|
/**
|
|
23137
|
-
* The **`id`** read-only attribute of the
|
|
23166
|
+
* The **`id`** read-only attribute of the PaymentRequest interface returns a unique identifier for a particular PaymentRequest instance.
|
|
23138
23167
|
*
|
|
23139
23168
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentRequest/id)
|
|
23140
23169
|
*/
|
|
@@ -23168,7 +23197,7 @@ interface PaymentRequest extends EventTarget {
|
|
|
23168
23197
|
*/
|
|
23169
23198
|
readonly shippingOption: string | null;
|
|
23170
23199
|
/**
|
|
23171
|
-
* The **`shippingType`** read-only property of the `'delivery'`, `'pickup'`, or `null` if one was not provided by the constructor.
|
|
23200
|
+
* The **`shippingType`** read-only property of the PaymentRequest interface returns one of `'shipping'`, `'delivery'`, `'pickup'`, or `null` if one was not provided by the constructor.
|
|
23172
23201
|
* @deprecated
|
|
23173
23202
|
*
|
|
23174
23203
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentRequest/shippingType)
|
|
@@ -23211,7 +23240,7 @@ declare var PaymentRequest: {
|
|
|
23211
23240
|
*/
|
|
23212
23241
|
interface PaymentRequestUpdateEvent extends Event {
|
|
23213
23242
|
/**
|
|
23214
|
-
* The **`updateWith()`** method of the
|
|
23243
|
+
* The **`updateWith()`** method of the PaymentRequestUpdateEvent interface updates the details of an existing PaymentRequest.
|
|
23215
23244
|
*
|
|
23216
23245
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentRequestUpdateEvent/updateWith)
|
|
23217
23246
|
*/
|
|
@@ -23235,7 +23264,7 @@ interface PaymentResponseEventMap {
|
|
|
23235
23264
|
*/
|
|
23236
23265
|
interface PaymentResponse extends EventTarget {
|
|
23237
23266
|
/**
|
|
23238
|
-
* The **`details`** read-only property of the provides a payment method specific message used by the merchant to process the transaction and determine a successful funds transfer.
|
|
23267
|
+
* The **`details`** read-only property of the PaymentResponse interface returns a JSON-serializable object that provides a payment method specific message used by the merchant to process the transaction and determine a successful funds transfer.
|
|
23239
23268
|
*
|
|
23240
23269
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/details)
|
|
23241
23270
|
*/
|
|
@@ -23255,7 +23284,7 @@ interface PaymentResponse extends EventTarget {
|
|
|
23255
23284
|
*/
|
|
23256
23285
|
readonly payerEmail: string | null;
|
|
23257
23286
|
/**
|
|
23258
|
-
* The **`payerName`** read-only property of the
|
|
23287
|
+
* The **`payerName`** read-only property of the PaymentResponse interface returns the name supplied by the user.
|
|
23259
23288
|
*
|
|
23260
23289
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/payerName)
|
|
23261
23290
|
*/
|
|
@@ -23267,7 +23296,7 @@ interface PaymentResponse extends EventTarget {
|
|
|
23267
23296
|
*/
|
|
23268
23297
|
readonly payerPhone: string | null;
|
|
23269
23298
|
/**
|
|
23270
|
-
* The **`requestId`** read-only property of the the `PaymentResponse()` constructor by details.id.
|
|
23299
|
+
* The **`requestId`** read-only property of the PaymentResponse interface returns the free-form identifier supplied by the `PaymentResponse()` constructor by details.id.
|
|
23271
23300
|
*
|
|
23272
23301
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/requestId)
|
|
23273
23302
|
*/
|
|
@@ -23285,7 +23314,7 @@ interface PaymentResponse extends EventTarget {
|
|
|
23285
23314
|
*/
|
|
23286
23315
|
readonly shippingOption: string | null;
|
|
23287
23316
|
/**
|
|
23288
|
-
* The PaymentRequest method **`complete()`** of the Payment Request API notifies the user interface to be closed.
|
|
23317
|
+
* The PaymentRequest method **`complete()`** of the Payment Request API notifies the user agent that the user interaction is over, and causes any remaining user interface to be closed.
|
|
23289
23318
|
*
|
|
23290
23319
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/complete)
|
|
23291
23320
|
*/
|
|
@@ -23871,7 +23900,7 @@ interface PerformanceResourceTiming extends PerformanceEntry {
|
|
|
23871
23900
|
*/
|
|
23872
23901
|
readonly transferSize: number;
|
|
23873
23902
|
/**
|
|
23874
|
-
* The **`workerStart`** read-only property of the PerformanceResourceTiming interface returns a
|
|
23903
|
+
* The **`workerStart`** read-only property of the PerformanceResourceTiming interface returns a DOMHighResTimeStamp immediately before dispatching the FetchEvent if a Service Worker thread is already running, or immediately before starting the Service Worker thread if it is not already running.
|
|
23875
23904
|
*
|
|
23876
23905
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/workerStart)
|
|
23877
23906
|
*/
|
|
@@ -23962,7 +23991,7 @@ interface PerformanceTiming {
|
|
|
23962
23991
|
*/
|
|
23963
23992
|
readonly domContentLoadedEventEnd: number;
|
|
23964
23993
|
/**
|
|
23965
|
-
* The legacy **`PerformanceTiming.domContentLoadedEventStart`** read-only property returns an `unsigned long long` representing the moment, in milliseconds since the UNIX epoch, right before the parser sent the executed right after parsing has been executed.
|
|
23994
|
+
* The legacy **`PerformanceTiming.domContentLoadedEventStart`** read-only property returns an `unsigned long long` representing the moment, in milliseconds since the UNIX epoch, right before the parser sent the Document/DOMContentLoaded_event event, that is right after all the scripts that need to be executed right after parsing has been executed.
|
|
23966
23995
|
* @deprecated
|
|
23967
23996
|
*
|
|
23968
23997
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceTiming/domContentLoadedEventStart)
|
|
@@ -23976,7 +24005,7 @@ interface PerformanceTiming {
|
|
|
23976
24005
|
*/
|
|
23977
24006
|
readonly domInteractive: number;
|
|
23978
24007
|
/**
|
|
23979
|
-
* The legacy **`PerformanceTiming.domLoading`** read-only property returns an `unsigned long long` representing the moment, in milliseconds since the UNIX epoch, when the parser started its work, that is when its corresponding Document/readystatechange_event event is thrown.
|
|
24008
|
+
* The legacy **`PerformanceTiming.domLoading`** read-only property returns an `unsigned long long` representing the moment, in milliseconds since the UNIX epoch, when the parser started its work, that is when its Document.readyState changes to `'loading'` and the corresponding Document/readystatechange_event event is thrown.
|
|
23980
24009
|
* @deprecated
|
|
23981
24010
|
*
|
|
23982
24011
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceTiming/domLoading)
|
|
@@ -24127,7 +24156,7 @@ interface PermissionStatus extends EventTarget {
|
|
|
24127
24156
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PermissionStatus/change_event) */
|
|
24128
24157
|
onchange: ((this: PermissionStatus, ev: Event) => any) | null;
|
|
24129
24158
|
/**
|
|
24130
|
-
* The **`state`** read-only property of the
|
|
24159
|
+
* The **`state`** read-only property of the PermissionStatus interface returns the state of a requested permission.
|
|
24131
24160
|
*
|
|
24132
24161
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PermissionStatus/state)
|
|
24133
24162
|
*/
|
|
@@ -24144,7 +24173,7 @@ declare var PermissionStatus: {
|
|
|
24144
24173
|
};
|
|
24145
24174
|
|
|
24146
24175
|
/**
|
|
24147
|
-
* The **`Permissions`** interface of the Permissions API provides the core Permission API functionality, such as methods for querying and revoking permissions
|
|
24176
|
+
* The **`Permissions`** interface of the Permissions API provides the core Permission API functionality, such as methods for querying and revoking permissions
|
|
24148
24177
|
*
|
|
24149
24178
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Permissions)
|
|
24150
24179
|
*/
|
|
@@ -24302,13 +24331,13 @@ interface PointerEvent extends MouseEvent {
|
|
|
24302
24331
|
*/
|
|
24303
24332
|
readonly azimuthAngle: number;
|
|
24304
24333
|
/**
|
|
24305
|
-
* The **`height`** read-only property of the geometry, along the y-axis (in CSS pixels).
|
|
24334
|
+
* The **`height`** read-only property of the PointerEvent interface represents the height of the pointer's contact geometry, along the y-axis (in CSS pixels).
|
|
24306
24335
|
*
|
|
24307
24336
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/height)
|
|
24308
24337
|
*/
|
|
24309
24338
|
readonly height: number;
|
|
24310
24339
|
/**
|
|
24311
|
-
* The **`isPrimary`** read-only property of the created the event is the _primary_ pointer.
|
|
24340
|
+
* The **`isPrimary`** read-only property of the PointerEvent interface indicates whether or not the pointer device that created the event is the _primary_ pointer.
|
|
24312
24341
|
*
|
|
24313
24342
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/isPrimary)
|
|
24314
24343
|
*/
|
|
@@ -24320,25 +24349,25 @@ interface PointerEvent extends MouseEvent {
|
|
|
24320
24349
|
*/
|
|
24321
24350
|
readonly persistentDeviceId: number;
|
|
24322
24351
|
/**
|
|
24323
|
-
* The **`pointerId`** read-only property of the event.
|
|
24352
|
+
* The **`pointerId`** read-only property of the PointerEvent interface is an identifier assigned to a given pointer event.
|
|
24324
24353
|
*
|
|
24325
24354
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/pointerId)
|
|
24326
24355
|
*/
|
|
24327
24356
|
readonly pointerId: number;
|
|
24328
24357
|
/**
|
|
24329
|
-
* The **`pointerType`** read-only property of the that caused a given pointer event.
|
|
24358
|
+
* The **`pointerType`** read-only property of the PointerEvent interface indicates the device type (mouse, pen, or touch) that caused a given pointer event.
|
|
24330
24359
|
*
|
|
24331
24360
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/pointerType)
|
|
24332
24361
|
*/
|
|
24333
24362
|
readonly pointerType: string;
|
|
24334
24363
|
/**
|
|
24335
|
-
* The **`pressure`** read-only property of the input.
|
|
24364
|
+
* The **`pressure`** read-only property of the PointerEvent interface indicates the normalized pressure of the pointer input.
|
|
24336
24365
|
*
|
|
24337
24366
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/pressure)
|
|
24338
24367
|
*/
|
|
24339
24368
|
readonly pressure: number;
|
|
24340
24369
|
/**
|
|
24341
|
-
* The **`tangentialPressure`** read-only property of the the pointer input (also known as barrel pressure or cylinder stress).
|
|
24370
|
+
* The **`tangentialPressure`** read-only property of the PointerEvent interface represents the normalized tangential pressure of the pointer input (also known as barrel pressure or cylinder stress).
|
|
24342
24371
|
*
|
|
24343
24372
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/tangentialPressure)
|
|
24344
24373
|
*/
|
|
@@ -24356,13 +24385,13 @@ interface PointerEvent extends MouseEvent {
|
|
|
24356
24385
|
*/
|
|
24357
24386
|
readonly tiltY: number;
|
|
24358
24387
|
/**
|
|
24359
|
-
* The **`twist`** read-only property of the (e.g., pen stylus) around its major axis, in degrees.
|
|
24388
|
+
* The **`twist`** read-only property of the PointerEvent interface represents the clockwise rotation of the pointer (e.g., pen stylus) around its major axis, in degrees.
|
|
24360
24389
|
*
|
|
24361
24390
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/twist)
|
|
24362
24391
|
*/
|
|
24363
24392
|
readonly twist: number;
|
|
24364
24393
|
/**
|
|
24365
|
-
* The **`width`** read-only property of the geometry along the x-axis, measured in CSS pixels.
|
|
24394
|
+
* The **`width`** read-only property of the PointerEvent interface represents the width of the pointer's contact geometry along the x-axis, measured in CSS pixels.
|
|
24366
24395
|
*
|
|
24367
24396
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/width)
|
|
24368
24397
|
*/
|
|
@@ -24446,7 +24475,7 @@ declare var ProcessingInstruction: {
|
|
|
24446
24475
|
*/
|
|
24447
24476
|
interface ProgressEvent<T extends EventTarget = EventTarget> extends Event {
|
|
24448
24477
|
/**
|
|
24449
|
-
* The **`ProgressEvent.lengthComputable`** read-only property is a boolean flag indicating if the resource concerned by the
|
|
24478
|
+
* The **`ProgressEvent.lengthComputable`** read-only property is a boolean flag indicating if the resource concerned by the ProgressEvent has a length that can be calculated.
|
|
24450
24479
|
*
|
|
24451
24480
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ProgressEvent/lengthComputable)
|
|
24452
24481
|
*/
|
|
@@ -24478,7 +24507,7 @@ declare var ProgressEvent: {
|
|
|
24478
24507
|
*/
|
|
24479
24508
|
interface PromiseRejectionEvent extends Event {
|
|
24480
24509
|
/**
|
|
24481
|
-
* The PromiseRejectionEvent interface's **`promise`** read-only property indicates the JavaScript rejected.
|
|
24510
|
+
* The PromiseRejectionEvent interface's **`promise`** read-only property indicates the JavaScript Promise which was rejected.
|
|
24482
24511
|
*
|
|
24483
24512
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/promise)
|
|
24484
24513
|
*/
|
|
@@ -24510,13 +24539,13 @@ interface PublicKeyCredential extends Credential {
|
|
|
24510
24539
|
*/
|
|
24511
24540
|
readonly authenticatorAttachment: string | null;
|
|
24512
24541
|
/**
|
|
24513
|
-
* The **`rawId`** read-only property of the containing the identifier of the credentials.
|
|
24542
|
+
* The **`rawId`** read-only property of the PublicKeyCredential interface is an ArrayBuffer object containing the identifier of the credentials.
|
|
24514
24543
|
*
|
|
24515
24544
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/rawId)
|
|
24516
24545
|
*/
|
|
24517
24546
|
readonly rawId: ArrayBuffer;
|
|
24518
24547
|
/**
|
|
24519
|
-
* The **`response`** read-only property of the object which is sent from the authenticator to the user agent for the creation/fetching of credentials.
|
|
24548
|
+
* The **`response`** read-only property of the PublicKeyCredential interface is an AuthenticatorResponse object which is sent from the authenticator to the user agent for the creation/fetching of credentials.
|
|
24520
24549
|
*
|
|
24521
24550
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/response)
|
|
24522
24551
|
*/
|
|
@@ -24602,7 +24631,7 @@ interface PushManager {
|
|
|
24602
24631
|
*/
|
|
24603
24632
|
getSubscription(): Promise<PushSubscription | null>;
|
|
24604
24633
|
/**
|
|
24605
|
-
* The **`permissionState()`** method of the string indicating the permission state of the push manager.
|
|
24634
|
+
* The **`permissionState()`** method of the PushManager interface returns a Promise that resolves to a string indicating the permission state of the push manager.
|
|
24606
24635
|
*
|
|
24607
24636
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushManager/permissionState)
|
|
24608
24637
|
*/
|
|
@@ -24634,13 +24663,13 @@ declare var PushManager: {
|
|
|
24634
24663
|
*/
|
|
24635
24664
|
interface PushSubscription {
|
|
24636
24665
|
/**
|
|
24637
|
-
* The **`endpoint`** read-only property of the the endpoint associated with the push subscription.
|
|
24666
|
+
* The **`endpoint`** read-only property of the PushSubscription interface returns a string containing the endpoint associated with the push subscription.
|
|
24638
24667
|
*
|
|
24639
24668
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushSubscription/endpoint)
|
|
24640
24669
|
*/
|
|
24641
24670
|
readonly endpoint: string;
|
|
24642
24671
|
/**
|
|
24643
|
-
* The **`expirationTime`** read-only property of the of the subscription expiration time associated with the push subscription, if there is one, or `null` otherwise.
|
|
24672
|
+
* The **`expirationTime`** read-only property of the PushSubscription interface returns a DOMHighResTimeStamp of the subscription expiration time associated with the push subscription, if there is one, or `null` otherwise.
|
|
24644
24673
|
*
|
|
24645
24674
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushSubscription/expirationTime)
|
|
24646
24675
|
*/
|
|
@@ -24803,7 +24832,7 @@ interface RTCDataChannelEventMap {
|
|
|
24803
24832
|
*/
|
|
24804
24833
|
interface RTCDataChannel extends EventTarget {
|
|
24805
24834
|
/**
|
|
24806
|
-
* The property **`binaryType`** on the the type of object which should be used to represent binary data received on the RTCDataChannel.
|
|
24835
|
+
* The property **`binaryType`** on the RTCDataChannel interface is a string which specifies the type of object which should be used to represent binary data received on the RTCDataChannel.
|
|
24807
24836
|
*
|
|
24808
24837
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/binaryType)
|
|
24809
24838
|
*/
|
|
@@ -24845,7 +24874,7 @@ interface RTCDataChannel extends EventTarget {
|
|
|
24845
24874
|
*/
|
|
24846
24875
|
readonly maxRetransmits: number | null;
|
|
24847
24876
|
/**
|
|
24848
|
-
* The read-only `RTCDataChannel` property **`negotiated`** indicates whether the (`true`) or by the WebRTC layer (`false`).
|
|
24877
|
+
* The read-only `RTCDataChannel` property **`negotiated`** indicates whether the RTCDataChannel's connection was negotiated by the Web app (`true`) or by the WebRTC layer (`false`).
|
|
24849
24878
|
*
|
|
24850
24879
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/negotiated)
|
|
24851
24880
|
*/
|
|
@@ -24881,13 +24910,13 @@ interface RTCDataChannel extends EventTarget {
|
|
|
24881
24910
|
*/
|
|
24882
24911
|
readonly readyState: RTCDataChannelState;
|
|
24883
24912
|
/**
|
|
24884
|
-
* The **`RTCDataChannel.close()`** method closes the
|
|
24913
|
+
* The **`RTCDataChannel.close()`** method closes the RTCDataChannel.
|
|
24885
24914
|
*
|
|
24886
24915
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/close)
|
|
24887
24916
|
*/
|
|
24888
24917
|
close(): void;
|
|
24889
24918
|
/**
|
|
24890
|
-
* The **`send()`** method of the remote peer.
|
|
24919
|
+
* The **`send()`** method of the RTCDataChannel interface sends data across the data channel to the remote peer.
|
|
24891
24920
|
*
|
|
24892
24921
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/send)
|
|
24893
24922
|
*/
|
|
@@ -24946,7 +24975,7 @@ interface RTCDtlsTransport extends EventTarget {
|
|
|
24946
24975
|
onerror: ((this: RTCDtlsTransport, ev: RTCErrorEvent) => any) | null;
|
|
24947
24976
|
onstatechange: ((this: RTCDtlsTransport, ev: Event) => any) | null;
|
|
24948
24977
|
/**
|
|
24949
|
-
* The **`state`** read-only property of the Datagram Transport Layer Security (**DTLS**) transport state.
|
|
24978
|
+
* The **`state`** read-only property of the RTCDtlsTransport interface provides information which describes a Datagram Transport Layer Security (**DTLS**) transport state.
|
|
24950
24979
|
*
|
|
24951
24980
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDtlsTransport/state)
|
|
24952
24981
|
*/
|
|
@@ -25042,19 +25071,19 @@ interface RTCError extends DOMException {
|
|
|
25042
25071
|
*/
|
|
25043
25072
|
readonly receivedAlert: number | null;
|
|
25044
25073
|
/**
|
|
25045
|
-
* The read-only **`sctpCauseCode`** property in an why the SCTP negotiation failed, if the `RTCError` represents an SCTP error.
|
|
25074
|
+
* The read-only **`sctpCauseCode`** property in an RTCError object provides the SCTP cause code explaining why the SCTP negotiation failed, if the `RTCError` represents an SCTP error.
|
|
25046
25075
|
*
|
|
25047
25076
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCError/sctpCauseCode)
|
|
25048
25077
|
*/
|
|
25049
25078
|
readonly sctpCauseCode: number | null;
|
|
25050
25079
|
/**
|
|
25051
|
-
* The RTCError interface's read-only property **`sdpLineNumber`** specifies the line number within the
|
|
25080
|
+
* The RTCError interface's read-only property **`sdpLineNumber`** specifies the line number within the SDP at which a syntax error occurred while parsing it.
|
|
25052
25081
|
*
|
|
25053
25082
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCError/sdpLineNumber)
|
|
25054
25083
|
*/
|
|
25055
25084
|
readonly sdpLineNumber: number | null;
|
|
25056
25085
|
/**
|
|
25057
|
-
* The read-only **`sentAlert`** property in an while sending data to the remote peer, if the error represents an outbound DTLS error.
|
|
25086
|
+
* The read-only **`sentAlert`** property in an RTCError object specifies the DTLS alert number occurred while sending data to the remote peer, if the error represents an outbound DTLS error.
|
|
25058
25087
|
*
|
|
25059
25088
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCError/sentAlert)
|
|
25060
25089
|
*/
|
|
@@ -25192,7 +25221,7 @@ declare var RTCIceCandidate: {
|
|
|
25192
25221
|
interface RTCIceCandidatePair {
|
|
25193
25222
|
/** The **`local`** property of the **RTCIceCandidatePair** dictionary specifies the RTCIceCandidate which describes the configuration of the local end of a viable WebRTC connection. */
|
|
25194
25223
|
local: RTCIceCandidate;
|
|
25195
|
-
/** The **`remote`** property of the **RTCIceCandidatePair** dictionary specifies the viable WebRTC connection. */
|
|
25224
|
+
/** The **`remote`** property of the **RTCIceCandidatePair** dictionary specifies the RTCIceCandidate describing the configuration of the remote end of a viable WebRTC connection. */
|
|
25196
25225
|
remote: RTCIceCandidate;
|
|
25197
25226
|
}
|
|
25198
25227
|
|
|
@@ -25280,7 +25309,7 @@ interface RTCPeerConnection extends EventTarget {
|
|
|
25280
25309
|
*/
|
|
25281
25310
|
readonly currentLocalDescription: RTCSessionDescription | null;
|
|
25282
25311
|
/**
|
|
25283
|
-
* The **`currentRemoteDescription`** read-only property of the RTCPeerConnection interface returns an
|
|
25312
|
+
* The **`currentRemoteDescription`** read-only property of the RTCPeerConnection interface returns an RTCSessionDescription object describing the remote end of the connection as it was most recently successfully negotiated since the last time the RTCPeerConnection finished negotiating and connecting to a remote peer.
|
|
25284
25313
|
*
|
|
25285
25314
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/currentRemoteDescription)
|
|
25286
25315
|
*/
|
|
@@ -25510,7 +25539,7 @@ declare var RTCPeerConnectionIceErrorEvent: {
|
|
|
25510
25539
|
*/
|
|
25511
25540
|
interface RTCPeerConnectionIceEvent extends Event {
|
|
25512
25541
|
/**
|
|
25513
|
-
* The read-only **`candidate`** property of the RTCPeerConnectionIceEvent interface returns the
|
|
25542
|
+
* The read-only **`candidate`** property of the RTCPeerConnectionIceEvent interface returns the RTCIceCandidate associated with the event.
|
|
25514
25543
|
*
|
|
25515
25544
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnectionIceEvent/candidate)
|
|
25516
25545
|
*/
|
|
@@ -25535,7 +25564,7 @@ interface RTCRtpReceiver {
|
|
|
25535
25564
|
*/
|
|
25536
25565
|
jitterBufferTarget: DOMHighResTimeStamp | null;
|
|
25537
25566
|
/**
|
|
25538
|
-
* The **`track`** read-only property of the associated with the current RTCRtpReceiver instance.
|
|
25567
|
+
* The **`track`** read-only property of the RTCRtpReceiver interface returns the MediaStreamTrack associated with the current RTCRtpReceiver instance.
|
|
25539
25568
|
*
|
|
25540
25569
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/track)
|
|
25541
25570
|
*/
|
|
@@ -25547,7 +25576,7 @@ interface RTCRtpReceiver {
|
|
|
25547
25576
|
*/
|
|
25548
25577
|
transform: RTCRtpTransform | null;
|
|
25549
25578
|
/**
|
|
25550
|
-
* The read-only **`transport`** property of an used to interact with the underlying transport over which the receiver is exchanging Real-time Transport Control Protocol (RTCP) packets.
|
|
25579
|
+
* The read-only **`transport`** property of an RTCRtpReceiver object provides the RTCDtlsTransport object used to interact with the underlying transport over which the receiver is exchanging Real-time Transport Control Protocol (RTCP) packets.
|
|
25551
25580
|
*
|
|
25552
25581
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/transport)
|
|
25553
25582
|
*/
|
|
@@ -25609,7 +25638,7 @@ declare var RTCRtpScriptTransform: {
|
|
|
25609
25638
|
*/
|
|
25610
25639
|
interface RTCRtpSender {
|
|
25611
25640
|
/**
|
|
25612
|
-
* The read-only **`dtmf`** property on the **RTCRtpSender** interface returns a over the RTCPeerConnection.
|
|
25641
|
+
* The read-only **`dtmf`** property on the **RTCRtpSender** interface returns a RTCDTMFSender object which can be used to send DTMF tones over the RTCPeerConnection.
|
|
25613
25642
|
*
|
|
25614
25643
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/dtmf)
|
|
25615
25644
|
*/
|
|
@@ -25627,7 +25656,7 @@ interface RTCRtpSender {
|
|
|
25627
25656
|
*/
|
|
25628
25657
|
transform: RTCRtpTransform | null;
|
|
25629
25658
|
/**
|
|
25630
|
-
* The read-only **`transport`** property of an used to interact with the underlying transport over which the sender is exchanging Real-time Transport Control Protocol (RTCP) packets.
|
|
25659
|
+
* The read-only **`transport`** property of an RTCRtpSender object provides the RTCDtlsTransport object used to interact with the underlying transport over which the sender is exchanging Real-time Transport Control Protocol (RTCP) packets.
|
|
25631
25660
|
*
|
|
25632
25661
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/transport)
|
|
25633
25662
|
*/
|
|
@@ -25700,13 +25729,13 @@ interface RTCRtpTransceiver {
|
|
|
25700
25729
|
*/
|
|
25701
25730
|
readonly mid: string | null;
|
|
25702
25731
|
/**
|
|
25703
|
-
* The read-only **`receiver`** property of WebRTC's RTCRtpTransceiver interface indicates the data for the transceiver's stream.
|
|
25732
|
+
* The read-only **`receiver`** property of WebRTC's RTCRtpTransceiver interface indicates the RTCRtpReceiver responsible for receiving and decoding incoming media data for the transceiver's stream.
|
|
25704
25733
|
*
|
|
25705
25734
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpTransceiver/receiver)
|
|
25706
25735
|
*/
|
|
25707
25736
|
readonly receiver: RTCRtpReceiver;
|
|
25708
25737
|
/**
|
|
25709
|
-
* The read-only **`sender`** property of WebRTC's RTCRtpTransceiver interface indicates the for the transceiver's stream.
|
|
25738
|
+
* The read-only **`sender`** property of WebRTC's RTCRtpTransceiver interface indicates the RTCRtpSender responsible for encoding and sending outgoing media data for the transceiver's stream.
|
|
25710
25739
|
*
|
|
25711
25740
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpTransceiver/sender)
|
|
25712
25741
|
*/
|
|
@@ -25718,7 +25747,7 @@ interface RTCRtpTransceiver {
|
|
|
25718
25747
|
*/
|
|
25719
25748
|
setCodecPreferences(codecs: RTCRtpCodec[]): void;
|
|
25720
25749
|
/**
|
|
25721
|
-
* The **`stop()`** method in the RTCRtpTransceiver interface permanently stops the transceiver by stopping both the associated RTCRtpSender and
|
|
25750
|
+
* The **`stop()`** method in the RTCRtpTransceiver interface permanently stops the transceiver by stopping both the associated RTCRtpSender and RTCRtpReceiver.
|
|
25722
25751
|
*
|
|
25723
25752
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpTransceiver/stop)
|
|
25724
25753
|
*/
|
|
@@ -25796,7 +25825,7 @@ interface RTCSessionDescription {
|
|
|
25796
25825
|
*/
|
|
25797
25826
|
readonly type: RTCSdpType;
|
|
25798
25827
|
/**
|
|
25799
|
-
* The **`RTCSessionDescription.toJSON()`** method generates a
|
|
25828
|
+
* The **`RTCSessionDescription.toJSON()`** method generates a JSON description of the object.
|
|
25800
25829
|
*
|
|
25801
25830
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSessionDescription/toJSON)
|
|
25802
25831
|
*/
|
|
@@ -25829,25 +25858,25 @@ declare var RTCStatsReport: {
|
|
|
25829
25858
|
*/
|
|
25830
25859
|
interface RTCTrackEvent extends Event {
|
|
25831
25860
|
/**
|
|
25832
|
-
* The read-only **`receiver`** property of the RTCTrackEvent interface indicates the
|
|
25861
|
+
* The read-only **`receiver`** property of the RTCTrackEvent interface indicates the RTCRtpReceiver which is used to receive data containing media for the RTCTrackEvent.track to which the event refers.
|
|
25833
25862
|
*
|
|
25834
25863
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCTrackEvent/receiver)
|
|
25835
25864
|
*/
|
|
25836
25865
|
readonly receiver: RTCRtpReceiver;
|
|
25837
25866
|
/**
|
|
25838
|
-
* The WebRTC API interface RTCTrackEvent's read-only **`streams`** property specifies an array of track being added to the RTCPeerConnection.
|
|
25867
|
+
* The WebRTC API interface RTCTrackEvent's read-only **`streams`** property specifies an array of MediaStream objects, one for each of the streams that comprise the track being added to the RTCPeerConnection.
|
|
25839
25868
|
*
|
|
25840
25869
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCTrackEvent/streams)
|
|
25841
25870
|
*/
|
|
25842
25871
|
readonly streams: ReadonlyArray<MediaStream>;
|
|
25843
25872
|
/**
|
|
25844
|
-
* The
|
|
25873
|
+
* The WebRTC API interface RTCTrackEvent's read-only **`track`** property specifies the MediaStreamTrack that has been added to the RTCPeerConnection.
|
|
25845
25874
|
*
|
|
25846
25875
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCTrackEvent/track)
|
|
25847
25876
|
*/
|
|
25848
25877
|
readonly track: MediaStreamTrack;
|
|
25849
25878
|
/**
|
|
25850
|
-
* The WebRTC API interface RTCTrackEvent's read-only **`transceiver`** property indicates the
|
|
25879
|
+
* The WebRTC API interface RTCTrackEvent's read-only **`transceiver`** property indicates the RTCRtpTransceiver affiliated with the event's RTCTrackEvent.track.
|
|
25851
25880
|
*
|
|
25852
25881
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCTrackEvent/transceiver)
|
|
25853
25882
|
*/
|
|
@@ -25897,13 +25926,13 @@ interface Range extends AbstractRange {
|
|
|
25897
25926
|
*/
|
|
25898
25927
|
cloneContents(): DocumentFragment;
|
|
25899
25928
|
/**
|
|
25900
|
-
* The **`Range.cloneRange()`** method returns a
|
|
25929
|
+
* The **`Range.cloneRange()`** method returns a Range object with boundary points identical to the cloned Range.
|
|
25901
25930
|
*
|
|
25902
25931
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/cloneRange)
|
|
25903
25932
|
*/
|
|
25904
25933
|
cloneRange(): Range;
|
|
25905
25934
|
/**
|
|
25906
|
-
* The **`collapse()`** method of the Range interface collapses the
|
|
25935
|
+
* The **`collapse()`** method of the Range interface collapses the Range to one of its boundary points.
|
|
25907
25936
|
*
|
|
25908
25937
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/collapse)
|
|
25909
25938
|
*/
|
|
@@ -25921,7 +25950,7 @@ interface Range extends AbstractRange {
|
|
|
25921
25950
|
*/
|
|
25922
25951
|
comparePoint(node: Node, offset: number): number;
|
|
25923
25952
|
/**
|
|
25924
|
-
* The **`Range.createContextualFragment()`** method returns a XML fragment parsing algorithm with the start of the range (the _parent_ of the selected node) as the context node.
|
|
25953
|
+
* The **`Range.createContextualFragment()`** method returns a DocumentFragment by invoking the HTML fragment parsing algorithm or the XML fragment parsing algorithm with the start of the range (the _parent_ of the selected node) as the context node.
|
|
25925
25954
|
*
|
|
25926
25955
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/createContextualFragment)
|
|
25927
25956
|
*/
|
|
@@ -25975,7 +26004,7 @@ interface Range extends AbstractRange {
|
|
|
25975
26004
|
*/
|
|
25976
26005
|
isPointInRange(node: Node, offset: number): boolean;
|
|
25977
26006
|
/**
|
|
25978
|
-
* The **`Range.selectNode()`** method sets the
|
|
26007
|
+
* The **`Range.selectNode()`** method sets the Range to contain the Node and its contents.
|
|
25979
26008
|
*
|
|
25980
26009
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/selectNode)
|
|
25981
26010
|
*/
|
|
@@ -25993,7 +26022,7 @@ interface Range extends AbstractRange {
|
|
|
25993
26022
|
*/
|
|
25994
26023
|
setEnd(node: Node, offset: number): void;
|
|
25995
26024
|
/**
|
|
25996
|
-
* The **`Range.setEndAfter()`** method sets the end position of a
|
|
26025
|
+
* The **`Range.setEndAfter()`** method sets the end position of a Range relative to another Node.
|
|
25997
26026
|
*
|
|
25998
26027
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/setEndAfter)
|
|
25999
26028
|
*/
|
|
@@ -26005,7 +26034,7 @@ interface Range extends AbstractRange {
|
|
|
26005
26034
|
*/
|
|
26006
26035
|
setEndBefore(node: Node): void;
|
|
26007
26036
|
/**
|
|
26008
|
-
* The **`Range.setStart()`** method sets the start position of a
|
|
26037
|
+
* The **`Range.setStart()`** method sets the start position of a Range.
|
|
26009
26038
|
*
|
|
26010
26039
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/setStart)
|
|
26011
26040
|
*/
|
|
@@ -26126,7 +26155,7 @@ interface ReadableStream<R = any> {
|
|
|
26126
26155
|
*/
|
|
26127
26156
|
pipeTo(destination: WritableStream<R>, options?: StreamPipeOptions): Promise<void>;
|
|
26128
26157
|
/**
|
|
26129
|
-
* The **`tee()`** method of the two-element array containing the two resulting branches as new ReadableStream instances.
|
|
26158
|
+
* The **`tee()`** method of the ReadableStream interface tees the current readable stream, returning a two-element array containing the two resulting branches as new ReadableStream instances.
|
|
26130
26159
|
*
|
|
26131
26160
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream/tee)
|
|
26132
26161
|
*/
|
|
@@ -26203,7 +26232,7 @@ declare var ReadableStreamBYOBRequest: {
|
|
|
26203
26232
|
*/
|
|
26204
26233
|
interface ReadableStreamDefaultController<R = any> {
|
|
26205
26234
|
/**
|
|
26206
|
-
* The **`desiredSize`** read-only property of the required to fill the stream's internal queue.
|
|
26235
|
+
* The **`desiredSize`** read-only property of the ReadableStreamDefaultController interface returns the desired size required to fill the stream's internal queue.
|
|
26207
26236
|
*
|
|
26208
26237
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultController/desiredSize)
|
|
26209
26238
|
*/
|
|
@@ -26215,13 +26244,13 @@ interface ReadableStreamDefaultController<R = any> {
|
|
|
26215
26244
|
*/
|
|
26216
26245
|
close(): void;
|
|
26217
26246
|
/**
|
|
26218
|
-
* The **`enqueue()`** method of the
|
|
26247
|
+
* The **`enqueue()`** method of the ReadableStreamDefaultController interface enqueues a given chunk in the associated stream.
|
|
26219
26248
|
*
|
|
26220
26249
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultController/enqueue)
|
|
26221
26250
|
*/
|
|
26222
26251
|
enqueue(chunk?: R): void;
|
|
26223
26252
|
/**
|
|
26224
|
-
* The **`error()`** method of the with the associated stream to error.
|
|
26253
|
+
* The **`error()`** method of the ReadableStreamDefaultController interface causes any future interactions with the associated stream to error.
|
|
26225
26254
|
*
|
|
26226
26255
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultController/error)
|
|
26227
26256
|
*/
|
|
@@ -26325,19 +26354,19 @@ declare var RemotePlayback: {
|
|
|
26325
26354
|
*/
|
|
26326
26355
|
interface ReportingObserver {
|
|
26327
26356
|
/**
|
|
26328
|
-
* The **`disconnect()`** method of the previously started observing from collecting reports.
|
|
26357
|
+
* The **`disconnect()`** method of the ReportingObserver interface stops a reporting observer that had previously started observing from collecting reports.
|
|
26329
26358
|
*
|
|
26330
26359
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportingObserver/disconnect)
|
|
26331
26360
|
*/
|
|
26332
26361
|
disconnect(): void;
|
|
26333
26362
|
/**
|
|
26334
|
-
* The **`observe()`** method of the collecting reports in its report queue.
|
|
26363
|
+
* The **`observe()`** method of the ReportingObserver interface instructs a reporting observer to start collecting reports in its report queue.
|
|
26335
26364
|
*
|
|
26336
26365
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportingObserver/observe)
|
|
26337
26366
|
*/
|
|
26338
26367
|
observe(): void;
|
|
26339
26368
|
/**
|
|
26340
|
-
* The **`takeRecords()`** method of the in the observer's report queue, and empties the queue.
|
|
26369
|
+
* The **`takeRecords()`** method of the ReportingObserver interface returns the current list of reports contained in the observer's report queue, and empties the queue.
|
|
26341
26370
|
*
|
|
26342
26371
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportingObserver/takeRecords)
|
|
26343
26372
|
*/
|
|
@@ -26374,7 +26403,7 @@ interface Request extends Body {
|
|
|
26374
26403
|
*/
|
|
26375
26404
|
readonly destination: RequestDestination;
|
|
26376
26405
|
/**
|
|
26377
|
-
* The **`headers`** read-only property of the with the request.
|
|
26406
|
+
* The **`headers`** read-only property of the Request interface contains the Headers object associated with the request.
|
|
26378
26407
|
*
|
|
26379
26408
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/headers)
|
|
26380
26409
|
*/
|
|
@@ -26392,7 +26421,7 @@ interface Request extends Body {
|
|
|
26392
26421
|
*/
|
|
26393
26422
|
readonly keepalive: boolean;
|
|
26394
26423
|
/**
|
|
26395
|
-
* The **`method`** read-only property of the
|
|
26424
|
+
* The **`method`** read-only property of the Request interface contains the request's method (`GET`, `POST`, etc.)
|
|
26396
26425
|
*
|
|
26397
26426
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/method)
|
|
26398
26427
|
*/
|
|
@@ -26410,13 +26439,13 @@ interface Request extends Body {
|
|
|
26410
26439
|
*/
|
|
26411
26440
|
readonly redirect: RequestRedirect;
|
|
26412
26441
|
/**
|
|
26413
|
-
* The **`referrer`** read-only property of the Request.
|
|
26442
|
+
* The **`referrer`** read-only property of the Request interface is set by the user agent to be the referrer of the Request.
|
|
26414
26443
|
*
|
|
26415
26444
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/referrer)
|
|
26416
26445
|
*/
|
|
26417
26446
|
readonly referrer: string;
|
|
26418
26447
|
/**
|
|
26419
|
-
* The **`referrerPolicy`** read-only property of the referrer information, sent in the Referer header, should be included with the request.
|
|
26448
|
+
* The **`referrerPolicy`** read-only property of the Request interface returns the referrer policy, which governs what referrer information, sent in the Referer header, should be included with the request.
|
|
26420
26449
|
*
|
|
26421
26450
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/referrerPolicy)
|
|
26422
26451
|
*/
|
|
@@ -26453,19 +26482,19 @@ declare var Request: {
|
|
|
26453
26482
|
*/
|
|
26454
26483
|
interface ResizeObserver {
|
|
26455
26484
|
/**
|
|
26456
|
-
* The **`disconnect()`** method of the or SVGElement targets.
|
|
26485
|
+
* The **`disconnect()`** method of the ResizeObserver interface unobserves all observed Element or SVGElement targets.
|
|
26457
26486
|
*
|
|
26458
26487
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserver/disconnect)
|
|
26459
26488
|
*/
|
|
26460
26489
|
disconnect(): void;
|
|
26461
26490
|
/**
|
|
26462
|
-
* The **`observe()`** method of the
|
|
26491
|
+
* The **`observe()`** method of the ResizeObserver interface starts observing the specified Element or SVGElement.
|
|
26463
26492
|
*
|
|
26464
26493
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserver/observe)
|
|
26465
26494
|
*/
|
|
26466
26495
|
observe(target: Element, options?: ResizeObserverOptions): void;
|
|
26467
26496
|
/**
|
|
26468
|
-
* The **`unobserve()`** method of the
|
|
26497
|
+
* The **`unobserve()`** method of the ResizeObserver interface ends the observing of a specified Element or SVGElement.
|
|
26469
26498
|
*
|
|
26470
26499
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserver/unobserve)
|
|
26471
26500
|
*/
|
|
@@ -26496,7 +26525,7 @@ interface ResizeObserverEntry {
|
|
|
26496
26525
|
*/
|
|
26497
26526
|
readonly contentBoxSize: ReadonlyArray<ResizeObserverSize>;
|
|
26498
26527
|
/**
|
|
26499
|
-
* The `contentRect` read-only property of the object containing the new size of the observed element when the callback is run.
|
|
26528
|
+
* The `contentRect` read-only property of the ResizeObserverEntry interface returns a DOMRectReadOnly object containing the new size of the observed element when the callback is run.
|
|
26500
26529
|
*
|
|
26501
26530
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserverEntry/contentRect)
|
|
26502
26531
|
*/
|
|
@@ -26508,7 +26537,7 @@ interface ResizeObserverEntry {
|
|
|
26508
26537
|
*/
|
|
26509
26538
|
readonly devicePixelContentBoxSize: ReadonlyArray<ResizeObserverSize>;
|
|
26510
26539
|
/**
|
|
26511
|
-
* The **`target`** read-only property of the
|
|
26540
|
+
* The **`target`** read-only property of the ResizeObserverEntry interface returns a reference to the Element or SVGElement that is being observed.
|
|
26512
26541
|
*
|
|
26513
26542
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserverEntry/target)
|
|
26514
26543
|
*/
|
|
@@ -26552,7 +26581,7 @@ declare var ResizeObserverSize: {
|
|
|
26552
26581
|
*/
|
|
26553
26582
|
interface Response extends Body {
|
|
26554
26583
|
/**
|
|
26555
|
-
* The **`headers`** read-only property of the with the response.
|
|
26584
|
+
* The **`headers`** read-only property of the Response interface contains the Headers object associated with the response.
|
|
26556
26585
|
*
|
|
26557
26586
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/headers)
|
|
26558
26587
|
*/
|
|
@@ -27138,7 +27167,7 @@ declare var SVGAnimationElement: {
|
|
|
27138
27167
|
*/
|
|
27139
27168
|
interface SVGCircleElement extends SVGGeometryElement {
|
|
27140
27169
|
/**
|
|
27141
|
-
* The **`cx`** read-only property of the SVGCircleElement interface reflects the cx attribute of a circle element and by that defines the x-coordinate of the circle's center.<
|
|
27170
|
+
* The **`cx`** read-only property of the SVGCircleElement interface reflects the cx attribute of a circle element and by that defines the x-coordinate of the circle's center.<
|
|
27142
27171
|
*
|
|
27143
27172
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGCircleElement/cx)
|
|
27144
27173
|
*/
|
|
@@ -28518,7 +28547,7 @@ declare var SVGGElement: {
|
|
|
28518
28547
|
*/
|
|
28519
28548
|
interface SVGGeometryElement extends SVGGraphicsElement {
|
|
28520
28549
|
/**
|
|
28521
|
-
* The **`SVGGeometryElement.pathLength`** property reflects the
|
|
28550
|
+
* The **`SVGGeometryElement.pathLength`** property reflects the pathLength attribute and returns the total length of the path, in user units.
|
|
28522
28551
|
*
|
|
28523
28552
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGeometryElement/pathLength)
|
|
28524
28553
|
*/
|
|
@@ -28655,31 +28684,31 @@ interface SVGImageElement extends SVGGraphicsElement, SVGURIReference {
|
|
|
28655
28684
|
*/
|
|
28656
28685
|
crossOrigin: string | null;
|
|
28657
28686
|
/**
|
|
28658
|
-
* The **`height`** read-only property of the corresponding to the height attribute of the given
|
|
28687
|
+
* The **`height`** read-only property of the SVGImageElement interface returns an SVGAnimatedLength corresponding to the height attribute of the given image element.
|
|
28659
28688
|
*
|
|
28660
28689
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/height)
|
|
28661
28690
|
*/
|
|
28662
28691
|
readonly height: SVGAnimatedLength;
|
|
28663
28692
|
/**
|
|
28664
|
-
* The **`preserveAspectRatio`** read-only property of the SVGImageElement interface returns an element.
|
|
28693
|
+
* The **`preserveAspectRatio`** read-only property of the SVGImageElement interface returns an SVGAnimatedPreserveAspectRatio corresponding to the preserveAspectRatio attribute of the given image element.
|
|
28665
28694
|
*
|
|
28666
28695
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/preserveAspectRatio)
|
|
28667
28696
|
*/
|
|
28668
28697
|
readonly preserveAspectRatio: SVGAnimatedPreserveAspectRatio;
|
|
28669
28698
|
/**
|
|
28670
|
-
* The **`width`** read-only property of the corresponding to the width attribute of the given image element.
|
|
28699
|
+
* The **`width`** read-only property of the SVGImageElement interface returns an SVGAnimatedLength corresponding to the width attribute of the given image element.
|
|
28671
28700
|
*
|
|
28672
28701
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/width)
|
|
28673
28702
|
*/
|
|
28674
28703
|
readonly width: SVGAnimatedLength;
|
|
28675
28704
|
/**
|
|
28676
|
-
* The **`x`** read-only property of the corresponding to the x attribute of the given image element.
|
|
28705
|
+
* The **`x`** read-only property of the SVGImageElement interface returns an SVGAnimatedLength corresponding to the x attribute of the given image element.
|
|
28677
28706
|
*
|
|
28678
28707
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/x)
|
|
28679
28708
|
*/
|
|
28680
28709
|
readonly x: SVGAnimatedLength;
|
|
28681
28710
|
/**
|
|
28682
|
-
* The **`y`** read-only property of the corresponding to the y attribute of the given image element.
|
|
28711
|
+
* The **`y`** read-only property of the SVGImageElement interface returns an SVGAnimatedLength corresponding to the y attribute of the given image element.
|
|
28683
28712
|
*
|
|
28684
28713
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/y)
|
|
28685
28714
|
*/
|
|
@@ -30321,7 +30350,7 @@ declare var SVGUnitTypes: {
|
|
|
30321
30350
|
};
|
|
30322
30351
|
|
|
30323
30352
|
/**
|
|
30324
|
-
*
|
|
30353
|
+
* ## SVG use DOM interface
|
|
30325
30354
|
*
|
|
30326
30355
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement)
|
|
30327
30356
|
*/
|
|
@@ -30409,7 +30438,7 @@ interface Screen {
|
|
|
30409
30438
|
*/
|
|
30410
30439
|
readonly height: number;
|
|
30411
30440
|
/**
|
|
30412
|
-
* The **`orientation`** read-only property of the
|
|
30441
|
+
* The **`orientation`** read-only property of the Screen interface returns the current orientation of the screen.
|
|
30413
30442
|
*
|
|
30414
30443
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Screen/orientation)
|
|
30415
30444
|
*/
|
|
@@ -30444,7 +30473,7 @@ interface ScreenOrientationEventMap {
|
|
|
30444
30473
|
*/
|
|
30445
30474
|
interface ScreenOrientation extends EventTarget {
|
|
30446
30475
|
/**
|
|
30447
|
-
* The **`angle`** read-only property of the angle.
|
|
30476
|
+
* The **`angle`** read-only property of the ScreenOrientation interface returns the document's current orientation angle.
|
|
30448
30477
|
*
|
|
30449
30478
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/angle)
|
|
30450
30479
|
*/
|
|
@@ -30452,13 +30481,13 @@ interface ScreenOrientation extends EventTarget {
|
|
|
30452
30481
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/change_event) */
|
|
30453
30482
|
onchange: ((this: ScreenOrientation, ev: Event) => any) | null;
|
|
30454
30483
|
/**
|
|
30455
|
-
* The **`type`** read-only property of the type, one of `portrait-primary`, `portrait-secondary`, `landscape-primary`, or `landscape-secondary`.
|
|
30484
|
+
* The **`type`** read-only property of the ScreenOrientation interface returns the document's current orientation type, one of `portrait-primary`, `portrait-secondary`, `landscape-primary`, or `landscape-secondary`.
|
|
30456
30485
|
*
|
|
30457
30486
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/type)
|
|
30458
30487
|
*/
|
|
30459
30488
|
readonly type: OrientationType;
|
|
30460
30489
|
/**
|
|
30461
|
-
* The **`unlock()`** method of the document from its default orientation.
|
|
30490
|
+
* The **`unlock()`** method of the ScreenOrientation interface unlocks the orientation of the containing document from its default orientation.
|
|
30462
30491
|
*
|
|
30463
30492
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/unlock)
|
|
30464
30493
|
*/
|
|
@@ -30517,13 +30546,13 @@ declare var ScriptProcessorNode: {
|
|
|
30517
30546
|
*/
|
|
30518
30547
|
interface ScrollTimeline extends AnimationTimeline {
|
|
30519
30548
|
/**
|
|
30520
|
-
* The **`axis`** read-only property of the
|
|
30549
|
+
* The **`axis`** read-only property of the ScrollTimeline interface returns an enumerated value representing the scroll axis that is driving the progress of the timeline.
|
|
30521
30550
|
*
|
|
30522
30551
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScrollTimeline/axis)
|
|
30523
30552
|
*/
|
|
30524
30553
|
readonly axis: ScrollAxis;
|
|
30525
30554
|
/**
|
|
30526
|
-
* The **`source`** read-only property of the
|
|
30555
|
+
* The **`source`** read-only property of the ScrollTimeline interface returns a reference to the scrollable element (_scroller_) whose scroll position is driving the progress of the timeline and therefore the animation.
|
|
30527
30556
|
*
|
|
30528
30557
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScrollTimeline/source)
|
|
30529
30558
|
*/
|
|
@@ -30633,7 +30662,7 @@ interface Selection {
|
|
|
30633
30662
|
*/
|
|
30634
30663
|
readonly anchorNode: Node | null;
|
|
30635
30664
|
/**
|
|
30636
|
-
* The **`Selection.anchorOffset`** read-only property returns the number of characters that the selection's anchor is offset within the
|
|
30665
|
+
* The **`Selection.anchorOffset`** read-only property returns the number of characters that the selection's anchor is offset within the Selection.anchorNode if said node is of type Text, CDATASection or Comment.
|
|
30637
30666
|
*
|
|
30638
30667
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/anchorOffset)
|
|
30639
30668
|
*/
|
|
@@ -30651,7 +30680,7 @@ interface Selection {
|
|
|
30651
30680
|
*/
|
|
30652
30681
|
readonly focusNode: Node | null;
|
|
30653
30682
|
/**
|
|
30654
|
-
* The **`Selection.focusOffset`** read-only property returns the number of characters that the selection's focus is offset within the
|
|
30683
|
+
* The **`Selection.focusOffset`** read-only property returns the number of characters that the selection's focus is offset within the Selection.focusNode if said node is of type Text, CDATASection or Comment.
|
|
30655
30684
|
*
|
|
30656
30685
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/focusOffset)
|
|
30657
30686
|
*/
|
|
@@ -30669,13 +30698,13 @@ interface Selection {
|
|
|
30669
30698
|
*/
|
|
30670
30699
|
readonly rangeCount: number;
|
|
30671
30700
|
/**
|
|
30672
|
-
* The **`type`** read-only property of the type of the current selection.
|
|
30701
|
+
* The **`type`** read-only property of the Selection interface returns a string describing the type of the current selection.
|
|
30673
30702
|
*
|
|
30674
30703
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/type)
|
|
30675
30704
|
*/
|
|
30676
30705
|
readonly type: string;
|
|
30677
30706
|
/**
|
|
30678
|
-
* The **`Selection.addRange()`** method adds a
|
|
30707
|
+
* The **`Selection.addRange()`** method adds a Range to a Selection.
|
|
30679
30708
|
*
|
|
30680
30709
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/addRange)
|
|
30681
30710
|
*/
|
|
@@ -30705,7 +30734,7 @@ interface Selection {
|
|
|
30705
30734
|
*/
|
|
30706
30735
|
containsNode(node: Node, allowPartialContainment?: boolean): boolean;
|
|
30707
30736
|
/**
|
|
30708
|
-
* The **`deleteFromDocument()`** method of the
|
|
30737
|
+
* The **`deleteFromDocument()`** method of the Selection interface invokes the Range.deleteContents() method on the selected Range.
|
|
30709
30738
|
*
|
|
30710
30739
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/deleteFromDocument)
|
|
30711
30740
|
*/
|
|
@@ -30798,7 +30827,7 @@ interface ServiceWorker extends EventTarget, AbstractWorker {
|
|
|
30798
30827
|
*/
|
|
30799
30828
|
readonly scriptURL: string;
|
|
30800
30829
|
/**
|
|
30801
|
-
* The **`state`** read-only property of the of the service worker.
|
|
30830
|
+
* The **`state`** read-only property of the ServiceWorker interface returns a string representing the current state of the service worker.
|
|
30802
30831
|
*
|
|
30803
30832
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorker/state)
|
|
30804
30833
|
*/
|
|
@@ -30853,13 +30882,13 @@ interface ServiceWorkerContainer extends EventTarget {
|
|
|
30853
30882
|
*/
|
|
30854
30883
|
readonly ready: Promise<ServiceWorkerRegistration>;
|
|
30855
30884
|
/**
|
|
30856
|
-
* The **`getRegistration()`** method of the client URL.
|
|
30885
|
+
* The **`getRegistration()`** method of the ServiceWorkerContainer interface gets a ServiceWorkerRegistration object whose scope URL matches the provided client URL.
|
|
30857
30886
|
*
|
|
30858
30887
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/getRegistration)
|
|
30859
30888
|
*/
|
|
30860
30889
|
getRegistration(clientURL?: string | URL): Promise<ServiceWorkerRegistration | undefined>;
|
|
30861
30890
|
/**
|
|
30862
|
-
* The **`getRegistrations()`** method of the `ServiceWorkerContainer`, in an array.
|
|
30891
|
+
* The **`getRegistrations()`** method of the ServiceWorkerContainer interface gets all ServiceWorkerRegistrations associated with a `ServiceWorkerContainer`, in an array.
|
|
30863
30892
|
*
|
|
30864
30893
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/getRegistrations)
|
|
30865
30894
|
*/
|
|
@@ -30899,7 +30928,7 @@ interface ServiceWorkerRegistrationEventMap {
|
|
|
30899
30928
|
*/
|
|
30900
30929
|
interface ServiceWorkerRegistration extends EventTarget {
|
|
30901
30930
|
/**
|
|
30902
|
-
* The **`active`** read-only property of the
|
|
30931
|
+
* The **`active`** read-only property of the ServiceWorkerRegistration interface returns a service worker whose ServiceWorker.state is `activating` or `activated`.
|
|
30903
30932
|
*
|
|
30904
30933
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/active)
|
|
30905
30934
|
*/
|
|
@@ -30911,7 +30940,7 @@ interface ServiceWorkerRegistration extends EventTarget {
|
|
|
30911
30940
|
*/
|
|
30912
30941
|
readonly cookies: CookieStoreManager;
|
|
30913
30942
|
/**
|
|
30914
|
-
* The **`installing`** read-only property of the
|
|
30943
|
+
* The **`installing`** read-only property of the ServiceWorkerRegistration interface returns a service worker whose ServiceWorker.state is `installing`.
|
|
30915
30944
|
*
|
|
30916
30945
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/installing)
|
|
30917
30946
|
*/
|
|
@@ -30925,7 +30954,7 @@ interface ServiceWorkerRegistration extends EventTarget {
|
|
|
30925
30954
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/updatefound_event) */
|
|
30926
30955
|
onupdatefound: ((this: ServiceWorkerRegistration, ev: Event) => any) | null;
|
|
30927
30956
|
/**
|
|
30928
|
-
* The **`pushManager`** read-only property of the support for subscribing, getting an active subscription, and accessing push permission status.
|
|
30957
|
+
* The **`pushManager`** read-only property of the ServiceWorkerRegistration interface returns a reference to the PushManager interface for managing push subscriptions; this includes support for subscribing, getting an active subscription, and accessing push permission status.
|
|
30929
30958
|
*
|
|
30930
30959
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/pushManager)
|
|
30931
30960
|
*/
|
|
@@ -30943,7 +30972,7 @@ interface ServiceWorkerRegistration extends EventTarget {
|
|
|
30943
30972
|
*/
|
|
30944
30973
|
readonly updateViaCache: ServiceWorkerUpdateViaCache;
|
|
30945
30974
|
/**
|
|
30946
|
-
* The **`waiting`** read-only property of the
|
|
30975
|
+
* The **`waiting`** read-only property of the ServiceWorkerRegistration interface returns a service worker whose ServiceWorker.state is `installed`.
|
|
30947
30976
|
*
|
|
30948
30977
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/waiting)
|
|
30949
30978
|
*/
|
|
@@ -30955,19 +30984,19 @@ interface ServiceWorkerRegistration extends EventTarget {
|
|
|
30955
30984
|
*/
|
|
30956
30985
|
getNotifications(filter?: GetNotificationOptions): Promise<Notification[]>;
|
|
30957
30986
|
/**
|
|
30958
|
-
* The **`showNotification()`** method of the service worker.
|
|
30987
|
+
* The **`showNotification()`** method of the ServiceWorkerRegistration interface creates a notification on an active service worker.
|
|
30959
30988
|
*
|
|
30960
30989
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/showNotification)
|
|
30961
30990
|
*/
|
|
30962
30991
|
showNotification(title: string, options?: NotificationOptions): Promise<void>;
|
|
30963
30992
|
/**
|
|
30964
|
-
* The **`unregister()`** method of the registration and returns a Promise.
|
|
30993
|
+
* The **`unregister()`** method of the ServiceWorkerRegistration interface unregisters the service worker registration and returns a Promise.
|
|
30965
30994
|
*
|
|
30966
30995
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/unregister)
|
|
30967
30996
|
*/
|
|
30968
30997
|
unregister(): Promise<boolean>;
|
|
30969
30998
|
/**
|
|
30970
|
-
* The **`update()`** method of the worker.
|
|
30999
|
+
* The **`update()`** method of the ServiceWorkerRegistration interface attempts to update the service worker.
|
|
30971
31000
|
*
|
|
30972
31001
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/update)
|
|
30973
31002
|
*/
|
|
@@ -31102,19 +31131,19 @@ interface SourceBufferEventMap {
|
|
|
31102
31131
|
*/
|
|
31103
31132
|
interface SourceBuffer extends EventTarget {
|
|
31104
31133
|
/**
|
|
31105
|
-
* The **`appendWindowEnd`** property of the timestamp range that can be used to filter what media data is appended to the `SourceBuffer`.
|
|
31134
|
+
* The **`appendWindowEnd`** property of the SourceBuffer interface controls the timestamp for the end of the append window, a timestamp range that can be used to filter what media data is appended to the `SourceBuffer`.
|
|
31106
31135
|
*
|
|
31107
31136
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/appendWindowEnd)
|
|
31108
31137
|
*/
|
|
31109
31138
|
appendWindowEnd: number;
|
|
31110
31139
|
/**
|
|
31111
|
-
* The **`appendWindowStart`** property of the timestamp range that can be used to filter what media data is appended to the `SourceBuffer`.
|
|
31140
|
+
* The **`appendWindowStart`** property of the SourceBuffer interface controls the timestamp for the start of the append window, a timestamp range that can be used to filter what media data is appended to the `SourceBuffer`.
|
|
31112
31141
|
*
|
|
31113
31142
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/appendWindowStart)
|
|
31114
31143
|
*/
|
|
31115
31144
|
appendWindowStart: number;
|
|
31116
31145
|
/**
|
|
31117
|
-
* The **`buffered`** read-only property of the buffered in the `SourceBuffer` as a normalized TimeRanges object.
|
|
31146
|
+
* The **`buffered`** read-only property of the SourceBuffer interface returns the time ranges that are currently buffered in the `SourceBuffer` as a normalized TimeRanges object.
|
|
31118
31147
|
*
|
|
31119
31148
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/buffered)
|
|
31120
31149
|
*/
|
|
@@ -31131,13 +31160,13 @@ interface SourceBuffer extends EventTarget {
|
|
|
31131
31160
|
onupdateend: ((this: SourceBuffer, ev: Event) => any) | null;
|
|
31132
31161
|
onupdatestart: ((this: SourceBuffer, ev: Event) => any) | null;
|
|
31133
31162
|
/**
|
|
31134
|
-
* The **`timestampOffset`** property of the media segments that are appended to the `SourceBuffer`.
|
|
31163
|
+
* The **`timestampOffset`** property of the SourceBuffer interface controls the offset applied to timestamps inside media segments that are appended to the `SourceBuffer`.
|
|
31135
31164
|
*
|
|
31136
31165
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/timestampOffset)
|
|
31137
31166
|
*/
|
|
31138
31167
|
timestampOffset: number;
|
|
31139
31168
|
/**
|
|
31140
|
-
* The **`updating`** read-only property of the currently being updated — i.e., whether an SourceBuffer.appendBuffer() or SourceBuffer.remove() operation is currently in progress.
|
|
31169
|
+
* The **`updating`** read-only property of the SourceBuffer interface indicates whether the `SourceBuffer` is currently being updated — i.e., whether an SourceBuffer.appendBuffer() or SourceBuffer.remove() operation is currently in progress.
|
|
31141
31170
|
*
|
|
31142
31171
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/updating)
|
|
31143
31172
|
*/
|
|
@@ -31149,13 +31178,13 @@ interface SourceBuffer extends EventTarget {
|
|
|
31149
31178
|
*/
|
|
31150
31179
|
abort(): void;
|
|
31151
31180
|
/**
|
|
31152
|
-
* The **`appendBuffer()`** method of the to the `SourceBuffer`.
|
|
31181
|
+
* The **`appendBuffer()`** method of the SourceBuffer interface appends media segment data from an ArrayBuffer, a TypedArray or a DataView object to the `SourceBuffer`.
|
|
31153
31182
|
*
|
|
31154
31183
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/appendBuffer)
|
|
31155
31184
|
*/
|
|
31156
31185
|
appendBuffer(data: BufferSource): void;
|
|
31157
31186
|
/**
|
|
31158
|
-
* The **`changeType()`** method of the data to conform to.
|
|
31187
|
+
* The **`changeType()`** method of the SourceBuffer interface sets the MIME type that future calls to SourceBuffer.appendBuffer should expect the new media data to conform to.
|
|
31159
31188
|
*
|
|
31160
31189
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/changeType)
|
|
31161
31190
|
*/
|
|
@@ -31189,7 +31218,7 @@ interface SourceBufferListEventMap {
|
|
|
31189
31218
|
*/
|
|
31190
31219
|
interface SourceBufferList extends EventTarget {
|
|
31191
31220
|
/**
|
|
31192
|
-
* The **`length`** read-only property of the
|
|
31221
|
+
* The **`length`** read-only property of the SourceBufferList interface returns the number of SourceBuffer objects in the list.
|
|
31193
31222
|
*
|
|
31194
31223
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBufferList/length)
|
|
31195
31224
|
*/
|
|
@@ -31216,13 +31245,13 @@ declare var SourceBufferList: {
|
|
|
31216
31245
|
*/
|
|
31217
31246
|
interface SpeechRecognitionAlternative {
|
|
31218
31247
|
/**
|
|
31219
|
-
* The **`confidence`** read-only property of the confident the speech recognition system is that the recognition is correct.
|
|
31248
|
+
* The **`confidence`** read-only property of the SpeechRecognitionResult interface returns a numeric estimate of how confident the speech recognition system is that the recognition is correct.
|
|
31220
31249
|
*
|
|
31221
31250
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionAlternative/confidence)
|
|
31222
31251
|
*/
|
|
31223
31252
|
readonly confidence: number;
|
|
31224
31253
|
/**
|
|
31225
|
-
* The **`transcript`** read-only property of the transcript of the recognized word(s).
|
|
31254
|
+
* The **`transcript`** read-only property of the SpeechRecognitionResult interface returns a string containing the transcript of the recognized word(s).
|
|
31226
31255
|
*
|
|
31227
31256
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionAlternative/transcript)
|
|
31228
31257
|
*/
|
|
@@ -31242,13 +31271,13 @@ declare var SpeechRecognitionAlternative: {
|
|
|
31242
31271
|
*/
|
|
31243
31272
|
interface SpeechRecognitionErrorEvent extends Event {
|
|
31244
31273
|
/**
|
|
31245
|
-
* The **`error`** read-only property of the
|
|
31274
|
+
* The **`error`** read-only property of the SpeechRecognitionErrorEvent interface returns the type of error raised.
|
|
31246
31275
|
*
|
|
31247
31276
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionErrorEvent/error)
|
|
31248
31277
|
*/
|
|
31249
31278
|
readonly error: SpeechRecognitionErrorCode;
|
|
31250
31279
|
/**
|
|
31251
|
-
* The **`message`** read-only property of the error in more detail.
|
|
31280
|
+
* The **`message`** read-only property of the SpeechRecognitionErrorEvent interface returns a message describing the error in more detail.
|
|
31252
31281
|
*
|
|
31253
31282
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionErrorEvent/message)
|
|
31254
31283
|
*/
|
|
@@ -31268,13 +31297,13 @@ declare var SpeechRecognitionErrorEvent: {
|
|
|
31268
31297
|
*/
|
|
31269
31298
|
interface SpeechRecognitionEvent extends Event {
|
|
31270
31299
|
/**
|
|
31271
|
-
* The **`resultIndex`** read-only property of the the SpeechRecognitionResultList 'array' that has actually changed.
|
|
31300
|
+
* The **`resultIndex`** read-only property of the SpeechRecognitionEvent interface returns the lowest index value result in the SpeechRecognitionResultList 'array' that has actually changed.
|
|
31272
31301
|
*
|
|
31273
31302
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionEvent/resultIndex)
|
|
31274
31303
|
*/
|
|
31275
31304
|
readonly resultIndex: number;
|
|
31276
31305
|
/**
|
|
31277
|
-
* The **`results`** read-only property of the recognition results for the current session.
|
|
31306
|
+
* The **`results`** read-only property of the SpeechRecognitionEvent interface returns a SpeechRecognitionResultList object representing all the speech recognition results for the current session.
|
|
31278
31307
|
*
|
|
31279
31308
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionEvent/results)
|
|
31280
31309
|
*/
|
|
@@ -31294,19 +31323,19 @@ declare var SpeechRecognitionEvent: {
|
|
|
31294
31323
|
*/
|
|
31295
31324
|
interface SpeechRecognitionResult {
|
|
31296
31325
|
/**
|
|
31297
|
-
* The **`isFinal`** read-only property of the whether this result is final (`true`) or not (`false`) — if so, then this is the final time this result will be returned; if not, then this result is an interim result, and may be updated later on.
|
|
31326
|
+
* The **`isFinal`** read-only property of the SpeechRecognitionResult interface is a boolean value that states whether this result is final (`true`) or not (`false`) — if so, then this is the final time this result will be returned; if not, then this result is an interim result, and may be updated later on.
|
|
31298
31327
|
*
|
|
31299
31328
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionResult/isFinal)
|
|
31300
31329
|
*/
|
|
31301
31330
|
readonly isFinal: boolean;
|
|
31302
31331
|
/**
|
|
31303
|
-
* The **`length`** read-only property of the — the number of SpeechRecognitionAlternative objects contained in the result (also referred to as 'n-best alternatives'.)
|
|
31332
|
+
* The **`length`** read-only property of the SpeechRecognitionResult interface returns the length of the 'array' — the number of SpeechRecognitionAlternative objects contained in the result (also referred to as 'n-best alternatives'.)
|
|
31304
31333
|
*
|
|
31305
31334
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionResult/length)
|
|
31306
31335
|
*/
|
|
31307
31336
|
readonly length: number;
|
|
31308
31337
|
/**
|
|
31309
|
-
* The **`item`** getter of the array syntax.
|
|
31338
|
+
* The **`item`** getter of the SpeechRecognitionResult interface is a standard getter that allows SpeechRecognitionAlternative objects within the result to be accessed via array syntax.
|
|
31310
31339
|
*
|
|
31311
31340
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionResult/item)
|
|
31312
31341
|
*/
|
|
@@ -31327,13 +31356,13 @@ declare var SpeechRecognitionResult: {
|
|
|
31327
31356
|
*/
|
|
31328
31357
|
interface SpeechRecognitionResultList {
|
|
31329
31358
|
/**
|
|
31330
|
-
* The **`length`** read-only property of the 'array' — the number of SpeechRecognitionResult objects in the list.
|
|
31359
|
+
* The **`length`** read-only property of the SpeechRecognitionResultList interface returns the length of the 'array' — the number of SpeechRecognitionResult objects in the list.
|
|
31331
31360
|
*
|
|
31332
31361
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionResultList/length)
|
|
31333
31362
|
*/
|
|
31334
31363
|
readonly length: number;
|
|
31335
31364
|
/**
|
|
31336
|
-
* The **`item`** getter of the syntax.
|
|
31365
|
+
* The **`item`** getter of the SpeechRecognitionResultList interface is a standard getter — it allows SpeechRecognitionResult objects in the list to be accessed via array syntax.
|
|
31337
31366
|
*
|
|
31338
31367
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionResultList/item)
|
|
31339
31368
|
*/
|
|
@@ -31359,19 +31388,19 @@ interface SpeechSynthesis extends EventTarget {
|
|
|
31359
31388
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesis/voiceschanged_event) */
|
|
31360
31389
|
onvoiceschanged: ((this: SpeechSynthesis, ev: Event) => any) | null;
|
|
31361
31390
|
/**
|
|
31362
|
-
* The **`paused`** read-only property of the `true` if the `SpeechSynthesis` object is in a paused state, or `false` if not.
|
|
31391
|
+
* The **`paused`** read-only property of the SpeechSynthesis interface is a boolean value that returns `true` if the `SpeechSynthesis` object is in a paused state, or `false` if not.
|
|
31363
31392
|
*
|
|
31364
31393
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesis/paused)
|
|
31365
31394
|
*/
|
|
31366
31395
|
readonly paused: boolean;
|
|
31367
31396
|
/**
|
|
31368
|
-
* The **`pending`** read-only property of the `true` if the utterance queue contains as-yet-unspoken utterances.
|
|
31397
|
+
* The **`pending`** read-only property of the SpeechSynthesis interface is a boolean value that returns `true` if the utterance queue contains as-yet-unspoken utterances.
|
|
31369
31398
|
*
|
|
31370
31399
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesis/pending)
|
|
31371
31400
|
*/
|
|
31372
31401
|
readonly pending: boolean;
|
|
31373
31402
|
/**
|
|
31374
|
-
* The **`speaking`** read-only property of the `true` if an utterance is currently in the process of being spoken — even if `SpeechSynthesis` is in a
|
|
31403
|
+
* The **`speaking`** read-only property of the SpeechSynthesis interface is a boolean value that returns `true` if an utterance is currently in the process of being spoken — even if `SpeechSynthesis` is in a SpeechSynthesis/pause() state.
|
|
31375
31404
|
*
|
|
31376
31405
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesis/speaking)
|
|
31377
31406
|
*/
|
|
@@ -31383,7 +31412,7 @@ interface SpeechSynthesis extends EventTarget {
|
|
|
31383
31412
|
*/
|
|
31384
31413
|
cancel(): void;
|
|
31385
31414
|
/**
|
|
31386
|
-
* The **`getVoices()`** method of the current device.
|
|
31415
|
+
* The **`getVoices()`** method of the SpeechSynthesis interface returns a list of SpeechSynthesisVoice objects representing all the available voices on the current device.
|
|
31387
31416
|
*
|
|
31388
31417
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesis/getVoices)
|
|
31389
31418
|
*/
|
|
@@ -31424,7 +31453,7 @@ declare var SpeechSynthesis: {
|
|
|
31424
31453
|
*/
|
|
31425
31454
|
interface SpeechSynthesisErrorEvent extends SpeechSynthesisEvent {
|
|
31426
31455
|
/**
|
|
31427
|
-
* The **`error`** property of the
|
|
31456
|
+
* The **`error`** property of the SpeechSynthesisErrorEvent interface returns an error code indicating what has gone wrong with a speech synthesis attempt.
|
|
31428
31457
|
*
|
|
31429
31458
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisErrorEvent/error)
|
|
31430
31459
|
*/
|
|
@@ -31528,7 +31557,7 @@ interface SpeechSynthesisUtterance extends EventTarget {
|
|
|
31528
31557
|
*/
|
|
31529
31558
|
rate: number;
|
|
31530
31559
|
/**
|
|
31531
|
-
* The **`text`** property of the
|
|
31560
|
+
* The **`text`** property of the SpeechSynthesisUtterance interface gets and sets the text that will be synthesized when the utterance is spoken.
|
|
31532
31561
|
*
|
|
31533
31562
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisUtterance/text)
|
|
31534
31563
|
*/
|
|
@@ -31563,7 +31592,7 @@ declare var SpeechSynthesisUtterance: {
|
|
|
31563
31592
|
*/
|
|
31564
31593
|
interface SpeechSynthesisVoice {
|
|
31565
31594
|
/**
|
|
31566
|
-
* The **`default`** read-only property of the indicating whether the voice is the default voice for the current app (`true`), or not (`false`.)
|
|
31595
|
+
* The **`default`** read-only property of the SpeechSynthesisVoice interface returns a boolean value indicating whether the voice is the default voice for the current app (`true`), or not (`false`.)
|
|
31567
31596
|
*
|
|
31568
31597
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisVoice/default)
|
|
31569
31598
|
*/
|
|
@@ -31575,19 +31604,19 @@ interface SpeechSynthesisVoice {
|
|
|
31575
31604
|
*/
|
|
31576
31605
|
readonly lang: string;
|
|
31577
31606
|
/**
|
|
31578
|
-
* The **`localService`** read-only property of the indicating whether the voice is supplied by a local speech synthesizer service (`true`), or a remote speech synthesizer service (`false`.)
|
|
31607
|
+
* The **`localService`** read-only property of the SpeechSynthesisVoice interface returns a boolean value indicating whether the voice is supplied by a local speech synthesizer service (`true`), or a remote speech synthesizer service (`false`.)
|
|
31579
31608
|
*
|
|
31580
31609
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisVoice/localService)
|
|
31581
31610
|
*/
|
|
31582
31611
|
readonly localService: boolean;
|
|
31583
31612
|
/**
|
|
31584
|
-
* The **`name`** read-only property of the represents the voice.
|
|
31613
|
+
* The **`name`** read-only property of the SpeechSynthesisVoice interface returns a human-readable name that represents the voice.
|
|
31585
31614
|
*
|
|
31586
31615
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisVoice/name)
|
|
31587
31616
|
*/
|
|
31588
31617
|
readonly name: string;
|
|
31589
31618
|
/**
|
|
31590
|
-
* The **`voiceURI`** read-only property of the the speech synthesis service for this voice.
|
|
31619
|
+
* The **`voiceURI`** read-only property of the SpeechSynthesisVoice interface returns the type of URI and location of the speech synthesis service for this voice.
|
|
31591
31620
|
*
|
|
31592
31621
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisVoice/voiceURI)
|
|
31593
31622
|
*/
|
|
@@ -31638,7 +31667,7 @@ declare var StereoPannerNode: {
|
|
|
31638
31667
|
*/
|
|
31639
31668
|
interface Storage {
|
|
31640
31669
|
/**
|
|
31641
|
-
* The **`length`** read-only property of the `Storage` object.
|
|
31670
|
+
* The **`length`** read-only property of the Storage interface returns the number of data items stored in a given `Storage` object.
|
|
31642
31671
|
*
|
|
31643
31672
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Storage/length)
|
|
31644
31673
|
*/
|
|
@@ -31782,7 +31811,7 @@ interface StyleMedia {
|
|
|
31782
31811
|
*/
|
|
31783
31812
|
interface StylePropertyMap extends StylePropertyMapReadOnly {
|
|
31784
31813
|
/**
|
|
31785
|
-
* The **`append()`** method of the `StylePropertyMap` with the given property.
|
|
31814
|
+
* The **`append()`** method of the StylePropertyMap interface adds the passed CSS value to the `StylePropertyMap` with the given property.
|
|
31786
31815
|
*
|
|
31787
31816
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMap/append)
|
|
31788
31817
|
*/
|
|
@@ -31794,7 +31823,7 @@ interface StylePropertyMap extends StylePropertyMapReadOnly {
|
|
|
31794
31823
|
*/
|
|
31795
31824
|
clear(): void;
|
|
31796
31825
|
/**
|
|
31797
|
-
* The **`delete()`** method of the property.
|
|
31826
|
+
* The **`delete()`** method of the StylePropertyMap interface removes the CSS declaration with the given property.
|
|
31798
31827
|
*
|
|
31799
31828
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMap/delete)
|
|
31800
31829
|
*/
|
|
@@ -31819,25 +31848,25 @@ declare var StylePropertyMap: {
|
|
|
31819
31848
|
*/
|
|
31820
31849
|
interface StylePropertyMapReadOnly {
|
|
31821
31850
|
/**
|
|
31822
|
-
* The **`size`** read-only property of the containing the size of the `StylePropertyMapReadOnly` object.
|
|
31851
|
+
* The **`size`** read-only property of the StylePropertyMapReadOnly interface returns an unsigned long integer containing the size of the `StylePropertyMapReadOnly` object.
|
|
31823
31852
|
*
|
|
31824
31853
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly/size)
|
|
31825
31854
|
*/
|
|
31826
31855
|
readonly size: number;
|
|
31827
31856
|
/**
|
|
31828
|
-
* The **`get()`** method of the object for the first value of the specified property.
|
|
31857
|
+
* The **`get()`** method of the StylePropertyMapReadOnly interface returns a CSSStyleValue object for the first value of the specified property.
|
|
31829
31858
|
*
|
|
31830
31859
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly/get)
|
|
31831
31860
|
*/
|
|
31832
31861
|
get(property: string): undefined | CSSStyleValue;
|
|
31833
31862
|
/**
|
|
31834
|
-
* The **`getAll()`** method of the
|
|
31863
|
+
* The **`getAll()`** method of the StylePropertyMapReadOnly interface returns an array of CSSStyleValue objects containing the values for the provided property.
|
|
31835
31864
|
*
|
|
31836
31865
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly/getAll)
|
|
31837
31866
|
*/
|
|
31838
31867
|
getAll(property: string): CSSStyleValue[];
|
|
31839
31868
|
/**
|
|
31840
|
-
* The **`has()`** method of the property is in the `StylePropertyMapReadOnly` object.
|
|
31869
|
+
* The **`has()`** method of the StylePropertyMapReadOnly interface indicates whether the specified property is in the `StylePropertyMapReadOnly` object.
|
|
31841
31870
|
*
|
|
31842
31871
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly/has)
|
|
31843
31872
|
*/
|
|
@@ -31857,7 +31886,7 @@ declare var StylePropertyMapReadOnly: {
|
|
|
31857
31886
|
*/
|
|
31858
31887
|
interface StyleSheet {
|
|
31859
31888
|
/**
|
|
31860
|
-
* The **`disabled`** property of the applying to the document.
|
|
31889
|
+
* The **`disabled`** property of the StyleSheet interface determines whether the style sheet is prevented from applying to the document.
|
|
31861
31890
|
*
|
|
31862
31891
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/StyleSheet/disabled)
|
|
31863
31892
|
*/
|
|
@@ -31875,13 +31904,13 @@ interface StyleSheet {
|
|
|
31875
31904
|
*/
|
|
31876
31905
|
readonly media: MediaList;
|
|
31877
31906
|
/**
|
|
31878
|
-
* The **`ownerNode`** property of the with the document.
|
|
31907
|
+
* The **`ownerNode`** property of the StyleSheet interface returns the node that associates this style sheet with the document.
|
|
31879
31908
|
*
|
|
31880
31909
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/StyleSheet/ownerNode)
|
|
31881
31910
|
*/
|
|
31882
31911
|
readonly ownerNode: Element | ProcessingInstruction | null;
|
|
31883
31912
|
/**
|
|
31884
|
-
* The **`parentStyleSheet`** property of the the given style sheet.
|
|
31913
|
+
* The **`parentStyleSheet`** property of the StyleSheet interface returns the style sheet, if any, that is including the given style sheet.
|
|
31885
31914
|
*
|
|
31886
31915
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/StyleSheet/parentStyleSheet)
|
|
31887
31916
|
*/
|
|
@@ -31964,7 +31993,7 @@ interface SubtleCrypto {
|
|
|
31964
31993
|
*/
|
|
31965
31994
|
decrypt(algorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams, key: CryptoKey, data: BufferSource): Promise<ArrayBuffer>;
|
|
31966
31995
|
/**
|
|
31967
|
-
* The **`deriveBits()`** method of the key.
|
|
31996
|
+
* The **`deriveBits()`** method of the SubtleCrypto interface can be used to derive an array of bits from a base key.
|
|
31968
31997
|
*
|
|
31969
31998
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/deriveBits)
|
|
31970
31999
|
*/
|
|
@@ -32475,7 +32504,7 @@ interface TextTrackList extends EventTarget {
|
|
|
32475
32504
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList/removetrack_event) */
|
|
32476
32505
|
onremovetrack: ((this: TextTrackList, ev: TrackEvent) => any) | null;
|
|
32477
32506
|
/**
|
|
32478
|
-
* The **TextTrackList** method **`getTrackById()`** returns the first `id` matches the specified string.
|
|
32507
|
+
* The **TextTrackList** method **`getTrackById()`** returns the first TextTrack object from the track list whose `id` matches the specified string.
|
|
32479
32508
|
*
|
|
32480
32509
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList/getTrackById)
|
|
32481
32510
|
*/
|
|
@@ -32646,7 +32675,7 @@ interface TouchEvent extends UIEvent {
|
|
|
32646
32675
|
*/
|
|
32647
32676
|
readonly altKey: boolean;
|
|
32648
32677
|
/**
|
|
32649
|
-
* The **`changedTouches`** read-only property is a TouchList whose touch points (Touch objects) varies depending on the event type, as follows:
|
|
32678
|
+
* The **`changedTouches`** read-only property is a TouchList whose touch points (Touch objects) varies depending on the event type, as follows:
|
|
32650
32679
|
*
|
|
32651
32680
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TouchEvent/changedTouches)
|
|
32652
32681
|
*/
|
|
@@ -32833,7 +32862,7 @@ declare var TransitionEvent: {
|
|
|
32833
32862
|
*/
|
|
32834
32863
|
interface TreeWalker {
|
|
32835
32864
|
/**
|
|
32836
|
-
* The **`TreeWalker.currentNode`** property represents the
|
|
32865
|
+
* The **`TreeWalker.currentNode`** property represents the Node which the TreeWalker is currently pointing at.
|
|
32837
32866
|
*
|
|
32838
32867
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/currentNode)
|
|
32839
32868
|
*/
|
|
@@ -32857,43 +32886,43 @@ interface TreeWalker {
|
|
|
32857
32886
|
*/
|
|
32858
32887
|
readonly whatToShow: number;
|
|
32859
32888
|
/**
|
|
32860
|
-
* The **`TreeWalker.firstChild()`** method moves the current the found child.
|
|
32889
|
+
* The **`TreeWalker.firstChild()`** method moves the current Node to the first _visible_ child of the current node, and returns the found child.
|
|
32861
32890
|
*
|
|
32862
32891
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/firstChild)
|
|
32863
32892
|
*/
|
|
32864
32893
|
firstChild(): Node | null;
|
|
32865
32894
|
/**
|
|
32866
|
-
* The **`TreeWalker.lastChild()`** method moves the current the found child.
|
|
32895
|
+
* The **`TreeWalker.lastChild()`** method moves the current Node to the last _visible_ child of the current node, and returns the found child.
|
|
32867
32896
|
*
|
|
32868
32897
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/lastChild)
|
|
32869
32898
|
*/
|
|
32870
32899
|
lastChild(): Node | null;
|
|
32871
32900
|
/**
|
|
32872
|
-
* The **`TreeWalker.nextNode()`** method moves the current the found node.
|
|
32901
|
+
* The **`TreeWalker.nextNode()`** method moves the current Node to the next _visible_ node in the document order, and returns the found node.
|
|
32873
32902
|
*
|
|
32874
32903
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/nextNode)
|
|
32875
32904
|
*/
|
|
32876
32905
|
nextNode(): Node | null;
|
|
32877
32906
|
/**
|
|
32878
|
-
* The **`TreeWalker.nextSibling()`** method moves the current
|
|
32907
|
+
* The **`TreeWalker.nextSibling()`** method moves the current Node to its next sibling, if any, and returns the found sibling.
|
|
32879
32908
|
*
|
|
32880
32909
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/nextSibling)
|
|
32881
32910
|
*/
|
|
32882
32911
|
nextSibling(): Node | null;
|
|
32883
32912
|
/**
|
|
32884
|
-
* The **`TreeWalker.parentNode()`** method moves the current and returns the found node.
|
|
32913
|
+
* The **`TreeWalker.parentNode()`** method moves the current Node to the first _visible_ ancestor node in the document order, and returns the found node.
|
|
32885
32914
|
*
|
|
32886
32915
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/parentNode)
|
|
32887
32916
|
*/
|
|
32888
32917
|
parentNode(): Node | null;
|
|
32889
32918
|
/**
|
|
32890
|
-
* The **`TreeWalker.previousNode()`** method moves the current returns the found node.
|
|
32919
|
+
* The **`TreeWalker.previousNode()`** method moves the current Node to the previous _visible_ node in the document order, and returns the found node.
|
|
32891
32920
|
*
|
|
32892
32921
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/previousNode)
|
|
32893
32922
|
*/
|
|
32894
32923
|
previousNode(): Node | null;
|
|
32895
32924
|
/**
|
|
32896
|
-
* The **`TreeWalker.previousSibling()`** method moves the current
|
|
32925
|
+
* The **`TreeWalker.previousSibling()`** method moves the current Node to its previous sibling, if any, and returns the found sibling.
|
|
32897
32926
|
*
|
|
32898
32927
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/previousSibling)
|
|
32899
32928
|
*/
|
|
@@ -32918,7 +32947,7 @@ interface UIEvent extends Event {
|
|
|
32918
32947
|
*/
|
|
32919
32948
|
readonly detail: number;
|
|
32920
32949
|
/**
|
|
32921
|
-
* The **`UIEvent.view`** read-only property returns the
|
|
32950
|
+
* The **`UIEvent.view`** read-only property returns the WindowProxy object from which the event was generated.
|
|
32922
32951
|
*
|
|
32923
32952
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/UIEvent/view)
|
|
32924
32953
|
*/
|
|
@@ -33012,7 +33041,7 @@ interface URL {
|
|
|
33012
33041
|
*/
|
|
33013
33042
|
search: string;
|
|
33014
33043
|
/**
|
|
33015
|
-
* The **`searchParams`** read-only property of the access to the
|
|
33044
|
+
* The **`searchParams`** read-only property of the URL interface returns a URLSearchParams object allowing access to the GET decoded query arguments contained in the URL.
|
|
33016
33045
|
*
|
|
33017
33046
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/searchParams)
|
|
33018
33047
|
*/
|
|
@@ -33024,7 +33053,7 @@ interface URL {
|
|
|
33024
33053
|
*/
|
|
33025
33054
|
username: string;
|
|
33026
33055
|
/**
|
|
33027
|
-
* The **`toJSON()`** method of the URL interface returns a string containing a serialized version of the URL, although in practice it seems to have the same effect as
|
|
33056
|
+
* The **`toJSON()`** method of the URL interface returns a string containing a serialized version of the URL, although in practice it seems to have the same effect as URL.toString().
|
|
33028
33057
|
*
|
|
33029
33058
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/toJSON)
|
|
33030
33059
|
*/
|
|
@@ -33053,7 +33082,7 @@ declare var URL: {
|
|
|
33053
33082
|
*/
|
|
33054
33083
|
parse(url: string | URL, base?: string | URL): URL | null;
|
|
33055
33084
|
/**
|
|
33056
|
-
* The **`revokeObjectURL()`** static method of the URL interface releases an existing object URL which was previously created by calling
|
|
33085
|
+
* The **`revokeObjectURL()`** static method of the URL interface releases an existing object URL which was previously created by calling URL.createObjectURL_static.
|
|
33057
33086
|
*
|
|
33058
33087
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/revokeObjectURL_static)
|
|
33059
33088
|
*/
|
|
@@ -33713,7 +33742,7 @@ interface VideoPlaybackQuality {
|
|
|
33713
33742
|
*/
|
|
33714
33743
|
readonly corruptedVideoFrames: number;
|
|
33715
33744
|
/**
|
|
33716
|
-
* The read-only **`creationTime`** property on the the browsing context was created this quality sample was recorded.
|
|
33745
|
+
* The read-only **`creationTime`** property on the VideoPlaybackQuality interface reports the number of milliseconds since the browsing context was created this quality sample was recorded.
|
|
33717
33746
|
*
|
|
33718
33747
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoPlaybackQuality/creationTime)
|
|
33719
33748
|
*/
|
|
@@ -33775,26 +33804,26 @@ declare var ViewTimeline: {
|
|
|
33775
33804
|
*/
|
|
33776
33805
|
interface ViewTransition {
|
|
33777
33806
|
/**
|
|
33778
|
-
* The **`finished`** read-only property of the
|
|
33807
|
+
* The **`finished`** read-only property of the ViewTransition interface is a Promise that fulfills once the transition animation is finished, and the new page view is visible and interactive to the user.
|
|
33779
33808
|
*
|
|
33780
33809
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/finished)
|
|
33781
33810
|
*/
|
|
33782
33811
|
readonly finished: Promise<void>;
|
|
33783
33812
|
/**
|
|
33784
|
-
* The **`ready`** read-only property of the
|
|
33813
|
+
* The **`ready`** read-only property of the ViewTransition interface is a Promise that fulfills once the pseudo-element tree is created and the transition animation is about to start.
|
|
33785
33814
|
*
|
|
33786
33815
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/ready)
|
|
33787
33816
|
*/
|
|
33788
33817
|
readonly ready: Promise<void>;
|
|
33789
33818
|
types: ViewTransitionTypeSet;
|
|
33790
33819
|
/**
|
|
33791
|
-
* The **`updateCallbackDone`** read-only property of the
|
|
33820
|
+
* The **`updateCallbackDone`** read-only property of the ViewTransition interface is a Promise that fulfills when the promise returned by the Document.startViewTransition() method's callback fulfills, or rejects when it rejects.
|
|
33792
33821
|
*
|
|
33793
33822
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/updateCallbackDone)
|
|
33794
33823
|
*/
|
|
33795
33824
|
readonly updateCallbackDone: Promise<void>;
|
|
33796
33825
|
/**
|
|
33797
|
-
* The **`skipTransition()`** method of the
|
|
33826
|
+
* The **`skipTransition()`** method of the ViewTransition interface skips the animation part of the view transition, but doesn't skip running the associated view update.
|
|
33798
33827
|
*
|
|
33799
33828
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/skipTransition)
|
|
33800
33829
|
*/
|
|
@@ -36524,7 +36553,7 @@ interface WebSocket extends EventTarget {
|
|
|
36524
36553
|
*/
|
|
36525
36554
|
readonly url: string;
|
|
36526
36555
|
/**
|
|
36527
|
-
* The **`WebSocket.close()`** method closes the
|
|
36556
|
+
* The **`WebSocket.close()`** method closes the WebSocket connection or connection attempt, if any.
|
|
36528
36557
|
*
|
|
36529
36558
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/close)
|
|
36530
36559
|
*/
|
|
@@ -36733,19 +36762,19 @@ interface WheelEvent extends MouseEvent {
|
|
|
36733
36762
|
*/
|
|
36734
36763
|
readonly deltaMode: number;
|
|
36735
36764
|
/**
|
|
36736
|
-
* The **`WheelEvent.deltaX`** read-only property is a `double` representing the horizontal scroll amount in the
|
|
36765
|
+
* The **`WheelEvent.deltaX`** read-only property is a `double` representing the horizontal scroll amount in the WheelEvent.deltaMode unit.
|
|
36737
36766
|
*
|
|
36738
36767
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WheelEvent/deltaX)
|
|
36739
36768
|
*/
|
|
36740
36769
|
readonly deltaX: number;
|
|
36741
36770
|
/**
|
|
36742
|
-
* The **`WheelEvent.deltaY`** read-only property is a `double` representing the vertical scroll amount in the
|
|
36771
|
+
* The **`WheelEvent.deltaY`** read-only property is a `double` representing the vertical scroll amount in the WheelEvent.deltaMode unit.
|
|
36743
36772
|
*
|
|
36744
36773
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WheelEvent/deltaY)
|
|
36745
36774
|
*/
|
|
36746
36775
|
readonly deltaY: number;
|
|
36747
36776
|
/**
|
|
36748
|
-
* The **`WheelEvent.deltaZ`** read-only property is a `double` representing the scroll amount along the z-axis, in the
|
|
36777
|
+
* The **`WheelEvent.deltaZ`** read-only property is a `double` representing the scroll amount along the z-axis, in the WheelEvent.deltaMode unit.
|
|
36749
36778
|
*
|
|
36750
36779
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WheelEvent/deltaZ)
|
|
36751
36780
|
*/
|
|
@@ -36848,7 +36877,7 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
|
|
|
36848
36877
|
*/
|
|
36849
36878
|
readonly history: History;
|
|
36850
36879
|
/**
|
|
36851
|
-
* The read-only **`innerHeight`** property of the including the height of the horizontal scroll bar, if present.
|
|
36880
|
+
* The read-only **`innerHeight`** property of the Window interface returns the interior height of the window in pixels, including the height of the horizontal scroll bar, if present.
|
|
36852
36881
|
*
|
|
36853
36882
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/innerHeight)
|
|
36854
36883
|
*/
|
|
@@ -36860,7 +36889,7 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
|
|
|
36860
36889
|
*/
|
|
36861
36890
|
readonly innerWidth: number;
|
|
36862
36891
|
/**
|
|
36863
|
-
* Returns the number of frames (either frame or
|
|
36892
|
+
* Returns the number of frames (either frame or iframe elements) in the window.
|
|
36864
36893
|
*
|
|
36865
36894
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/length)
|
|
36866
36895
|
*/
|
|
@@ -37028,7 +37057,7 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
|
|
|
37028
37057
|
*/
|
|
37029
37058
|
readonly speechSynthesis: SpeechSynthesis;
|
|
37030
37059
|
/**
|
|
37031
|
-
* The **`status`** property of the bar at the bottom of the browser window.
|
|
37060
|
+
* The **`status`** property of the Window interface was originally intended to set the text in the status bar at the bottom of the browser window.
|
|
37032
37061
|
* @deprecated
|
|
37033
37062
|
*
|
|
37034
37063
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/status)
|
|
@@ -37396,7 +37425,7 @@ declare var Worker: {
|
|
|
37396
37425
|
*/
|
|
37397
37426
|
interface Worklet {
|
|
37398
37427
|
/**
|
|
37399
|
-
* The **`addModule()`** method of the adds it to the current `Worklet`.
|
|
37428
|
+
* The **`addModule()`** method of the Worklet interface loads the module in the given JavaScript file and adds it to the current `Worklet`.
|
|
37400
37429
|
*
|
|
37401
37430
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Worklet/addModule)
|
|
37402
37431
|
*/
|
|
@@ -37458,7 +37487,7 @@ interface WritableStreamDefaultController {
|
|
|
37458
37487
|
*/
|
|
37459
37488
|
readonly signal: AbortSignal;
|
|
37460
37489
|
/**
|
|
37461
|
-
* The **`error()`** method of the with the associated stream to error.
|
|
37490
|
+
* The **`error()`** method of the WritableStreamDefaultController interface causes any future interactions with the associated stream to error.
|
|
37462
37491
|
*
|
|
37463
37492
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultController/error)
|
|
37464
37493
|
*/
|
|
@@ -37477,43 +37506,43 @@ declare var WritableStreamDefaultController: {
|
|
|
37477
37506
|
*/
|
|
37478
37507
|
interface WritableStreamDefaultWriter<W = any> {
|
|
37479
37508
|
/**
|
|
37480
|
-
* The **`closed`** read-only property of the the stream errors or the writer's lock is released.
|
|
37509
|
+
* The **`closed`** read-only property of the WritableStreamDefaultWriter interface returns a Promise that fulfills if the stream becomes closed, or rejects if the stream errors or the writer's lock is released.
|
|
37481
37510
|
*
|
|
37482
37511
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/closed)
|
|
37483
37512
|
*/
|
|
37484
37513
|
readonly closed: Promise<void>;
|
|
37485
37514
|
/**
|
|
37486
|
-
* The **`desiredSize`** read-only property of the to fill the stream's internal queue.
|
|
37515
|
+
* The **`desiredSize`** read-only property of the WritableStreamDefaultWriter interface returns the desired size required to fill the stream's internal queue.
|
|
37487
37516
|
*
|
|
37488
37517
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/desiredSize)
|
|
37489
37518
|
*/
|
|
37490
37519
|
readonly desiredSize: number | null;
|
|
37491
37520
|
/**
|
|
37492
|
-
* The **`ready`** read-only property of the that resolves when the desired size of the stream's internal queue transitions from non-positive to positive, signaling that it is no longer applying backpressure.
|
|
37521
|
+
* The **`ready`** read-only property of the WritableStreamDefaultWriter interface returns a Promise that resolves when the desired size of the stream's internal queue transitions from non-positive to positive, signaling that it is no longer applying backpressure.
|
|
37493
37522
|
*
|
|
37494
37523
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/ready)
|
|
37495
37524
|
*/
|
|
37496
37525
|
readonly ready: Promise<void>;
|
|
37497
37526
|
/**
|
|
37498
|
-
* The **`abort()`** method of the the producer can no longer successfully write to the stream and it is to be immediately moved to an error state, with any queued writes discarded.
|
|
37527
|
+
* The **`abort()`** method of the WritableStreamDefaultWriter interface aborts the stream, signaling that the producer can no longer successfully write to the stream and it is to be immediately moved to an error state, with any queued writes discarded.
|
|
37499
37528
|
*
|
|
37500
37529
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/abort)
|
|
37501
37530
|
*/
|
|
37502
37531
|
abort(reason?: any): Promise<void>;
|
|
37503
37532
|
/**
|
|
37504
|
-
* The **`close()`** method of the stream.
|
|
37533
|
+
* The **`close()`** method of the WritableStreamDefaultWriter interface closes the associated writable stream.
|
|
37505
37534
|
*
|
|
37506
37535
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/close)
|
|
37507
37536
|
*/
|
|
37508
37537
|
close(): Promise<void>;
|
|
37509
37538
|
/**
|
|
37510
|
-
* The **`releaseLock()`** method of the corresponding stream.
|
|
37539
|
+
* The **`releaseLock()`** method of the WritableStreamDefaultWriter interface releases the writer's lock on the corresponding stream.
|
|
37511
37540
|
*
|
|
37512
37541
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/releaseLock)
|
|
37513
37542
|
*/
|
|
37514
37543
|
releaseLock(): void;
|
|
37515
37544
|
/**
|
|
37516
|
-
* The **`write()`** method of the operation.
|
|
37545
|
+
* The **`write()`** method of the WritableStreamDefaultWriter interface writes a passed chunk of data to a WritableStream and its underlying sink, then returns a Promise that resolves to indicate the success or failure of the write operation.
|
|
37517
37546
|
*
|
|
37518
37547
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/write)
|
|
37519
37548
|
*/
|
|
@@ -37787,7 +37816,7 @@ interface XPathEvaluatorBase {
|
|
|
37787
37816
|
*/
|
|
37788
37817
|
interface XPathExpression {
|
|
37789
37818
|
/**
|
|
37790
|
-
* The **`evaluate()`** method of the returns an XPathResult.
|
|
37819
|
+
* The **`evaluate()`** method of the XPathExpression interface executes an XPath expression on the given node or document and returns an XPathResult.
|
|
37791
37820
|
*
|
|
37792
37821
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathExpression/evaluate)
|
|
37793
37822
|
*/
|
|
@@ -37806,55 +37835,55 @@ declare var XPathExpression: {
|
|
|
37806
37835
|
*/
|
|
37807
37836
|
interface XPathResult {
|
|
37808
37837
|
/**
|
|
37809
|
-
* The read-only **`booleanValue`** property of the
|
|
37838
|
+
* The read-only **`booleanValue`** property of the XPathResult interface returns the boolean value of a result with XPathResult.resultType being `BOOLEAN_TYPE`.
|
|
37810
37839
|
*
|
|
37811
37840
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/booleanValue)
|
|
37812
37841
|
*/
|
|
37813
37842
|
readonly booleanValue: boolean;
|
|
37814
37843
|
/**
|
|
37815
|
-
* The read-only **`invalidIteratorState`** property of the
|
|
37844
|
+
* The read-only **`invalidIteratorState`** property of the XPathResult interface signifies that the iterator has become invalid.
|
|
37816
37845
|
*
|
|
37817
37846
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/invalidIteratorState)
|
|
37818
37847
|
*/
|
|
37819
37848
|
readonly invalidIteratorState: boolean;
|
|
37820
37849
|
/**
|
|
37821
|
-
* The read-only **`numberValue`** property of the
|
|
37850
|
+
* The read-only **`numberValue`** property of the XPathResult interface returns the numeric value of a result with XPathResult.resultType being `NUMBER_TYPE`.
|
|
37822
37851
|
*
|
|
37823
37852
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/numberValue)
|
|
37824
37853
|
*/
|
|
37825
37854
|
readonly numberValue: number;
|
|
37826
37855
|
/**
|
|
37827
|
-
* The read-only **`resultType`** property of the the type constants.
|
|
37856
|
+
* The read-only **`resultType`** property of the XPathResult interface represents the type of the result, as defined by the type constants.
|
|
37828
37857
|
*
|
|
37829
37858
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/resultType)
|
|
37830
37859
|
*/
|
|
37831
37860
|
readonly resultType: number;
|
|
37832
37861
|
/**
|
|
37833
|
-
* The read-only **`singleNodeValue`** property of the `null` in case no node was matched of a result with `FIRST_ORDERED_NODE_TYPE`.
|
|
37862
|
+
* The read-only **`singleNodeValue`** property of the XPathResult interface returns a Node value or `null` in case no node was matched of a result with XPathResult.resultType being `ANY_UNORDERED_NODE_TYPE` or `FIRST_ORDERED_NODE_TYPE`.
|
|
37834
37863
|
*
|
|
37835
37864
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/singleNodeValue)
|
|
37836
37865
|
*/
|
|
37837
37866
|
readonly singleNodeValue: Node | null;
|
|
37838
37867
|
/**
|
|
37839
|
-
* The read-only **`snapshotLength`** property of the snapshot.
|
|
37868
|
+
* The read-only **`snapshotLength`** property of the XPathResult interface represents the number of nodes in the result snapshot.
|
|
37840
37869
|
*
|
|
37841
37870
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/snapshotLength)
|
|
37842
37871
|
*/
|
|
37843
37872
|
readonly snapshotLength: number;
|
|
37844
37873
|
/**
|
|
37845
|
-
* The read-only **`stringValue`** property of the
|
|
37874
|
+
* The read-only **`stringValue`** property of the XPathResult interface returns the string value of a result with XPathResult.resultType being `STRING_TYPE`.
|
|
37846
37875
|
*
|
|
37847
37876
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/stringValue)
|
|
37848
37877
|
*/
|
|
37849
37878
|
readonly stringValue: string;
|
|
37850
37879
|
/**
|
|
37851
|
-
* The **`iterateNext()`** method of the next node from it or `null` if there are no more nodes.
|
|
37880
|
+
* The **`iterateNext()`** method of the XPathResult interface iterates over a node set result and returns the next node from it or `null` if there are no more nodes.
|
|
37852
37881
|
*
|
|
37853
37882
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/iterateNext)
|
|
37854
37883
|
*/
|
|
37855
37884
|
iterateNext(): Node | null;
|
|
37856
37885
|
/**
|
|
37857
|
-
* The **`snapshotItem()`** method of the `null` in case the index is not within the range of nodes.
|
|
37886
|
+
* The **`snapshotItem()`** method of the XPathResult interface returns an item of the snapshot collection or `null` in case the index is not within the range of nodes.
|
|
37858
37887
|
*
|
|
37859
37888
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/snapshotItem)
|
|
37860
37889
|
*/
|
|
@@ -38944,7 +38973,7 @@ declare var frames: WindowProxy;
|
|
|
38944
38973
|
*/
|
|
38945
38974
|
declare var history: History;
|
|
38946
38975
|
/**
|
|
38947
|
-
* The read-only **`innerHeight`** property of the including the height of the horizontal scroll bar, if present.
|
|
38976
|
+
* The read-only **`innerHeight`** property of the Window interface returns the interior height of the window in pixels, including the height of the horizontal scroll bar, if present.
|
|
38948
38977
|
*
|
|
38949
38978
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/innerHeight)
|
|
38950
38979
|
*/
|
|
@@ -38956,7 +38985,7 @@ declare var innerHeight: number;
|
|
|
38956
38985
|
*/
|
|
38957
38986
|
declare var innerWidth: number;
|
|
38958
38987
|
/**
|
|
38959
|
-
* Returns the number of frames (either frame or
|
|
38988
|
+
* Returns the number of frames (either frame or iframe elements) in the window.
|
|
38960
38989
|
*
|
|
38961
38990
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/length)
|
|
38962
38991
|
*/
|
|
@@ -39124,7 +39153,7 @@ declare var self: Window & typeof globalThis;
|
|
|
39124
39153
|
*/
|
|
39125
39154
|
declare var speechSynthesis: SpeechSynthesis;
|
|
39126
39155
|
/**
|
|
39127
|
-
* The **`status`** property of the bar at the bottom of the browser window.
|
|
39156
|
+
* The **`status`** property of the Window interface was originally intended to set the text in the status bar at the bottom of the browser window.
|
|
39128
39157
|
* @deprecated
|
|
39129
39158
|
*
|
|
39130
39159
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/status)
|
|
@@ -39782,6 +39811,7 @@ type FontDisplay = "auto" | "block" | "fallback" | "optional" | "swap";
|
|
|
39782
39811
|
type FontFaceLoadStatus = "error" | "loaded" | "loading" | "unloaded";
|
|
39783
39812
|
type FontFaceSetLoadStatus = "loaded" | "loading";
|
|
39784
39813
|
type FullscreenNavigationUI = "auto" | "hide" | "show";
|
|
39814
|
+
type GPUPipelineErrorReason = "internal" | "validation";
|
|
39785
39815
|
type GamepadHapticEffectType = "dual-rumble" | "trigger-rumble";
|
|
39786
39816
|
type GamepadHapticsResult = "complete" | "preempted";
|
|
39787
39817
|
type GamepadMappingType = "" | "standard" | "xr-standard";
|