- From: Emilio Cobos Álvarez via GitHub <sysbot+gh@w3.org>
- Date: Fri, 28 Jul 2017 14:16:21 +0000
- To: public-css-archive@w3.org
Well, chrome (probably WK too?) really has more bugs wrt animations, that really go into the same bucket of "you should consider also which rules are in the other levels of the cascade before animating, not just the existing computed style"... ```html <!doctype html> <style> @keyframes bounce { from { font-size: 10px; } to { font-size: 40px; } } div { width: 10em; height: 10em; background: red; animation: bounce infinite 5s ease; } </style> <div></div> ``` -- GitHub Notification of comment by emilio Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/1658#issuecomment-318663519 using your GitHub account
Received on Friday, 28 July 2017 14:16:22 UTC