RESOLVED INVALID 209736
textarea selectionDirection returns 'none' for mouse selection
https://bugs.webkit.org/show_bug.cgi?id=209736
Summary textarea selectionDirection returns 'none' for mouse selection
Bing Wang
Reported 2020-03-30 05:38:53 PDT
Steps to reproduce the problem: 1. Select some text inside a textarea in backward/forward direction 2. get selectionDirection property on that textarea via javascript What is the expected behavior? Expected to get value 'backward/forward' What went wrong? Always get 'none' Did this work before? N/A Here's jsFiddle that demonstrates the behavior: http://jsfiddle.net/7Mhqy/1/
Attachments
Radar WebKit Bug Importer
Comment 1 2020-03-30 13:41:02 PDT
Alexey Proskuryakov
Comment 2 2020-03-30 13:45:28 PDT
This property only works for keyboard selection (Shift+Right/Left) in WebKit and in Chrome. It does work for mouse selection in Firefox.
Ryosuke Niwa
Comment 3 2020-03-30 14:51:03 PDT
(In reply to Bing Wang from comment #0) > Steps to reproduce the problem: > 1. Select some text inside a textarea in backward/forward direction > 2. get selectionDirection property on that textarea via javascript > > What is the expected behavior? > Expected to get value 'backward/forward' > > What went wrong? > Always get 'none' This is expected. On macOS, mouse selection is directionless. The selection extends backwards or forwards depending on user's input, at which point the direction will be determined.
Note You need to log in before you can comment on or make changes to this bug.