<Swing Dev> [14] RFR JDK-8230235 - Rendering HTML with empty img attribute and documentBaseKey cause Exception
Pankaj Bansal
pankaj.b.bansal at oracle.com
Thu Oct 10 18:01:22 UTC 2019
Hi All,
Please review the following fix for jdk14.
Bug: https://bugs.openjdk.java.net/browse/JDK-8230235
Webrev: http://cr.openjdk.java.net/~pbansal/8230235/webrev00/
Issue:
Rendering HTML with empty img attribute and documentBaseKey set causes NPE
Fix:
The issues is introduced after https://bugs.openjdk.java.net/browse/JDK-8218674.
When the documentBaseKey is set, but img tag is not set, the image URL may not be complete and may not point to actual image. In ImageView class, when getWidth(ImageObserver) is called from the updateImageSize, it checks if image source is null and adds the ImageObserver (ImageView.ImageHandler) on the Image and sets the ImageView image as null. When getHeight is called, as image is set to null, it results in NPE.
We should verify that image is not null.
Testing:
I have tested it on Window, Linux and Mac.
Regards,
Pankaj Bansal
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mail.openjdk.java.net/pipermail/swing-dev/attachments/20191010/bc5341c8/attachment.html>
More information about the swing-dev
mailing list