Bug 50290
| Summary: | css3 animation of font-size is not smooth. I guess font-size itaretes only over natural numbers in px, not over real. | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | bga_ <bga.email> |
| Component: | CSS | Assignee: | Nobody <webkit-unassigned> |
| Status: | NEW | ||
| Severity: | Normal | CC: | mitz, simon.fraser |
| Priority: | P2 | ||
| Version: | 528+ (Nightly build) | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
bga_
<style>
<![CDATA[
@-webkit-keyframes 'test'
{
from
{
font-size: 50px;
}
50%
{
font-size: 60px;
}
to
{
font-size: 50px;
}
}
.a
{
-webkit-animation: 'test' 2s infinite;
}
]]>
</style>
<div class="a">Lorem ipsum dolor sit amet,</div>
| Attachments | ||
|---|---|---|
| Add attachment proposed patch, testcase, etc. |