Skip to content

Commit

Permalink
fix missing '(' problem
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffH authored and JeffH committed Nov 28, 2017
1 parent c3df94b commit f89bb97
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -1732,19 +1732,19 @@ See [[dom#abortcontroller-api-integration]] section for detailed instructions.

Note: [[dom#abortcontroller-api-integration]] section specifies that web platform APIs integrating with the
{{AbortController}} must reject the promise immediately once the [=AbortSignal/aborted flag=] is set.
Given the complex inheritance and parallelization structure of the {{PublicKeyCredential/[[Create]]origin, options, sameOriginWithAncestors)}}
and {{PublicKeyCredential/[[DiscoverFromExternalSource]]origin, options, sameOriginWithAncestors)}} methods, the algorithms for the two APIs fulfills this
Given the complex inheritance and parallelization structure of the {{PublicKeyCredential/[[Create]](origin, options, sameOriginWithAncestors)}}
and {{PublicKeyCredential/[[DiscoverFromExternalSource]](origin, options, sameOriginWithAncestors)}} methods, the algorithms for the two APIs fulfills this
requirement by checking the [=AbortSignal/aborted flag=] in three places. In the case of
{{PublicKeyCredential/[[Create]]origin, options, sameOriginWithAncestors)}}, the aborted flag is checked first in
[[credential-management-1#algorithm-create]] immediately before calling {{Credential/[[Create]]origin, options, sameOriginWithAncestors)}},
{{PublicKeyCredential/[[Create]](origin, options, sameOriginWithAncestors)}}, the aborted flag is checked first in
[[credential-management-1#algorithm-create]] immediately before calling {{Credential/[[Create]](origin, options, sameOriginWithAncestors)}},
then in [[#createCredential]] right before [=authenticator sessions=] start, and finally
during [=authenticator sessions=]. The same goes for
{{PublicKeyCredential/[[DiscoverFromExternalSource]]origin, options, sameOriginWithAncestors)}}.
{{PublicKeyCredential/[[DiscoverFromExternalSource]](origin, options, sameOriginWithAncestors)}}.

The [=visibility states|visibility=] and [=focus=] state of the [=Window=] object determines whether the
{{PublicKeyCredential/[[Create]]origin, options, sameOriginWithAncestors)}} and {{PublicKeyCredential/[[DiscoverFromExternalSource]]origin, options, sameOriginWithAncestors)}} operations
{{PublicKeyCredential/[[Create]](origin, options, sameOriginWithAncestors)}} and {{PublicKeyCredential/[[DiscoverFromExternalSource]](origin, options, sameOriginWithAncestors)}} operations
should continue. When the [=Window=] object associated with the [[=Document=] loses focus,
{{PublicKeyCredential/[[Create]]origin, options, sameOriginWithAncestors)}} and {{PublicKeyCredential/[[DiscoverFromExternalSource]]origin, options, sameOriginWithAncestors)}} operations
{{PublicKeyCredential/[[Create]](origin, options, sameOriginWithAncestors)}} and {{PublicKeyCredential/[[DiscoverFromExternalSource]](origin, options, sameOriginWithAncestors)}} operations
SHOULD be aborted.

Issue: The WHATWG HTML WG is discussing whether to provide a hook when a browsing context gains or
Expand Down

0 comments on commit f89bb97

Please sign in to comment.