Bug 50290 - css3 animation of font-size is not smooth. I guess font-size itaretes only over natural numbers in px, not over real.
Summary: css3 animation of font-size is not smooth. I guess font-size itaretes only ov...
Status: NEW
Alias: None
Product: WebKit
Classification: Unclassified
Component: CSS (show other bugs)
Version: 528+ (Nightly build)
Hardware: PC Windows XP
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-11-30 16:36 PST by bga_
Modified: 2010-11-30 22:42 PST (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description bga_ 2010-11-30 16:36:43 PST
<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>