On Wed, 8 Sep 2021 21:08:40 GMT, Kevin Rushforth <[email protected]> wrote:
>> Jose Pereda has updated the pull request incrementally with one additional
>> commit since the last revision:
>>
>> Address feedback from reviewers
>
> modules/javafx.web/src/main/java/com/sun/webkit/WebPage.java line 2589:
>
>> 2587: private static int getIntRgba(Color color) {
>> 2588: if (color == null) {
>> 2589: return -1;
>
> Maybe: `return 0xFFFFFFFF;` ? or else assign `color = Color.WHITE;` and fall
> through?
Probably better then to create a constant?
private static final int DEFAULT_BACKGROUND_INT_RGBA = 0xFFFFFFFF; //
Color.WHITE
-------------
PR: https://git.openjdk.java.net/jfx/pull/563