Closed
Bug 525322
Opened 16 years ago
Closed 16 years ago
highlighted text un-highlighted on hover-transform
Categories
(Core :: Layout, defect)
Core
Layout
Tracking
()
RESOLVED
WORKSFORME
People
(Reporter: jykng, Unassigned)
Details
Attachments
(1 file)
|
549 bytes,
text/html
|
Details |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.4) Gecko/20091016 Firefox/3.5.4 (.NET CLR 3.5.30729)
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.4) Gecko/20091016 Firefox/3.5.4 (.NET CLR 3.5.30729)
So if you have an element that uses the (-moz-)transform value on the pseudoclass :hover the text highlight, it will become un-highlighted because of the hover.
<style>
.explodeme{
width:100px;
height:50px;
padding:18px;
background:#e386b4;
}
.explodeme:hover{
-moz-transform:scale(2.0) rotate(60deg);
}
</style>
<div class="explodeme">I explode when the mouse is on me!</div>
Reproducible: Always
Steps to Reproduce:
1. Create an element, that uses -moz-transform on it's hover pseudoclass
2. Highlight some text with your mouse over it.
Actual Results:
The highlighted text is un-highlighted.
Expected Results:
The highlighted text should remain highlighted.
Comment on attachment 409184 [details]
The hover highlight
><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
><html xmlns="http://www.w3.org/1999/xhtml">
><head>
><meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
><title>Untitled Document</title>
><style>
>.explodeme{
>width:100px;
>height:50px;
>padding:18px;
>background:#e386b4;
>margin:200px;
>}
>.explodeme:hover{
>-moz-transform:scale(2.0) rotate(60deg);
>}
>
></style>
></head>
>
><body>
> <div class="explodeme">I explode when the mouse is on me!</div>
></body>
></html>
Comment 3•16 years ago
|
||
This seems to be fixed in a current trunk build.
Status: UNCONFIRMED → RESOLVED
Closed: 16 years ago
Component: General → Layout
OS: Windows XP → All
Product: Firefox → Core
QA Contact: general → layout
Hardware: x86 → All
Resolution: --- → WORKSFORME
You need to log in
before you can comment on or make changes to this bug.
Description
•