Closed
Bug 680404
Opened 14 years ago
Closed 14 years ago
blink and italic
Categories
(Firefox :: General, defect)
Tracking
()
People
(Reporter: riccardo.piccoli, Unassigned)
Details
Attachments
(2 files, 1 obsolete file)
User Agent: Mozilla/5.0 (X11; Linux x86_64; rv:6.0) Gecko/20100101 Firefox/6.0
Build ID: 20110812103104
Steps to reproduce:
<div class="someclass">
<p>some-text-ending-in-y</p>
</div>
.someclass{
font-style: italic
text-decoration: blink
}
Actual results:
an handful of pixels (maybe even one) of the last character "y" still shows and doesn't blink. Other letters with enough pixel height do the same.
Might be related to bug #79732.
Expected results:
Every pixel should be blinking
Comment 1•14 years ago
|
||
Comment 2•14 years ago
|
||
Reproduced, at least in some zoom levels:
Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.9.2.20) Gecko/20110803 Firefox/3.6.20
Mozilla/5.0 (X11; Linux x86_64; rv:6.0) Gecko/20100101 Firefox/6.0
Mozilla/5.0 (X11; Linux x86_64; rv:7.0) Gecko/20100101 Firefox/7.0
Mozilla/5.0 (X11; Linux x86_64; rv:7.0a2) Gecko/20110816 Firefox/7.0a2
Mozilla/5.0 (X11; Linux x86_64; rv:9.0a1) Gecko/20110819 Firefox/9.0a1
Version: 4.0 Branch → Trunk
Comment on attachment 554396 [details]
Testcase made using code from comment 0.
><html>
> <head>
> <style type="text/css">
> .someclass {
> font-style: italic;
> text-decoration: blink;
> }
> </style>
> </head>
> <body>
> <div class="someclass">
> <p>some-text-ending-in-y</p>
> </div>
> </body>
></html>
<head>
<style type="text/css">
.feedbox {
color: #292929;
width: 130px;
height: 30px;
/* border: solid 1px black;*/
border: solid 1px #292929;
float: left;
-moz-border-radius-topright: 8px;
-moz-border-radius-topleft: 8px;
border-radius: 8px;
border-radius: 8px;
margin: 1px 1px;
}
.running {
background-color: white;
color: #CD0000;
text-decoration: blink;
font-style: italic;
}
.activetab {
border: solid 1px red;
}
.unverified {
background-color: #4599ee;
}
</style>
</head>
<div id="bluesky" class="feedbox unverified running activetab" title="unverified running">
<p>bluesky</p>
</div>
Added new test case since info previously provided were not sufficient
Attachment #554402 -
Attachment mime type: text/plain → text/html
Testcase reviewed. Now can reproduce the bug.
Attachment #554402 -
Attachment is obsolete: true
Updated•14 years ago
|
Attachment #554404 -
Attachment mime type: text/plain → text/html
Comment 6•14 years ago
|
||
I'm pretty sure it's the same problem as in bug 79732.
Status: UNCONFIRMED → RESOLVED
Closed: 14 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•