From 681027e0aaa8d897d59a837f048651d1a21582c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Pe=C3=B1a=20Moreno?= Date: Wed, 31 Jul 2024 17:22:52 -0400 Subject: [PATCH] rebase --- spec/index.bs | 39 --------------------------------------- 1 file changed, 39 deletions(-) diff --git a/spec/index.bs b/spec/index.bs index 36f721a87..f7a08677a 100644 --- a/spec/index.bs +++ b/spec/index.bs @@ -728,38 +728,6 @@ dictionary DisconnectedAccount { required USVString account_id; }; -## The IdentityCredentialError Interface ## {#browser-api-identity-credential-error-interface} - - -This specification introduces a new type of {{DOMException}}, the {{IdentityCredentialError}}. It -is used when the [=IDP=] cannot create an {{IdentityCredential}} after the user has requested to use -a federated account. - -
-  [Exposed=Window, SecureContext]
-  interface IdentityCredentialError: DOMException {
-    constructor(optional DOMString message = "", IdentityCredentialErrorInit options);
-    readonly attribute DOMString code;
-    readonly attribute DOMString url;
-  };
-
- -
-The {{IdentityCredentialError/constructor()}}, given a |realm|, a {{DOMString}} |message| and a - {{IdentityCredentialErrorInit}} |options| must run the following steps: - 1. Invoke the {{DOMException}}'s {{DOMException/constructor()}}, passing |realm| and |message|. - 1. Set this.{{IdentityCredentialError/code}} to |options|.{{IdentityCredentialError/code}}. - 1. Set this.{{IdentityCredentialError/url}} to |options.{{IdentityCredentialError/url}}. -
- -
- : {{IdentityCredentialError/code}} - :: The {{IdentityCredentialError/code}}'s attribute getter returns the value it is set to. - It represents the type of error which resulted in an {{IdentityCredential}} not being created. - : {{IdentityCredentialError/url}} - :: The {{IdentityCredentialError/url}}'s attribute getter returns the value it is set to. - It represents a URL where the user can learn more information about the error. -
### The CredentialRequestOptions ### {#browser-api-credential-request-options} @@ -1473,13 +1441,6 @@ dictionary IdentityProviderToken { }; - -dictionary IdentityCredentialErrorInit { - DOMString code; - DOMString url; -}; - - ### Request permission to sign-up ### {#request-permission-signup}