Re: [csswg-drafts] [css-cascade] Change the precedence order of cascading origins to match reality better?

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