ladybird/Tests/LibWeb/Text/expected/HTMLInputElement-edit-value.txt
Tim Ledbetter db24440403 LibWeb: Allow keyboard input to alter email inputs
Previously, the`HTMLInputElement.selectinStart` and
`HTMLInputElement.selectionEnd` IDL setters, and the
`setRangeText()` IDL method were used when updating an input's value
on keyboard input. These methods can't be used for this purpose,
since selection doesn't apply to email type inputs. Therefore, this
change introduces internal-use only methods that don't check whether
selection applies to the given input.
2024-12-30 11:04:16 +01:00

6 lines
179 B
Text

input[type=text] value: PASS
input[type=search] value: PASS
input[type=tel] value: PASS
input[type=url] value: PASS
input[type=email] value: PASS
input[type=password] value: PASS