Re: [csswg-drafts] [css-transitions-1] Clarify priority `transition-property` over `transition-timing-function` in `transition` (#7897)

Seems there is interoperability that `transition-timing-function` has more priority:
```js
var s = document.body.style;
s.transition = "ease linear";
[s.transitionTimingFunction, s.transitionProperty]; // [ "ease", "linear" ]
```

-- 
GitHub Notification of comment by Loirooriol
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/7897#issuecomment-1283017480 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Tuesday, 18 October 2022 21:18:40 UTC