mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-21 03:55:24 +00:00
LibWeb: Remove default value from CredentialRequestOptions.password
This is probably a spec bug. If the property has a default value it will always be populated in the `CredentialRequestOptions` dictionary making that credential type always active.
This commit is contained in:
parent
db2e6d0198
commit
d130733f56
1 changed files with 4 additions and 1 deletions
|
@ -9,7 +9,10 @@ interface PasswordCredential : Credential {
|
|||
PasswordCredential includes CredentialUserData;
|
||||
|
||||
partial dictionary CredentialRequestOptions {
|
||||
boolean password = false;
|
||||
// FIXME: Spec bug?
|
||||
// https://github.com/w3c/webappsec-credential-management/issues/270
|
||||
// boolean password = false;
|
||||
boolean password;
|
||||
};
|
||||
|
||||
dictionary PasswordCredentialData : CredentialData {
|
||||
|
|
Loading…
Add table
Reference in a new issue