ladybird/Tests/LibWeb/Text/input/double-click-password.html

10 lines
238 B
HTML
Raw Normal View History

<!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>