Matthew Miller

Results 295 comments of Matthew Miller

> So while I like the proposal on one level, I'm not sure this is the right way. This would imply that storing the RP ID tags is enough to...

I've created an Explainer here to help communicate more of the intent behind the proposed new error codes: https://github.com/w3c/webauthn/wiki/Explainer:-New-Error-Codes-(2024-Edition)

This almost seems like an ask for clients to support combining the `"webauthn"` token in the `autocomplete` attribute with more payment-related tokens like these: - "[cc-name](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fe-autocomplete-cc-name)" - "[cc-given-name](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fe-autocomplete-cc-given-name)" - "[cc-additional-name](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fe-autocomplete-cc-additional-name)"...

From the WG call today: This is fine to merge any time once the merge conflicts are resolved.

Hello @bschoenmaeckers, to summarize the ask here, you'd like to see a new "`attestation_statement`" property added to `VerifiedRegistration` that contains the value of `attestation_object.att_stmt` (type of [`AttestationStatement`](https://github.com/duo-labs/py_webauthn/blob/3504cd706204ffc67371e485126051cfaed5fb0c/webauthn/helpers/structs.py#L349-L366))? As an alternative...

Closing for now as stale. Feel free to re-open if you want to continue the conversation.

Hello @treeder, it's unclear to me from that Chromium bug report what I might need to be doing differently here to support inputs within web components. I'm simply calling a...

The best solution I've been able to brainstorm so far is to add an option to `startAuthentication()` to ignore the DOM check so it won't error out 🤔

> If that check isn't really essential then being able to bypass would be great. Well, the check is accurate [as per the working draft of the L3 spec](https://w3c.github.io/webauthn/#GetAssn-ConditionalMediation-Interact-FormControl) that...

Repro HTML file: ```html Shadow DOM attempt class SWANAutofill extends HTMLElement { shadowRoot = this.attachShadow({ mode: "open" }); // shadowRoot = this; connectedCallback() { this.shadowRoot.innerHTML = ` Username `; }...