WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
NEW
Bug 269832
setValidity of ElementInternals can't handle missing optional anchor parameter
https://bugs.webkit.org/show_bug.cgi?id=269832
Summary
setValidity of ElementInternals can't handle missing optional anchor parameter
jeripeier
Reported
2024-02-20 23:37:52 PST
Steps to reproduce: 1. Go to
https://jsfiddle.net/3js69ngu/3/
. You will find a custom web component imitating a checkbox form control. 2. Click on "Submit Form" in the "Custom Checkbox" section Actual results: - No validation message appears - Console error: "An invalid form control is not focusable." There is the "setValidity(flags?: ValidityStateFlags, message?: string, anchor?: HTMLElement): void;" method to set the validity state of a custom component using ElementInternals. As per description, the "anchor" parameter, which is used as the anchor to display the validity message, is optional. However, in Firefox, the message is not displayed as long anchor parameter is not provided. The error message "An invalid form control is not focusable." is not true, as the custom form component (see
https://jsfiddle.net/3js69ngu/3/
) is focusable. Providing the host of the component as parameter is not possible, as the anchor parameter element needs to be inside the shadow DOM. Definition: anchor – An HTMLElement which can be used by the user agent to report problems with this form submission. Expected results: Not passing an anchor should focus the host and display the message there. Check Chromium, where it is implemented and working like expected.
Attachments
Add attachment
proposed patch, testcase, etc.
jeripeier
Comment 1
2024-02-22 02:57:22 PST
Related specification discussion:
https://github.com/whatwg/html/issues/10155
Radar WebKit Bug Importer
Comment 2
2024-02-27 23:38:14 PST
<
rdar://problem/123744294
>
Lukas Spirig
Comment 3
2024-10-10 11:35:10 PDT
Has there been any progress with this? Firefox has since addressed this:
https://bugzilla.mozilla.org/show_bug.cgi?id=1881199
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug