Underlines retain color while being selected
Categories
(Core :: DOM: Selection, defect, P5)
Tracking
()
People
(Reporter: jruderman, Unassigned)
References
(
URL
)
Details
Attachments
(1 obsolete file)
Comment 1•26 years ago
|
||
Comment 3•26 years ago
|
||
Comment 6•26 years ago
|
||
Comment 7•26 years ago
|
||
Comment 10•24 years ago
|
||
Comment 11•24 years ago
|
||
Comment 12•24 years ago
|
||
Comment 13•24 years ago
|
||
Comment 14•24 years ago
|
||
Comment 15•24 years ago
|
||
Comment 16•24 years ago
|
||
Comment 17•24 years ago
|
||
Comment 18•24 years ago
|
||
Comment 19•24 years ago
|
||
Comment 20•23 years ago
|
||
Comment 21•23 years ago
|
||
Comment 22•23 years ago
|
||
Comment 23•23 years ago
|
||
Comment 24•23 years ago
|
||
Comment 25•23 years ago
|
||
Updated•23 years ago
|
Comment 26•22 years ago
|
||
Comment 27•21 years ago
|
||
Comment 28•20 years ago
|
||
Comment 29•20 years ago
|
||
Comment 30•5 years ago
|
||
Bulk-downgrade of unassigned, >=5 years untouched DOM/Storage bugs' priority.
If you have reason to believe this is wrong (especially for the severity), please write a comment and ni :jstutte.
Comment 31•2 years ago
|
||
I am pretty sure this bug is affecting Firefox currently, specifically at least 117.0. This is also an issue in Firefox for Android, at least 117.0.1. If I go to my site (https://tristan.partin.io/) in Firefox and highlight some text containing a link, the underline (text decoration) retains its original non-highlighted color. If I do the same in Chromium, the underline (text decoration) is black as expected.
Here is a minimal reproducer:
<head>
<style>
.consistent-link,
.consistent-link:link,
.consistent-link:visited {
color: #7db3e3;
}
::selection {
background-color: #f48024;
color: black;
}
</style>
</head>
<body>
Hello <a class="consistent-link" href="https://duck.com">World</a>
</body>
If you would like me to attach an image, let me know.
Comment 32•2 years ago
|
||
Hmm... I guess I missed that this bug is open, not closed. My apologies :).
Description
•