Skip to content
Open
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: 3 additions & 3 deletions baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1182,7 +1182,7 @@ interface GamepadEffectParameters {
}

interface GamepadEventInit extends EventInit {
gamepad: Gamepad;
gamepad?: Gamepad | null;
}

interface GetAnimationsOptions {
Expand Down Expand Up @@ -5358,7 +5358,7 @@ declare var CSSFontFaceRule: {
};

/**
* The **`CSSFontFeatureValuesRule`** interface represents an @font-feature-values at-rule. The values of its instance properties can be accessed with the CSSFontFeatureValuesMapinterface.
* The **`CSSFontFeatureValuesRule`** interface represents an @font-feature-values at-rule. The values of its instance properties can be accessed with the CSSFontFeatureValuesMap interface.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSFontFeatureValuesRule)
*/
Expand Down Expand Up @@ -16443,7 +16443,7 @@ interface GamepadEvent extends Event {

declare var GamepadEvent: {
prototype: GamepadEvent;
new(type: string, eventInitDict: GamepadEventInit): GamepadEvent;
new(type: string, eventInitDict?: GamepadEventInit): GamepadEvent;
};

/**
Expand Down
6 changes: 3 additions & 3 deletions baselines/ts5.5/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1179,7 +1179,7 @@ interface GamepadEffectParameters {
}

interface GamepadEventInit extends EventInit {
gamepad: Gamepad;
gamepad?: Gamepad | null;
}

interface GetAnimationsOptions {
Expand Down Expand Up @@ -5354,7 +5354,7 @@ declare var CSSFontFaceRule: {
};

/**
* The **`CSSFontFeatureValuesRule`** interface represents an @font-feature-values at-rule. The values of its instance properties can be accessed with the CSSFontFeatureValuesMapinterface.
* The **`CSSFontFeatureValuesRule`** interface represents an @font-feature-values at-rule. The values of its instance properties can be accessed with the CSSFontFeatureValuesMap interface.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSFontFeatureValuesRule)
*/
Expand Down Expand Up @@ -16429,7 +16429,7 @@ interface GamepadEvent extends Event {

declare var GamepadEvent: {
prototype: GamepadEvent;
new(type: string, eventInitDict: GamepadEventInit): GamepadEvent;
new(type: string, eventInitDict?: GamepadEventInit): GamepadEvent;
};

/**
Expand Down
6 changes: 3 additions & 3 deletions baselines/ts5.6/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1179,7 +1179,7 @@ interface GamepadEffectParameters {
}

interface GamepadEventInit extends EventInit {
gamepad: Gamepad;
gamepad?: Gamepad | null;
}

interface GetAnimationsOptions {
Expand Down Expand Up @@ -5355,7 +5355,7 @@ declare var CSSFontFaceRule: {
};

/**
* The **`CSSFontFeatureValuesRule`** interface represents an @font-feature-values at-rule. The values of its instance properties can be accessed with the CSSFontFeatureValuesMapinterface.
* The **`CSSFontFeatureValuesRule`** interface represents an @font-feature-values at-rule. The values of its instance properties can be accessed with the CSSFontFeatureValuesMap interface.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSFontFeatureValuesRule)
*/
Expand Down Expand Up @@ -16440,7 +16440,7 @@ interface GamepadEvent extends Event {

declare var GamepadEvent: {
prototype: GamepadEvent;
new(type: string, eventInitDict: GamepadEventInit): GamepadEvent;
new(type: string, eventInitDict?: GamepadEventInit): GamepadEvent;
};

/**
Expand Down
6 changes: 3 additions & 3 deletions baselines/ts5.9/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1179,7 +1179,7 @@ interface GamepadEffectParameters {
}

interface GamepadEventInit extends EventInit {
gamepad: Gamepad;
gamepad?: Gamepad | null;
}

interface GetAnimationsOptions {
Expand Down Expand Up @@ -5355,7 +5355,7 @@ declare var CSSFontFaceRule: {
};

/**
* The **`CSSFontFeatureValuesRule`** interface represents an @font-feature-values at-rule. The values of its instance properties can be accessed with the CSSFontFeatureValuesMapinterface.
* The **`CSSFontFeatureValuesRule`** interface represents an @font-feature-values at-rule. The values of its instance properties can be accessed with the CSSFontFeatureValuesMap interface.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSFontFeatureValuesRule)
*/
Expand Down Expand Up @@ -16440,7 +16440,7 @@ interface GamepadEvent extends Event {

declare var GamepadEvent: {
prototype: GamepadEvent;
new(type: string, eventInitDict: GamepadEventInit): GamepadEvent;
new(type: string, eventInitDict?: GamepadEventInit): GamepadEvent;
};

/**
Expand Down
4 changes: 2 additions & 2 deletions inputfiles/mdn.json
Original file line number Diff line number Diff line change
Expand Up @@ -4117,7 +4117,7 @@
{
"mdn_url": "/en-US/docs/Web/API/CSSFontFeatureValuesRule",
"pageType": "web-api-interface",
"summary": "The CSSFontFeatureValuesRule interface represents an @font-feature-values at-rule. The values of its instance properties can be accessed with the CSSFontFeatureValuesMapinterface."
"summary": "The CSSFontFeatureValuesRule interface represents an @font-feature-values at-rule. The values of its instance properties can be accessed with the CSSFontFeatureValuesMap interface."
},
{
"mdn_url": "/en-US/docs/Web/API/CSSFontFeatureValuesRule/annotation",
Expand All @@ -4127,7 +4127,7 @@
{
"mdn_url": "/en-US/docs/Web/API/CSSFontFeatureValuesRule/characterVariant",
"pageType": "web-api-instance-property",
"summary": "The read-only characterVariant property of the CSSFontFeatureValuesRule interface contains a CSSFontFeatureValuesMap object representing the user-defined-ident and feature index for a variable font which supports characterVariant()."
"summary": "The read-only characterVariant property of the CSSFontFeatureValuesRule interface contains a CSSFontFeatureValuesMap object representing the user-defined-ident and feature index for a variable font which supports character-variant()."
},
{
"mdn_url": "/en-US/docs/Web/API/CSSFontFeatureValuesRule/fontFamily",
Expand Down
4 changes: 4 additions & 0 deletions inputfiles/patches/credential-management.kdl
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,8 @@ removals {
member password // Blink only as of 2025-12
member mediation // WebKit only as of 2025-12 (and under test in Blink)
}

dictionary CredentialRequestOptions {
member uiMode // Blink only as of 2026-02
}
}
12 changes: 6 additions & 6 deletions package-lock.json

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