Integrated: 8356594: JSplitPane loses divider location when reopened via JOptionPane.createDialog()

2025-06-01 Thread Prasanta Sadhukhan
On Mon, 19 May 2025 06:06:17 GMT, Prasanta Sadhukhan wrote: > The issue is when a JSplitPane is embedded inside a lazily-initialized panel, > and this panel is displayed using a dialog created via > JOptionPane.createDialog(), the divider location is not preserved when > reopening the dialog.

Re: RFR: 8357799: Improve instructions for JFileChooser/HTMLFileName.java [v2]

2025-06-01 Thread Phil Race
On Mon, 26 May 2025 17:18:06 GMT, Alexey Ivanov wrote: >> The instructions for the `javax/swing/JFileChooser/HTMLFileName.java` test >> are still not as clear. >> >> The file name in the instructions is rendered as HTML, which, I believe, is >> unexpected. It should be displayed as the plain t

Re: RFR: 8357799: Improve instructions for JFileChooser/HTMLFileName.java [v2]

2025-06-01 Thread Phil Race
On Mon, 26 May 2025 17:18:06 GMT, Alexey Ivanov wrote: >> The instructions for the `javax/swing/JFileChooser/HTMLFileName.java` test >> are still not as clear. >> >> The file name in the instructions is rendered as HTML, which, I believe, is >> unexpected. It should be displayed as the plain t

Re: RFR: 8356803: Test TextLayout/TestControls fails on windows & linux: line and paragraph separator show non-zero advance

2025-06-01 Thread Phil Race
On Fri, 30 May 2025 23:40:22 GMT, Daniel Gredler wrote: > Per discussion in JBS, adds the following chars to the list of ignorable > whitespace chars: U+000B (Vertical Tab), U+000C (Form Feed), U+0085 (Next > Line), U+2028 (Line Separator), U+2029 (Paragraph Separator). > > Adds the necessary

Re: RFR: 8357034: GifImageDecoder can produce wrong transparent pixels [v4]

2025-06-01 Thread Jeremy Wood
> If there are two consecutive frames that use DISPOSAL_SAVE, but the > transparent pixel index changed: we might accidentally send the wrong data to > the ImageConsumer. > > We already had logic that submits info "the hard way" (see comment in code); > this PR just makes sure we trigger that b

Re: RFR: 8356137: GifImageDecode can produce opaque image when disposal method changes [v6]

2025-06-01 Thread Jeremy Wood
On Tue, 27 May 2025 14:18:13 GMT, Jayathirth D V wrote: > Also its better if we can actually create test gif file using ImageIO(There > are examples in test/jdk/javax/imageio/plugins/gif/) programatically and use > it instead of external GIF files for testing. I wrote a new class GifBuilder th