RFR: 8358454: Wrong <br> tags in cssref.html
Michael Strauß
mstrauss at openjdk.org
Tue Jun 3 14:49:00 UTC 2025
On Tue, 3 Jun 2025 14:34:11 GMT, Andy Goryachev <angorya at openjdk.org> wrote:
>> Some `<br>` tags in cssref.html are written as `<br/>` or `</br>`. It should be `<br>`, since it is a void element.
>>
>> A single reviewer is sufficient.
>
> modules/javafx.graphics/src/main/docs/javafx/scene/doc-files/cssref.html line 1682:
>
>> 1680: <h3><a id="typeeasingfunction"><easing-function></a></h3>
>> 1681: <p class="grammar">linear | <cubic-bezier-easing-function> | <step-easing-function> | <fx-easing-function></p>
>> 1682: <p><strong>Linear</strong> <span class="grammar" style="font-size: smaller;">linear</span><br>
>
> why is Linear looks like plain `linear` but Cubic Bézier Easing Functions has triangular brackets `<cubic-bezier-easing-function>`?
`linear` is a concrete value, whereas `<cubic-bezier-easing-function>` is defined later to be one of five possible concrete values.
-------------
PR Review Comment: https://git.openjdk.org/jfx/pull/1820#discussion_r2124095586
More information about the openjfx-dev
mailing list