Open
Description
Do you want to request a feature or report a bug?
A bug.
If the current behavior is a bug, please provide the steps to reproduce and
if a minimal demo of the problem via Glitch or similar (template:
https://glitch.com/edit/#!/react-native-web-playground).
- Create a component which uses
StyleSheet
for styling and apply this class
.myClass {
transitionProperty: 'transform, opacity',
transitionDuration: '0.15s',
transitionTimingFunction: 'ease, step-end'
}
- Run the project locally and examine the DOM node to which you've applied
myClass
- Notice
transition-property: -webkit-transform, transform, opacity;
andtransition-timing-function: ease, step-end;
Here, both ease
and step-end
are applied to transform
: ease
via -webkit-transform
and step-end
via transform
.
What is the expected behavior?
Expect that ease
be applied to transform
and step-end
be applied to opacity
- OS: macOS Sierra 10.12.6
- Browser: Chrome 64.0.3282.186, Safari 11.0.3
- React Native for Web (version): 0.3.1
- React (version): 16.2