[ https://issues.apache.org/jira/browse/TAP5-2600?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17736707#comment-17736707 ]
ASF subversion and git services commented on TAP5-2600: ------------------------------------------------------- Commit 14098e6f772fd211a590247b6c8a9af8b622fc7d in tapestry-5's branch refs/heads/master from Ben Weidig [ https://gitbox.apache.org/repos/asf?p=tapestry-5.git;h=14098e6f7 ] TAP5-2708: simplified CssCompressorSpec, added test for TAP5-2600 > CSS minification breaks transition statement > -------------------------------------------- > > Key: TAP5-2600 > URL: https://issues.apache.org/jira/browse/TAP5-2600 > Project: Tapestry 5 > Issue Type: Bug > Components: tapestry-webresources > Affects Versions: 5.4.3 > Reporter: Svein > Assignee: Ben Weidig > Priority: Major > > {code:java} > transition: all 500ms ease 0s; > {code} > is turned into > > {code:java} > transition: all 500ms ease 0; > {code} > This does work in Chrome, Firefox... > > > I think "transition:" need to be excluded in: > CssCompressor:328 > > {code:java} > css = > css.replaceAll("(?i)(^|[^0-9])(?:0?\\.)?0(?:px|em|in|cm|mm|pc|pt|ex|deg|g?rad|m?s|k?hz)", > "$10"); > {code} > > -- This message was sent by Atlassian Jira (v8.20.10#820010)