Closed smfr closed 2 years ago
The tests for sin(), cos() etc are trying to apply sin(45deg) as a value for the width property, which doesn't work because it has no units.
sin()
cos()
sin(45deg)
width
Yup, this should be fixed. I guess calc(sin(45deg) * 100px) would work?
calc(sin(45deg) * 100px)
Yes, that should be fine.
I corrected all the tests and tested with Epiphany Browser.
The tests for
sin()
,cos()
etc are trying to applysin(45deg)
as a value for thewidth
property, which doesn't work because it has no units.