mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-22 16:09:23 +00:00
This matches the behavior of other browsers, and hides any indication of word boundaries in the password.
9 lines
238 B
HTML
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>
|