RESOLVED FIXED157632
Unprefix -webkit-cross-fade()
https://bugs.webkit.org/show_bug.cgi?id=157632
Summary Unprefix -webkit-cross-fade()
Simon Fraser (smfr)
Reported 2016-05-12 11:48:35 PDT
Attachments
Patch (39.23 KB, patch)
2016-05-12 21:34 PDT, Simon Fraser (smfr)
darin: review+
Simon Fraser (smfr)
Comment 1 2016-05-12 21:34:20 PDT
Simon Fraser (smfr)
Comment 2 2016-05-13 15:40:34 PDT
yisibl
Comment 3 2016-05-25 22:43:14 PDT
Webkit implementation of the grammar and the latest spec are not the same. cross-fade() = cross-fade( <cf-mixing-image> , <cf-final-image>? ) <cf-mixing-image> = <percentage>? && <image> <cf-final-image> = <image> | <color> So we have to put the percentage in front of it, and remove the comma. Before: -webkit-cross-fade(url(foo.png), url(bar.png), 20%) After: cross-fade(20% url(foo.png), url(bar.png))
yisibl
Comment 4 2016-05-25 22:45:10 PDT
And support <color> cross-fade(20% url(foo.png), #000)
Fredrik Söderquist
Comment 5 2017-11-22 05:32:05 PST
I filed bug 179942 for following up on comment 3.
Note You need to log in before you can comment on or make changes to this bug.