ladybird/Tests/LibWeb/Text/expected/HTML/HTMLInputElement-invalid-time-digits.txt
Glenn Skrzypczak 9c758e5f65 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.
2025-04-19 07:09:36 -04:00

6 lines
134 B
Text

Parsed invalid as NaN
Parsed xx:34:56 as NaN
Parsed 12:xx:56 as NaN
Parsed 12:34:xx as NaN
Parsed 12:34:60 as NaN
PASS (didn't crash)