Skip to content

Commit a650695

Browse files
authored
Co-authored-by: saschanaz <[email protected]>
1 parent 689f1bb commit a650695

File tree

6 files changed

+85
-22
lines changed

6 files changed

+85
-22
lines changed

baselines/dom.generated.d.ts

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10037,6 +10037,19 @@ declare var DeviceOrientationEvent: {
1003710037
new(type: string, eventInitDict?: DeviceOrientationEventInit): DeviceOrientationEvent;
1003810038
};
1003910039

10040+
/** Available only in secure contexts. */
10041+
interface DigitalCredential extends Credential {
10042+
readonly data: any;
10043+
readonly protocol: string;
10044+
toJSON(): any;
10045+
}
10046+
10047+
declare var DigitalCredential: {
10048+
prototype: DigitalCredential;
10049+
new(): DigitalCredential;
10050+
userAgentAllowsProtocol(protocol: string): boolean;
10051+
};
10052+
1004010053
interface DocumentEventMap extends GlobalEventHandlersEventMap {
1004110054
"DOMContentLoaded": Event;
1004210055
"fullscreenchange": Event;
@@ -17159,7 +17172,7 @@ interface HTMLTableCellElement extends HTMLElement {
1715917172
*/
1716017173
chOff: string;
1716117174
/**
17162-
* 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.
17175+
* 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.
1716317176
*
1716417177
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/colSpan)
1716517178
*/
@@ -17180,7 +17193,7 @@ interface HTMLTableCellElement extends HTMLElement {
1718017193
*/
1718117194
noWrap: boolean;
1718217195
/**
17183-
* 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.
17196+
* 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.
1718417197
*
1718517198
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/rowSpan)
1718617199
*/
@@ -17239,7 +17252,7 @@ interface HTMLTableColElement extends HTMLElement {
1723917252
*/
1724017253
chOff: string;
1724117254
/**
17242-
* 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.
17255+
* 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.
1724317256
*
1724417257
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableColElement/span)
1724517258
*/
@@ -24576,7 +24589,7 @@ interface PublicKeyCredential extends Credential {
2457624589
*/
2457724590
readonly response: AuthenticatorResponse;
2457824591
/**
24579-
* 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.
24592+
* 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.
2458024593
*
2458124594
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/getClientExtensionResults)
2458224595
*/

baselines/ts5.5/dom.generated.d.ts

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10029,6 +10029,19 @@ declare var DeviceOrientationEvent: {
1002910029
new(type: string, eventInitDict?: DeviceOrientationEventInit): DeviceOrientationEvent;
1003010030
};
1003110031

10032+
/** Available only in secure contexts. */
10033+
interface DigitalCredential extends Credential {
10034+
readonly data: any;
10035+
readonly protocol: string;
10036+
toJSON(): any;
10037+
}
10038+
10039+
declare var DigitalCredential: {
10040+
prototype: DigitalCredential;
10041+
new(): DigitalCredential;
10042+
userAgentAllowsProtocol(protocol: string): boolean;
10043+
};
10044+
1003210045
interface DocumentEventMap extends GlobalEventHandlersEventMap {
1003310046
"DOMContentLoaded": Event;
1003410047
"fullscreenchange": Event;
@@ -17138,7 +17151,7 @@ interface HTMLTableCellElement extends HTMLElement {
1713817151
*/
1713917152
chOff: string;
1714017153
/**
17141-
* 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.
17154+
* 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.
1714217155
*
1714317156
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/colSpan)
1714417157
*/
@@ -17159,7 +17172,7 @@ interface HTMLTableCellElement extends HTMLElement {
1715917172
*/
1716017173
noWrap: boolean;
1716117174
/**
17162-
* 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.
17175+
* 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.
1716317176
*
1716417177
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/rowSpan)
1716517178
*/
@@ -17218,7 +17231,7 @@ interface HTMLTableColElement extends HTMLElement {
1721817231
*/
1721917232
chOff: string;
1722017233
/**
17221-
* 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.
17234+
* 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.
1722217235
*
1722317236
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableColElement/span)
1722417237
*/
@@ -24555,7 +24568,7 @@ interface PublicKeyCredential extends Credential {
2455524568
*/
2455624569
readonly response: AuthenticatorResponse;
2455724570
/**
24558-
* 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.
24571+
* 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.
2455924572
*
2456024573
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/getClientExtensionResults)
2456124574
*/

baselines/ts5.6/dom.generated.d.ts

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10037,6 +10037,19 @@ declare var DeviceOrientationEvent: {
1003710037
new(type: string, eventInitDict?: DeviceOrientationEventInit): DeviceOrientationEvent;
1003810038
};
1003910039

10040+
/** Available only in secure contexts. */
10041+
interface DigitalCredential extends Credential {
10042+
readonly data: any;
10043+
readonly protocol: string;
10044+
toJSON(): any;
10045+
}
10046+
10047+
declare var DigitalCredential: {
10048+
prototype: DigitalCredential;
10049+
new(): DigitalCredential;
10050+
userAgentAllowsProtocol(protocol: string): boolean;
10051+
};
10052+
1004010053
interface DocumentEventMap extends GlobalEventHandlersEventMap {
1004110054
"DOMContentLoaded": Event;
1004210055
"fullscreenchange": Event;
@@ -17159,7 +17172,7 @@ interface HTMLTableCellElement extends HTMLElement {
1715917172
*/
1716017173
chOff: string;
1716117174
/**
17162-
* 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.
17175+
* 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.
1716317176
*
1716417177
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/colSpan)
1716517178
*/
@@ -17180,7 +17193,7 @@ interface HTMLTableCellElement extends HTMLElement {
1718017193
*/
1718117194
noWrap: boolean;
1718217195
/**
17183-
* 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.
17196+
* 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.
1718417197
*
1718517198
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/rowSpan)
1718617199
*/
@@ -17239,7 +17252,7 @@ interface HTMLTableColElement extends HTMLElement {
1723917252
*/
1724017253
chOff: string;
1724117254
/**
17242-
* 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.
17255+
* 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.
1724317256
*
1724417257
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableColElement/span)
1724517258
*/
@@ -24576,7 +24589,7 @@ interface PublicKeyCredential extends Credential {
2457624589
*/
2457724590
readonly response: AuthenticatorResponse;
2457824591
/**
24579-
* 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.
24592+
* 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.
2458024593
*
2458124594
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/getClientExtensionResults)
2458224595
*/

inputfiles/mdn

Submodule mdn updated 225 files

inputfiles/removedTypes.jsonc

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,22 @@
5050
"unorm8x4-bgra" // Blink only as of 2024-11
5151
]
5252
},
53+
"KeyFormat": {
54+
"value": [
55+
"raw-private", // No implementation as of 2025-09
56+
"raw-public", // No implementation as of 2025-09
57+
"raw-secret", // No implementation as of 2025-09
58+
"raw-seed" // No implementation as of 2025-09
59+
]
60+
},
61+
"KeyUsage": {
62+
"value": [
63+
"decapsulateBits", // No implementation as of 2025-09
64+
"decapsulateKey", // No implementation as of 2025-09
65+
"encapsulateBits", // No implementation as of 2025-09
66+
"encapsulateKey" // No implementation as of 2025-09
67+
]
68+
},
5369
"MediaSessionAction": {
5470
"value": [
5571
"enterpictureinpicture", // Blink only as of 2024-07
@@ -414,6 +430,14 @@
414430
}
415431
}
416432
},
433+
"JsonWebKey": {
434+
"members": {
435+
"member": {
436+
"priv": null, // No implementation as of 2025-09
437+
"pub": null // No implementation as of 2025-09
438+
}
439+
}
440+
},
417441
"KeyframeAnimationOptions": {
418442
"members": {
419443
"member": {

package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)