RESOLVED FIXED 234039
Improve <type="datetime-local"> value parsing and sanitization
https://bugs.webkit.org/show_bug.cgi?id=234039
Summary Improve <type="datetime-local"> value parsing and sanitization
Chris Dumez
Reported 2021-12-08 16:21:38 PST
Allow using a space as date / time separator in <type="datetime-local">, instead of simply allowing a 'T'. This would align our behavior with Gecko and allow us to pass more tests in WPT.
Attachments
Patch (5.01 KB, patch)
2021-12-08 16:24 PST, Chris Dumez
no flags
Patch (13.89 KB, patch)
2021-12-09 09:58 PST, Chris Dumez
no flags
Patch (25.12 KB, patch)
2021-12-09 11:58 PST, Chris Dumez
no flags
Patch (30.95 KB, patch)
2021-12-09 16:16 PST, Chris Dumez
no flags
Patch (30.97 KB, patch)
2021-12-09 17:23 PST, Chris Dumez
no flags
Patch (37.31 KB, patch)
2021-12-10 09:56 PST, Chris Dumez
no flags
Patch (36.66 KB, patch)
2021-12-10 11:45 PST, Chris Dumez
no flags
Chris Dumez
Comment 1 2021-12-08 16:24:24 PST
Chris Dumez
Comment 2 2021-12-09 09:58:20 PST
Chris Dumez
Comment 3 2021-12-09 11:58:42 PST
Chris Dumez
Comment 4 2021-12-09 16:16:45 PST
Darin Adler
Comment 5 2021-12-09 17:16:26 PST
Comment on attachment 446628 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=446628&action=review > Source/WebCore/ChangeLog:9 > + This would align our behavior with Gecko and allow us to pass more tests in WPT. What about specification? > Source/WebCore/ChangeLog:21 > + - The output will use the shortest possible string, omitting seconds or milliseconds when 0, as per > + https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-normalised-local-date-and-time-string Good, but not mentioned in the bug title. > Source/WebCore/ChangeLog:27 > + Fix bug where we would allow more than 3 digits for the millisecond part of the time (we > + would silently ignore follow-up digits instead of failing parsing). This is as per: Good, but not mentioned in the bug title. > Source/WebCore/ChangeLog:38 > + The output will use the shortest possible string, omitting seconds or milliseconds when 0, as per > + https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-normalised-local-date-and-time-string Good, but not mentioned in the bug title. > Source/WebCore/platform/DateComponents.cpp:483 > // Regardless of the number of digits, we only ever parse at most 3. All other > // digits after that are ignored, but the buffer is incremented as if they were > // all parsed. This comment does not make sense any more and should be deleted.
Chris Dumez
Comment 6 2021-12-09 17:18:53 PST
Comment on attachment 446628 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=446628&action=review >> Source/WebCore/ChangeLog:9 >> + This would align our behavior with Gecko and allow us to pass more tests in WPT. > > What about specification? Specification allows a space or a 'T' (in line with WPT test): https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-local-date-and-time-string Will clarify the change log. >> Source/WebCore/ChangeLog:38 >> + https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-normalised-local-date-and-time-string > > Good, but not mentioned in the bug title. I guess I will need a more generic bug title. >> Source/WebCore/platform/DateComponents.cpp:483 >> // all parsed. > > This comment does not make sense any more and should be deleted. OK.
Chris Dumez
Comment 7 2021-12-09 17:23:06 PST
Chris Dumez
Comment 8 2021-12-10 09:56:04 PST
Darin Adler
Comment 9 2021-12-10 10:51:14 PST
Comment on attachment 446746 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=446746&action=review > LayoutTests/platform/ios-wk2/imported/w3c/web-platform-tests/html/semantics/forms/constraints/form-validation-validity-valueMissing-expected.txt:87 > -PASS [INPUT in RADIO status] The checked attribute is false > +FAIL [INPUT in RADIO status] The checked attribute is false assert_true: The validity.valueMissing should be true. expected true got false Regression, not progression?
Chris Dumez
Comment 10 2021-12-10 10:52:52 PST
Comment on attachment 446746 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=446746&action=review >> LayoutTests/platform/ios-wk2/imported/w3c/web-platform-tests/html/semantics/forms/constraints/form-validation-validity-valueMissing-expected.txt:87 >> +FAIL [INPUT in RADIO status] The checked attribute is false assert_true: The validity.valueMissing should be true. expected true got false > > Regression, not progression? Weird, no such failure in the Mac output. I'll investigate. Thanks for catching.
Chris Dumez
Comment 11 2021-12-10 11:45:28 PST
Chris Dumez
Comment 12 2021-12-10 11:46:21 PST
It was just a bad baseline because I had a patch impacting the same test that landed super recently. No issue with the code change itself.
EWS
Comment 13 2021-12-10 12:38:54 PST
Committed r286869 (245100@main): <https://commits.webkit.org/245100@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 446771 [details].
Radar WebKit Bug Importer
Comment 14 2021-12-10 12:39:39 PST
Note You need to log in before you can comment on or make changes to this bug.