RFR: 8311895: CSS Transitions [v22]
Michael Strauß
mstrauss at openjdk.org
Wed Jun 5 21:49:56 UTC 2024
On Wed, 5 Jun 2024 17:43:46 GMT, Kevin Rushforth <kcr at openjdk.org> wrote:
>> Michael Strauß has updated the pull request with a new target base due to a merge or a rebase. The pull request now contains 62 commits:
>>
>> - Merge branch 'refs/heads/master' into feature/css-transitions
>> - document css parser limitation
>> - documentation change
>> - added documentation
>> - address review comments
>> - Merge branch 'refs/heads/master' into feature/css-transitions
>> - extract magic string to named constant
>> - use existing property in test
>> - fixed documentation
>> - Merge branch 'master' into feature/css-transitions
>> - ... and 52 more: https://git.openjdk.org/jfx/compare/cf09d6f1...10c06a97
>
> modules/javafx.graphics/src/main/docs/javafx/scene/doc-files/cssref.html line 704:
>
>> 702: <tr>
>> 703: <th class="propertyname" scope="row">transition‑property</th>
>> 704: <td class="value">[ none | all | <custom‑ident># ]</td>
>
> Why is there a literal `#` after `<custom‑ident>` (and others below)? It shows up when viewing the doc.
The `#` indicates that one or more of the preceding entity can appear in a comma-separated list.
Contrast that with `*` (used in other places in cssref.html), which indicates that zero or more of the preceding entity can appear (but doesn't prescribe a comma-separated list).
See: https://www.w3.org/TR/css-values-4/#component-multipliers
-------------
PR Review Comment: https://git.openjdk.org/jfx/pull/870#discussion_r1628479243
More information about the openjfx-dev
mailing list