top | item 46514189

(no title)

javcasas | 1 month ago

Don't blame it on FF, but on CSS user-select: none

https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/P...

discuss

order

PunchyHamster|1 month ago

I'm not talking about blocking selection (which is annoying too but different issue)

There are cases where you can select text, ctrl+c works, but just selecting it doesn't copy it to primary clipboard (example I hit often is various CI/CD text fields like in Jenkins)

eitau_1|1 month ago

Sad reality of replacing plain old text boxes with "smarter" re-implementations: https://utcc.utoronto.ca/~cks/space/blog/web/WebEditingVsCut...

Some (including the most popular: codemirror) go as far as putting themselves inside "natural" selection flow: they're interpreting mouse inputs, cancelling default behavior and selecting text themselves (programmatically via setSelectionRange). And Firefox deliberately ignores such selection: https://searchfox.org/firefox-main/rev/edb7c6118aa4fc5b09d84...