NEW 241362
animating the outline-width with transition on a textarea element makes the text janky
https://bugs.webkit.org/show_bug.cgi?id=241362
Summary animating the outline-width with transition on a textarea element makes the t...
Karl Dubost
Reported 2022-06-06 22:30:52 PDT
Created attachment 460058 [details] test case demonstrating the issue Steps to reproduce 1. Open the test case textarea-jumpy-text.html 2. Put the cursor over the text 3. Look at the text Expected: The outline grows around the text which is stable. Actual: The outline grows but the text becomes suddenly junky, vibrating. Notes: 1. It doesn't reproduce on iOS 15.5 2. It doesn't reproduce on macOS Firefox and Chrome latest versions. 3. Initially reported on https://github.com/webcompat/web-bugs/issues/99978 Code of the test case. `transition: outline-width 1s;` ```html <style> body { padding: 30px; } textarea { outline-style: solid; outline-width: 0px; transition: outline-width 1s; width: 30ch; height: 5ch; } textarea:hover { outline-width: 20px; } </style> </head> <textarea> Lorem ipsum dolor sit amet consectetur adipisicing elit. Totam eaque itaque repellat, molestiae, dolore expedita exercitationem voluptas modi consequatur ipsa cum ea similique aliquid aspernatur dolores debitis veritatis autem illo? </textarea> ```
Attachments
test case demonstrating the issue (889 bytes, text/html)
2022-06-06 22:30 PDT, Karl Dubost
no flags
Radar WebKit Bug Importer
Comment 1 2022-06-06 22:31:32 PDT
Karl Dubost
Comment 2 2022-06-15 17:43:16 PDT
Tested on Safari (18614.1.14.1.15) and reproducible. https://bug-241362-attachments.webkit.org/attachment.cgi?id=460058
Karl Dubost
Comment 3 2025-02-12 14:00:30 PST
This is still happenning on a retina screen.
Note You need to log in before you can comment on or make changes to this bug.