user-select: all on contenteditable and input does not allow selection
Categories
(Core :: Layout, defect, P3)
Tracking
()
People
(Reporter: tlouw, Unassigned)
Details
In Bug 1774697 contenteditable and input fields with text were changed to override the user-select
used value to "text" (should be "contain" as per the spec, but gecko deals with "text" the same way, so it is used in stead).
It works for all values except for all
which behaves the old way where it select the entire text at a time in stead of being able to select single characters.
There is code here that allows input fields to behave correctly, but the side effects of the change is unknown at this time, but should be a good place to start.
The failing tests are here:
testing/web-platform/tests/selection/user-select-on-input-and-contenteditable.html
Comment 1•3 years ago
|
||
Yeah, I suspect the loop you link should do something more similar to UsedUserSelect()
(if not just use it) to handle that case.
Updated•3 years ago
|
Description
•