ladybird/Tests/LibWeb/Text/input/double-click-password.html
Timothy Flynn 57b5df21c7 LibWeb: Select the entire input when double clicking password fields
This matches the behavior of other browsers, and hides any indication
of word boundaries in the password.
2025-08-10 11:05:49 +02:00

9 lines
238 B
HTML

<!doctype html>
<script src="include.js"></script>
<input type="password" value="well hello friends" />
<script>
test(() => {
internals.doubleclick(20, 20);
println(window.getSelection().toString());
});
</script>