Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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: 14 additions & 0 deletions inputfiles/patches/crypto-public.kdl
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
removals {
Copy link
Collaborator

Choose a reason for hiding this comment

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

this should go to webauthn.kdl which already exists

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
}
}
37 changes: 37 additions & 0 deletions inputfiles/patches/crypto.kdl
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,40 @@ interface CryptoKey {
}
}
}

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 KeySystemTrackConfiguration {
member encryptionScheme // Gecko only as of 2025-05
}

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
}

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