diff --git a/index.bs b/index.bs index ed17c1f2c..11e52aa66 100644 --- a/index.bs +++ b/index.bs @@ -941,6 +941,9 @@ When this method is invoked, the user agent MUST execute the following algorithm : {{AuthenticatorAssertionResponse/signature}} :: A new {{ArrayBuffer}}, created using |global|'s [=%ArrayBuffer%=], containing the bytes of the returned {{signature}} + : {{AuthenticatorAssertionResponse/userId}} + :: A new {{DOMString}} containing the user handle returned from the successful [=authenticatorGetAssertion=] operation, + as defined in [[#op-get-assertion]]. : {{PublicKeyCredential/clientExtensionResults}} :: A new {{AuthenticationExtensions}} object containing the [=extension identifier=] → [=client extension output=] entries created by running each extension's [=client extension processing=] algorithm to create the [=client @@ -1058,6 +1061,7 @@ optionally evidence of [=user consent=] to a specific transaction. interface AuthenticatorAssertionResponse : AuthenticatorResponse { [SameObject] readonly attribute ArrayBuffer authenticatorData; [SameObject] readonly attribute ArrayBuffer signature; + [SameObject] readonly attribute DOMString userId; };