RESOLVED FIXED 163479
Add support for reportValidity() on form and form control elements
https://bugs.webkit.org/show_bug.cgi?id=163479
Summary Add support for reportValidity() on form and form control elements
Chris Dumez
Reported 2016-10-14 19:53:06 PDT
Add support for reportValidity() on form and form control elements: - https://html.spec.whatwg.org/#dom-cva-reportvalidity Firefox and Chrome already support this.
Attachments
Patch (78.24 KB, patch)
2016-10-14 20:52 PDT, Chris Dumez
no flags
Archive of layout-test-results from ews121 for ios-simulator-wk2 (12.06 MB, application/zip)
2016-10-14 22:06 PDT, Build Bot
no flags
Patch (103.56 KB, patch)
2016-10-14 22:31 PDT, Chris Dumez
no flags
Archive of layout-test-results from ews126 for ios-simulator-wk2 (9.43 MB, application/zip)
2016-10-14 23:45 PDT, Build Bot
no flags
Patch (130.03 KB, patch)
2016-10-15 08:43 PDT, Chris Dumez
no flags
Chris Dumez
Comment 1 2016-10-14 19:53:23 PDT
Chris Dumez
Comment 2 2016-10-14 20:52:03 PDT
Sam Weinig
Comment 3 2016-10-14 21:09:27 PDT
Comment on attachment 291704 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=291704&action=review > Source/WebCore/html/HTMLFormControlElement.cpp:512 > + String message("An invalid form control with name='%name' is not focusable."); > + message.replace("%name", name()); This could be more efficient if you used makeString("An invalid form control with name=', name(), "' is not focusable.")
Build Bot
Comment 4 2016-10-14 22:06:19 PDT
Comment on attachment 291704 [details] Patch Attachment 291704 [details] did not pass ios-sim-ews (ios-simulator-wk2): Output: http://webkit-queues.webkit.org/results/2288377 New failing tests: imported/w3c/web-platform-tests/html/semantics/forms/constraints/form-validation-reportValidity.html
Build Bot
Comment 5 2016-10-14 22:06:22 PDT
Created attachment 291706 [details] Archive of layout-test-results from ews121 for ios-simulator-wk2 The attached test failures were seen while running run-webkit-tests on the ios-sim-ews. Bot: ews121 Port: ios-simulator-wk2 Platform: Mac OS X 10.11.6
Chris Dumez
Comment 6 2016-10-14 22:31:56 PDT
Build Bot
Comment 7 2016-10-14 23:45:40 PDT
Comment on attachment 291708 [details] Patch Attachment 291708 [details] did not pass ios-sim-ews (ios-simulator-wk2): Output: http://webkit-queues.webkit.org/results/2288770 New failing tests: imported/w3c/web-platform-tests/html/semantics/forms/constraints/form-validation-reportValidity.html
Build Bot
Comment 8 2016-10-14 23:45:44 PDT
Created attachment 291710 [details] Archive of layout-test-results from ews126 for ios-simulator-wk2 The attached test failures were seen while running run-webkit-tests on the ios-sim-ews. Bot: ews126 Port: ios-simulator-wk2 Platform: Mac OS X 10.11.6
Chris Dumez
Comment 9 2016-10-15 08:43:52 PDT
WebKit Commit Bot
Comment 10 2016-10-15 14:34:39 PDT
Comment on attachment 291718 [details] Patch Clearing flags on attachment: 291718 Committed r207380: <http://trac.webkit.org/changeset/207380>
WebKit Commit Bot
Comment 11 2016-10-15 14:34:44 PDT
All reviewed patches have been landed. Closing bug.
Kent Tamura
Comment 12 2016-10-17 01:33:58 PDT
Implementing reportValidity() without enabling interactive validation is very inconsistent. Does this reportValidity() implementation use the old ShadowDOM-based bubble?
Chris Dumez
Comment 13 2016-10-17 09:06:42 PDT
(In reply to comment #12) > Implementing reportValidity() without enabling interactive validation is > very inconsistent. Oh, I did not realize that interactive validation was disabled. Let me look into it. I agree that both should be enabled for consistency. > > Does this reportValidity() implementation use the old ShadowDOM-based bubble? I have not worked on this part, I basically reused code from interactive form validation to make reportValidity() work. I tested that bubbles showed as expected. I have just looked into it and it does appear it currently uses an old ShadowDOM based implementation (that you wrote a long time ago). I need to talk to people about this as I assume this may need improvements.
Radar WebKit Bug Importer
Comment 14 2016-10-17 11:03:03 PDT
Kent Tamura
Comment 15 2016-10-17 19:14:10 PDT
(In reply to comment #13) > I have just looked into it and it does appear it currently uses an old > ShadowDOM based implementation (that you wrote a long time ago). I need to > talk to people about this as I assume this may need improvements. As I wrote in https://bugs.webkit.org/show_bug.cgi?id=95527#c0, The ShadowDOM implementation had multiple problems. I strongly recommend to implement ValidationMessageClient with native widgets.
Chris Dumez
Comment 16 2016-10-17 20:22:50 PDT
(In reply to comment #15) > (In reply to comment #13) > > I have just looked into it and it does appear it currently uses an old > > ShadowDOM based implementation (that you wrote a long time ago). I need to > > talk to people about this as I assume this may need improvements. > > As I wrote in https://bugs.webkit.org/show_bug.cgi?id=95527#c0, The > ShadowDOM implementation had multiple problems. I strongly recommend to > implement ValidationMessageClient with native widgets. Yes, I understand, thanks. I'm currently discussing this with others.
Note You need to log in before you can comment on or make changes to this bug.