LibWeb/HTML: Correctly parse milliseconds in time inputs

This commit brings the way we parse time inputs closer to the spec by
no longer ignoring milliseconds in time strings.
This commit is contained in:
Glenn Skrzypczak 2025-04-18 14:59:15 +02:00 committed by Tim Flynn
commit 9c758e5f65
Notes: github-actions[bot] 2025-04-19 11:10:32 +00:00
9 changed files with 118 additions and 49 deletions

View file

@ -43,7 +43,7 @@ struct YearMonthDay {
struct HourMinuteSecond {
i32 hour;
i32 minute;
i32 second;
f32 second;
};
struct DateAndTime {