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
21 changes: 17 additions & 4 deletions baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10037,6 +10037,19 @@ declare var DeviceOrientationEvent: {
new(type: string, eventInitDict?: DeviceOrientationEventInit): DeviceOrientationEvent;
};

/** Available only in secure contexts. */
interface DigitalCredential extends Credential {
readonly data: any;
readonly protocol: string;
toJSON(): any;
}

declare var DigitalCredential: {
prototype: DigitalCredential;
new(): DigitalCredential;
userAgentAllowsProtocol(protocol: string): boolean;
};

interface DocumentEventMap extends GlobalEventHandlersEventMap {
"DOMContentLoaded": Event;
"fullscreenchange": Event;
Expand Down Expand Up @@ -17159,7 +17172,7 @@ interface HTMLTableCellElement extends HTMLElement {
*/
chOff: string;
/**
* The **`colSpan`** read-only property of the HTMLTableCellElement interface represents the number of columns this cell must span; this lets the cell occupy space across multiple columns of the table.
* The **`colSpan`** property of the HTMLTableCellElement interface represents the number of columns this cell must span; this lets the cell occupy space across multiple columns of the table.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/colSpan)
*/
Expand All @@ -17180,7 +17193,7 @@ interface HTMLTableCellElement extends HTMLElement {
*/
noWrap: boolean;
/**
* The **`rowSpan`** read-only property of the HTMLTableCellElement interface represents the number of rows this cell must span; this lets the cell occupy space across multiple rows of the table.
* The **`rowSpan`** property of the HTMLTableCellElement interface represents the number of rows this cell must span; this lets the cell occupy space across multiple rows of the table.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/rowSpan)
*/
Expand Down Expand Up @@ -17239,7 +17252,7 @@ interface HTMLTableColElement extends HTMLElement {
*/
chOff: string;
/**
* The **`span`** read-only property of the HTMLTableColElement interface represents the number of columns this col or colgroup must span; this lets the column occupy space across multiple columns of the table.
* The **`span`** property of the HTMLTableColElement interface represents the number of columns this col or colgroup must span; this lets the column occupy space across multiple columns of the table.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableColElement/span)
*/
Expand Down Expand Up @@ -24576,7 +24589,7 @@ interface PublicKeyCredential extends Credential {
*/
readonly response: AuthenticatorResponse;
/**
* The **`getClientExtensionResults()`** method of the PublicKeyCredential interface returns a map between the identifiers of extensions requested during credential creation or authentication, and their results after processing by the user agent.
* The **`getClientExtensionResults()`** method of the PublicKeyCredential interface returns an object mapping the identifiers of extensions requested during credential creation or authentication, and their results after processing by the user agent.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/getClientExtensionResults)
*/
Expand Down
21 changes: 17 additions & 4 deletions baselines/ts5.5/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10029,6 +10029,19 @@ declare var DeviceOrientationEvent: {
new(type: string, eventInitDict?: DeviceOrientationEventInit): DeviceOrientationEvent;
};

/** Available only in secure contexts. */
interface DigitalCredential extends Credential {
readonly data: any;
readonly protocol: string;
toJSON(): any;
}

declare var DigitalCredential: {
prototype: DigitalCredential;
new(): DigitalCredential;
userAgentAllowsProtocol(protocol: string): boolean;
};

interface DocumentEventMap extends GlobalEventHandlersEventMap {
"DOMContentLoaded": Event;
"fullscreenchange": Event;
Expand Down Expand Up @@ -17138,7 +17151,7 @@ interface HTMLTableCellElement extends HTMLElement {
*/
chOff: string;
/**
* The **`colSpan`** read-only property of the HTMLTableCellElement interface represents the number of columns this cell must span; this lets the cell occupy space across multiple columns of the table.
* The **`colSpan`** property of the HTMLTableCellElement interface represents the number of columns this cell must span; this lets the cell occupy space across multiple columns of the table.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/colSpan)
*/
Expand All @@ -17159,7 +17172,7 @@ interface HTMLTableCellElement extends HTMLElement {
*/
noWrap: boolean;
/**
* The **`rowSpan`** read-only property of the HTMLTableCellElement interface represents the number of rows this cell must span; this lets the cell occupy space across multiple rows of the table.
* The **`rowSpan`** property of the HTMLTableCellElement interface represents the number of rows this cell must span; this lets the cell occupy space across multiple rows of the table.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/rowSpan)
*/
Expand Down Expand Up @@ -17218,7 +17231,7 @@ interface HTMLTableColElement extends HTMLElement {
*/
chOff: string;
/**
* The **`span`** read-only property of the HTMLTableColElement interface represents the number of columns this col or colgroup must span; this lets the column occupy space across multiple columns of the table.
* The **`span`** property of the HTMLTableColElement interface represents the number of columns this col or colgroup must span; this lets the column occupy space across multiple columns of the table.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableColElement/span)
*/
Expand Down Expand Up @@ -24555,7 +24568,7 @@ interface PublicKeyCredential extends Credential {
*/
readonly response: AuthenticatorResponse;
/**
* The **`getClientExtensionResults()`** method of the PublicKeyCredential interface returns a map between the identifiers of extensions requested during credential creation or authentication, and their results after processing by the user agent.
* The **`getClientExtensionResults()`** method of the PublicKeyCredential interface returns an object mapping the identifiers of extensions requested during credential creation or authentication, and their results after processing by the user agent.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/getClientExtensionResults)
*/
Expand Down
21 changes: 17 additions & 4 deletions baselines/ts5.6/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10037,6 +10037,19 @@ declare var DeviceOrientationEvent: {
new(type: string, eventInitDict?: DeviceOrientationEventInit): DeviceOrientationEvent;
};

/** Available only in secure contexts. */
interface DigitalCredential extends Credential {
readonly data: any;
readonly protocol: string;
toJSON(): any;
}

declare var DigitalCredential: {
prototype: DigitalCredential;
new(): DigitalCredential;
userAgentAllowsProtocol(protocol: string): boolean;
};

interface DocumentEventMap extends GlobalEventHandlersEventMap {
"DOMContentLoaded": Event;
"fullscreenchange": Event;
Expand Down Expand Up @@ -17159,7 +17172,7 @@ interface HTMLTableCellElement extends HTMLElement {
*/
chOff: string;
/**
* The **`colSpan`** read-only property of the HTMLTableCellElement interface represents the number of columns this cell must span; this lets the cell occupy space across multiple columns of the table.
* The **`colSpan`** property of the HTMLTableCellElement interface represents the number of columns this cell must span; this lets the cell occupy space across multiple columns of the table.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/colSpan)
*/
Expand All @@ -17180,7 +17193,7 @@ interface HTMLTableCellElement extends HTMLElement {
*/
noWrap: boolean;
/**
* The **`rowSpan`** read-only property of the HTMLTableCellElement interface represents the number of rows this cell must span; this lets the cell occupy space across multiple rows of the table.
* The **`rowSpan`** property of the HTMLTableCellElement interface represents the number of rows this cell must span; this lets the cell occupy space across multiple rows of the table.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/rowSpan)
*/
Expand Down Expand Up @@ -17239,7 +17252,7 @@ interface HTMLTableColElement extends HTMLElement {
*/
chOff: string;
/**
* The **`span`** read-only property of the HTMLTableColElement interface represents the number of columns this col or colgroup must span; this lets the column occupy space across multiple columns of the table.
* The **`span`** property of the HTMLTableColElement interface represents the number of columns this col or colgroup must span; this lets the column occupy space across multiple columns of the table.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableColElement/span)
*/
Expand Down Expand Up @@ -24576,7 +24589,7 @@ interface PublicKeyCredential extends Credential {
*/
readonly response: AuthenticatorResponse;
/**
* The **`getClientExtensionResults()`** method of the PublicKeyCredential interface returns a map between the identifiers of extensions requested during credential creation or authentication, and their results after processing by the user agent.
* The **`getClientExtensionResults()`** method of the PublicKeyCredential interface returns an object mapping the identifiers of extensions requested during credential creation or authentication, and their results after processing by the user agent.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/getClientExtensionResults)
*/
Expand Down
2 changes: 1 addition & 1 deletion inputfiles/mdn
Submodule mdn updated 225 files
24 changes: 24 additions & 0 deletions inputfiles/removedTypes.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,22 @@
"unorm8x4-bgra" // Blink only as of 2024-11
]
},
"KeyFormat": {
"value": [
"raw-private", // No implementation as of 2025-09
"raw-public", // No implementation as of 2025-09
"raw-secret", // No implementation as of 2025-09
"raw-seed" // No implementation as of 2025-09
]
},
"KeyUsage": {
"value": [
"decapsulateBits", // No implementation as of 2025-09
"decapsulateKey", // No implementation as of 2025-09
"encapsulateBits", // No implementation as of 2025-09
"encapsulateKey" // No implementation as of 2025-09
]
},
"MediaSessionAction": {
"value": [
"enterpictureinpicture", // Blink only as of 2024-07
Expand Down Expand Up @@ -414,6 +430,14 @@
}
}
},
"JsonWebKey": {
"members": {
"member": {
"priv": null, // No implementation as of 2025-09
"pub": null // No implementation as of 2025-09
}
}
},
"KeyframeAnimationOptions": {
"members": {
"member": {
Expand Down
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.