Files
ladybird/Tests/LibWeb/Text/input/multi-click-user-select-none-element.html

15 lines
421 B
HTML

<!DOCTYPE html>
<script src="include.js"></script>
<div style="font-size:20px">
super<span style="user-select:none">califragilistic</span>expialidocious
</div>
<script>
test(() => {
internals.click(80, 20, 2);
println(`double-click selected: "${window.getSelection()}"`);
internals.click(80, 20, 3);
println(`triple-click selected: "${window.getSelection()}"`);
});
</script>