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
14 changes: 0 additions & 14 deletions inputfiles/patches/crypto.kdl

This file was deleted.

5 changes: 5 additions & 0 deletions inputfiles/patches/media-capabilities.kdl
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
removals {
dictionary KeySystemTrackConfiguration {
member encryptionScheme // Gecko only as of 2025-05
}
}
72 changes: 50 additions & 22 deletions inputfiles/patches/webauthn.kdl
Original file line number Diff line number Diff line change
@@ -1,24 +1,52 @@
removals {
enum AuthenticatorTransport {
smart-card // WebKit only as of 2023-05
}
dictionary AuthenticationExtensionsClientInputs {
// https://searchfox.org/mozilla-central/source/dom/webidl/WebAuthentication.webidl
// https://searchfox.org/wubkat/source/Source/WebCore/Modules/webauthn/AuthenticationExtensionsClientInputs.idl
// https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/modules/credentialmanagement/authentication_extensions_client_inputs.idl
member appidExclude
member credBlob
member getCredBlob
member hmacGetSecret // No implementation as of 2025-05
member payment
}
dictionary AuthenticationExtensionsClientInputsJSON {
member appidExclude
}
dictionary AuthenticationExtensionsClientOutputs {
// (same as *Inputs)
member appidExclude // No implementation as of 2025-05
member hmacGetSecret // No implementation as of 2025-05
member payment // Blink only as of 2025-06
}
enum AuthenticatorTransport {
smart-card // WebKit only as of 2023-05
}

dictionary AuthenticationExtensionsClientInputs {
// https://searchfox.org/mozilla-central/source/dom/webidl/WebAuthentication.webidl
// https://searchfox.org/wubkat/source/Source/WebCore/Modules/webauthn/AuthenticationExtensionsClientInputs.idl
// https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/modules/credentialmanagement/authentication_extensions_client_inputs.idl
member appidExclude
member credBlob
member getCredBlob
member hmacGetSecret // No implementation as of 2025-05
member payment
}

dictionary AuthenticationExtensionsClientInputsJSON {
member appidExclude
}

dictionary AuthenticationExtensionsClientOutputs {
// (same as *Inputs)
member appidExclude // No implementation as of 2025-05
member hmacGetSecret // No implementation as of 2025-05
member payment // Blink only as of 2025-06
}

dictionary PublicKeyCredentialCreationOptions {
member attestationFormats // Blink only as of 2024-08
member hints // Blink only as of 2024-08
}

dictionary PublicKeyCredentialCreationOptionsJSON {
member attestationFormats // Gecko only as of 2024-08
}

dictionary PublicKeyCredentialRequestOptions {
member hints // Blink only as of 2024-08
}

dictionary CredentialRequestOptions {
// Only `mediation`, `publicKey`, `signal` are implemented by 2+ engines, everything else is currently Blink only.
// https://searchfox.org/mozilla-central/source/dom/webidl/CredentialManagement.webidl
// https://searchfox.org/wubkat/source/Source/WebCore/Modules/credentialmanagement/CredentialRequestOptions.idl
// https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/modules/credentialmanagement/credential_request_options.idl
member digital // Behind a flag in WebKit and Blink as of 2024-03
member federated
member identity
member otp
member password
}
}
35 changes: 35 additions & 0 deletions inputfiles/patches/webcrypto.kdl
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
// https://github.com/microsoft/TypeScript/issues/46036
dictionary CryptoKeyPair {
member privateKey required=#true
member publicKey required=#true
}

interface CryptoKey {
property algorithm type=KeyAlgorithm
property usages {
type sequence {
type KeyUsage
}
}
}

removals {
enum KeyFormat {
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
}

enum KeyUsage {
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
}

dictionary JsonWebKey {
member priv // No implementation as of 2025-09
member pub // No implementation as of 2025-09
}
}
68 changes: 0 additions & 68 deletions inputfiles/removedTypes.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,6 @@
"ConnectionType": {
"value": ["wimax"]
},
"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 @@ -234,21 +218,6 @@
}
}
},
"CredentialRequestOptions": {
"members": {
"member": {
// Only `mediation`, `publicKey`, `signal` are implemented by 2+ engines, everything else is currently Blink only.
// https://searchfox.org/mozilla-central/source/dom/webidl/CredentialManagement.webidl
// https://searchfox.org/wubkat/source/Source/WebCore/Modules/credentialmanagement/CredentialRequestOptions.idl
// https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/modules/credentialmanagement/credential_request_options.idl
"digital": null, // Behind a flag in WebKit and Blink as of 2024-03
"federated": null,
"identity": null,
"otp": null,
"password": null
}
}
},
"DisplayMediaStreamOptions": {
"members": {
"member": {
Expand Down Expand Up @@ -322,14 +291,6 @@
}
}
},
"JsonWebKey": {
"members": {
"member": {
"priv": null, // No implementation as of 2025-09
"pub": null // No implementation as of 2025-09
}
}
},
"KeyframeAnimationOptions": {
"members": {
"member": {
Expand All @@ -338,13 +299,6 @@
}
}
},
"KeySystemTrackConfiguration": {
"members": {
"member": {
"encryptionScheme": null // Gecko only as of 2025-05
}
}
},
"MediaCapabilitiesDecodingInfo": {
"members": {
"member": {
Expand Down Expand Up @@ -453,28 +407,6 @@
}
}
},
"PublicKeyCredentialCreationOptions": {
"members": {
"member": {
"attestationFormats": null, // Blink only as of 2024-08
"hints": null // Blink only as of 2024-08
}
}
},
"PublicKeyCredentialCreationOptionsJSON": {
"members": {
"member": {
"attestationFormats": null // Gecko only as of 2024-08
}
}
},
"PublicKeyCredentialRequestOptions": {
"members": {
"member": {
"hints": null // Blink only as of 2024-08
}
}
},
"PushEventInit": {
"members": {
"member": {
Expand Down