Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6851,6 +6851,7 @@ interface CSSStyleProperties extends CSSStyleDeclaration {
textAlignLast: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-anchor) */
textAnchor: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-autospace) */
textAutospace: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-box) */
textBox: string;
Expand Down Expand Up @@ -14412,7 +14413,7 @@ interface HTMLFormElement extends HTMLElement {
*/
autocomplete: AutoFillBase;
/**
* The HTMLFormElement property **`elements`** returns an HTMLFormControlsCollection listing all the form controls contained in the form element.
* The **`elements`** property of the HTMLFormElement interface returns an HTMLFormControlsCollection listing all the listed form controls associated with the form element.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/elements)
*/
Expand Down Expand Up @@ -23816,6 +23817,7 @@ declare var PerformanceObserverEntryList: {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformancePaintTiming)
*/
interface PerformancePaintTiming extends PerformanceEntry {
toJSON(): any;
}

declare var PerformancePaintTiming: {
Expand Down Expand Up @@ -24387,7 +24389,7 @@ interface PointerEvent extends MouseEvent {
*/
readonly persistentDeviceId: number;
/**
* The **`pointerId`** read-only property of the PointerEvent interface is an identifier assigned to a given pointer event.
* The **`pointerId`** read-only property of the PointerEvent interface is an identifier assigned to the pointer that triggered the event.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/pointerId)
*/
Expand Down
6 changes: 4 additions & 2 deletions baselines/ts5.5/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6844,6 +6844,7 @@ interface CSSStyleProperties extends CSSStyleDeclaration {
textAlignLast: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-anchor) */
textAnchor: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-autospace) */
textAutospace: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-box) */
textBox: string;
Expand Down Expand Up @@ -14399,7 +14400,7 @@ interface HTMLFormElement extends HTMLElement {
*/
autocomplete: AutoFillBase;
/**
* The HTMLFormElement property **`elements`** returns an HTMLFormControlsCollection listing all the form controls contained in the form element.
* The **`elements`** property of the HTMLFormElement interface returns an HTMLFormControlsCollection listing all the listed form controls associated with the form element.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/elements)
*/
Expand Down Expand Up @@ -23795,6 +23796,7 @@ declare var PerformanceObserverEntryList: {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformancePaintTiming)
*/
interface PerformancePaintTiming extends PerformanceEntry {
toJSON(): any;
}

declare var PerformancePaintTiming: {
Expand Down Expand Up @@ -24366,7 +24368,7 @@ interface PointerEvent extends MouseEvent {
*/
readonly persistentDeviceId: number;
/**
* The **`pointerId`** read-only property of the PointerEvent interface is an identifier assigned to a given pointer event.
* The **`pointerId`** read-only property of the PointerEvent interface is an identifier assigned to the pointer that triggered the event.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/pointerId)
*/
Expand Down
2 changes: 1 addition & 1 deletion baselines/ts5.5/webworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7440,7 +7440,7 @@ interface RTCRtpScriptTransformer extends EventTarget {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpScriptTransformer/generateKeyFrame)
*/
generateKeyFrame(rid?: string): Promise<number>;
generateKeyFrame(rid?: string): Promise<void>;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpScriptTransformer/generateKeyFrame#return_value

A Promise that fulfills with the timestamp of the frame, or rejects with an exception value.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, this is in a webworker. Hmm

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

MDN is not the normative reference 😉

/**
* The **`sendKeyFrameRequest()`** method of the RTCRtpScriptTransformer interface may be called by a WebRTC Encoded Transform that is processing incoming encoded video frames, in order to request a key frame from the sender.
*
Expand Down
6 changes: 4 additions & 2 deletions baselines/ts5.6/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6851,6 +6851,7 @@ interface CSSStyleProperties extends CSSStyleDeclaration {
textAlignLast: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-anchor) */
textAnchor: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-autospace) */
textAutospace: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-box) */
textBox: string;
Expand Down Expand Up @@ -14412,7 +14413,7 @@ interface HTMLFormElement extends HTMLElement {
*/
autocomplete: AutoFillBase;
/**
* The HTMLFormElement property **`elements`** returns an HTMLFormControlsCollection listing all the form controls contained in the form element.
* The **`elements`** property of the HTMLFormElement interface returns an HTMLFormControlsCollection listing all the listed form controls associated with the form element.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/elements)
*/
Expand Down Expand Up @@ -23816,6 +23817,7 @@ declare var PerformanceObserverEntryList: {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformancePaintTiming)
*/
interface PerformancePaintTiming extends PerformanceEntry {
toJSON(): any;
}

declare var PerformancePaintTiming: {
Expand Down Expand Up @@ -24387,7 +24389,7 @@ interface PointerEvent extends MouseEvent {
*/
readonly persistentDeviceId: number;
/**
* The **`pointerId`** read-only property of the PointerEvent interface is an identifier assigned to a given pointer event.
* The **`pointerId`** read-only property of the PointerEvent interface is an identifier assigned to the pointer that triggered the event.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/pointerId)
*/
Expand Down
2 changes: 1 addition & 1 deletion baselines/ts5.6/webworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7440,7 +7440,7 @@ interface RTCRtpScriptTransformer extends EventTarget {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpScriptTransformer/generateKeyFrame)
*/
generateKeyFrame(rid?: string): Promise<number>;
generateKeyFrame(rid?: string): Promise<void>;
/**
* The **`sendKeyFrameRequest()`** method of the RTCRtpScriptTransformer interface may be called by a WebRTC Encoded Transform that is processing incoming encoded video frames, in order to request a key frame from the sender.
*
Expand Down
2 changes: 1 addition & 1 deletion baselines/webworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7440,7 +7440,7 @@ interface RTCRtpScriptTransformer extends EventTarget {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpScriptTransformer/generateKeyFrame)
*/
generateKeyFrame(rid?: string): Promise<number>;
generateKeyFrame(rid?: string): Promise<void>;
/**
* The **`sendKeyFrameRequest()`** method of the RTCRtpScriptTransformer interface may be called by a WebRTC Encoded Transform that is processing incoming encoded video frames, in order to request a key frame from the sender.
*
Expand Down
2 changes: 1 addition & 1 deletion inputfiles/mdn
Submodule mdn updated 331 files
18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.