On Wed, 9 Sep 2026 20:31:50 GMT, Andy Goryachev <[email protected]> wrote:
>> modules/javafx.graphics/src/test/java/test/javafx/css/StylesheetTest.java >> line 820: >> >>> 818: transition-duration: 160ms, 0.2s; >>> 819: transition-delay: 0s, -20ms; >>> 820: transition-timing-function: ease-out, linear; >> >> looks like the test is incomplete, `cubic-bezier()` and `steps()` fail to >> serialize, example: >> >> `transition-timing-function: cubic-bezier(0.2, 0.4, 0.8, 1.0);` > > speaking of `steps()`, do we want to include all possible values (jump-*, > start, end)? I think this is not related to a missing converter, but good catch nonetheless. Because in the CSS transition PR (I checked it before), only the `InterpolatorConverter` and `TransitionDefinitionConverter` were added (and `DurationConverter$SequenceConverter`). `cubic-bezier` is handled in `InterpolatorConverter`, so maybe something is missing for the actual serialization. ------------- PR Review Comment: https://git.openjdk.org/jfx/pull/2303#discussion_r3972897936
