Skip to content

Commit

Permalink
Merge pull request #2217 from zacknewman/domorigins
Browse files Browse the repository at this point in the history
Make remaining `USVString`s `DOMString`s
  • Loading branch information
selfissued authored Dec 18, 2024
2 parents 57efac8 + 95fb560 commit 26e28ec
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,6 @@ spec:url; type:dfn; text:domain
spec:url; type:dfn; for:url; text:host
spec:url; type:dfn; text:valid domain;
spec:webidl; type:dfn; text:DOMString
spec:webidl; type:dfn; text:USVString
spec:webidl; type:interface; text:Promise
</pre>

Expand Down Expand Up @@ -7225,10 +7224,10 @@ but the currently used [=RP ID=] might be "example.com".
:: [=authentication extension|Authentication=]

: Client extension input
:: A single USVString specifying a FIDO |AppID|.
:: A single DOMString specifying a FIDO |AppID|.
<xmp class="idl">
partial dictionary AuthenticationExtensionsClientInputs {
USVString appid;
DOMString appid;
};
</xmp>

Expand Down Expand Up @@ -7288,10 +7287,10 @@ During a transition from the FIDO U2F JavaScript API, a [=[RP]=] may have a popu
:: [=registration extension|Registration=]

: Client extension input
:: A single USVString specifying a FIDO |AppID|.
:: A single DOMString specifying a FIDO |AppID|.
<xmp class="idl">
partial dictionary AuthenticationExtensionsClientInputs {
USVString appidExclude;
DOMString appidExclude;
};
</xmp>

Expand Down Expand Up @@ -7450,7 +7449,7 @@ Note: this extension may be implemented for [=authenticators=] that do not use [

dictionary AuthenticationExtensionsPRFInputs {
AuthenticationExtensionsPRFValues eval;
record<USVString, AuthenticationExtensionsPRFValues> evalByCredential;
record<DOMString, AuthenticationExtensionsPRFValues> evalByCredential;
};

partial dictionary AuthenticationExtensionsClientInputs {
Expand Down

0 comments on commit 26e28ec

Please sign in to comment.