mirror of
https://github.com/servo/servo.git
synced 2025-09-05 12:38:21 +01:00
Update web-platform-tests to revision d7afcb8708eac08a614d161d5622a48172daf7e3
This commit is contained in:
parent
6f8bb4dd40
commit
edff458e23
791 changed files with 17647 additions and 10322 deletions
|
@ -76,6 +76,7 @@ dictionary PublicKeyCredentialUserEntity : PublicKeyCredentialEntity {
|
|||
dictionary AuthenticatorSelectionCriteria {
|
||||
AuthenticatorAttachment authenticatorAttachment;
|
||||
boolean requireResidentKey = false;
|
||||
ResidentKeyRequirement residentKey;
|
||||
UserVerificationRequirement userVerification = "preferred";
|
||||
};
|
||||
|
||||
|
@ -84,6 +85,12 @@ enum AuthenticatorAttachment {
|
|||
"cross-platform"
|
||||
};
|
||||
|
||||
enum ResidentKeyRequirement {
|
||||
"discouraged",
|
||||
"preferred",
|
||||
"required"
|
||||
};
|
||||
|
||||
enum AttestationConveyancePreference {
|
||||
"none",
|
||||
"indirect",
|
||||
|
@ -228,3 +235,15 @@ dictionary authenticatorBiometricPerfBounds{
|
|||
float FAR;
|
||||
float FRR;
|
||||
};
|
||||
|
||||
partial dictionary AuthenticationExtensionsClientInputs {
|
||||
boolean credProps;
|
||||
};
|
||||
|
||||
dictionary CredentialPropertiesOutput {
|
||||
boolean rk;
|
||||
};
|
||||
|
||||
partial dictionary AuthenticationExtensionsClientOutputs {
|
||||
CredentialPropertiesOutput credProps;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue