Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upIs CSS transition on font-size property implemented? #12745
Closed
Comments
|
I believe the problem here is that animating any property that requires reconstructing flows is broken, since the layout code that responds to the TickAnimation message only performs style recalculation, not flow construction. @pcwalton What's the right thing to do here? |
|
Oh, how annoying. I guess we should round trip to script for those so we can reconstruct flows while the DOM is locked. |
|
This is still not implemented. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Unsure if CSS transitioning on the
font-sizeproperty is implemented yet?Applying the transition does not have any effect - the below example 'toggles' between a large font size and back again. In Servo, there is no transition but just a 'jump' between the two font sizes.
Online test case here.