Files
ladybird/Tests/LibWeb/Text/expected/selection-toString-focused-text-control-delegation.txt
Jonathan Gamble 7385569a02 LibWeb: Selection toString focused text control delegation
Allows selected text in form controls to be copied to clipboard.
2026-01-02 18:40:05 +01:00

7 lines
411 B
Plaintext

initial, window.getSelection().toString() is ""
after selecting foo, window.getSelection().toString() is "foo"
after selecting bar, window.getSelection().toString() is "bar"
after unselecting bar, window.getSelection().toString() is ""
after selecting 'z' from normal text input, window.getSelection().toString() is "z"
after selecting 'boo' from password input, window.getSelection().toString() is "•••"