|
1 | 1 | removals { |
2 | | - enum AuthenticatorTransport { |
3 | | - smart-card // WebKit only as of 2023-05 |
4 | | - } |
5 | | - dictionary AuthenticationExtensionsClientInputs { |
6 | | - // https://searchfox.org/mozilla-central/source/dom/webidl/WebAuthentication.webidl |
7 | | - // https://searchfox.org/wubkat/source/Source/WebCore/Modules/webauthn/AuthenticationExtensionsClientInputs.idl |
8 | | - // https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/modules/credentialmanagement/authentication_extensions_client_inputs.idl |
9 | | - member appidExclude |
10 | | - member credBlob |
11 | | - member getCredBlob |
12 | | - member hmacGetSecret // No implementation as of 2025-05 |
13 | | - member payment |
14 | | - } |
15 | | - dictionary AuthenticationExtensionsClientInputsJSON { |
16 | | - member appidExclude |
17 | | - } |
18 | | - dictionary AuthenticationExtensionsClientOutputs { |
19 | | - // (same as *Inputs) |
20 | | - member appidExclude // No implementation as of 2025-05 |
21 | | - member hmacGetSecret // No implementation as of 2025-05 |
22 | | - member payment // Blink only as of 2025-06 |
23 | | - } |
24 | | - dictionary PublicKeyCredentialCreationOptions { |
25 | | - member attestationFormats // Blink only as of 2024-08 |
26 | | - member hints // Blink only as of 2024-08 |
27 | | - } |
28 | | - |
29 | | - dictionary PublicKeyCredentialCreationOptionsJSON { |
30 | | - member attestationFormats // Gecko only as of 2024-08 |
31 | | - } |
32 | | - |
33 | | - dictionary PublicKeyCredentialRequestOptions { |
34 | | - member hints // Blink only as of 2024-08 |
35 | | - } |
36 | | - dictionary CredentialRequestOptions { |
37 | | - // Only `mediation`, `publicKey`, `signal` are implemented by 2+ engines, everything else is currently Blink only. |
38 | | - // https://searchfox.org/mozilla-central/source/dom/webidl/CredentialManagement.webidl |
39 | | - // https://searchfox.org/wubkat/source/Source/WebCore/Modules/credentialmanagement/CredentialRequestOptions.idl |
40 | | - // https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/modules/credentialmanagement/credential_request_options.idl |
41 | | - member digital // Behind a flag in WebKit and Blink as of 2024-03 |
42 | | - member federated |
43 | | - member identity |
44 | | - member otp |
45 | | - member password |
46 | | - } |
| 2 | + enum AuthenticatorTransport { |
| 3 | + smart-card // WebKit only as of 2023-05 |
| 4 | + } |
| 5 | + dictionary AuthenticationExtensionsClientInputs { |
| 6 | + // https://searchfox.org/mozilla-central/source/dom/webidl/WebAuthentication.webidl |
| 7 | + // https://searchfox.org/wubkat/source/Source/WebCore/Modules/webauthn/AuthenticationExtensionsClientInputs.idl |
| 8 | + // https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/modules/credentialmanagement/authentication_extensions_client_inputs.idl |
| 9 | + member appidExclude |
| 10 | + member credBlob |
| 11 | + member getCredBlob |
| 12 | + member hmacGetSecret // No implementation as of 2025-05 |
| 13 | + member payment |
| 14 | + } |
| 15 | + dictionary AuthenticationExtensionsClientInputsJSON { |
| 16 | + member appidExclude |
| 17 | + } |
| 18 | + dictionary AuthenticationExtensionsClientOutputs { |
| 19 | + // (same as *Inputs) |
| 20 | + member appidExclude // No implementation as of 2025-05 |
| 21 | + member hmacGetSecret // No implementation as of 2025-05 |
| 22 | + member payment // Blink only as of 2025-06 |
| 23 | + } |
| 24 | + dictionary PublicKeyCredentialCreationOptions { |
| 25 | + member attestationFormats // Blink only as of 2024-08 |
| 26 | + member hints // Blink only as of 2024-08 |
| 27 | + } |
| 28 | + |
| 29 | + dictionary PublicKeyCredentialCreationOptionsJSON { |
| 30 | + member attestationFormats // Gecko only as of 2024-08 |
| 31 | + } |
| 32 | + |
| 33 | + dictionary PublicKeyCredentialRequestOptions { |
| 34 | + member hints // Blink only as of 2024-08 |
| 35 | + } |
| 36 | + dictionary CredentialRequestOptions { |
| 37 | + // Only `mediation`, `publicKey`, `signal` are implemented by 2+ engines, everything else is currently Blink only. |
| 38 | + // https://searchfox.org/mozilla-central/source/dom/webidl/CredentialManagement.webidl |
| 39 | + // https://searchfox.org/wubkat/source/Source/WebCore/Modules/credentialmanagement/CredentialRequestOptions.idl |
| 40 | + // https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/modules/credentialmanagement/credential_request_options.idl |
| 41 | + member digital // Behind a flag in WebKit and Blink as of 2024-03 |
| 42 | + member federated |
| 43 | + member identity |
| 44 | + member otp |
| 45 | + member password |
| 46 | + } |
47 | 47 | } |
0 commit comments