8343902: javax/swing/plaf/nimbus/8041642/bug8041642.java fails in ubuntu22.04
Reviewed-by: azvegint
This commit is contained in:
parent
b12c5b4d18
commit
499186be0f
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2015, 2024, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -26,11 +26,21 @@
|
|||||||
* @key headful
|
* @key headful
|
||||||
* @bug 8041642 8079450 8140237
|
* @bug 8041642 8079450 8140237
|
||||||
* @summary Incorrect paint of JProgressBar in Nimbus LF
|
* @summary Incorrect paint of JProgressBar in Nimbus LF
|
||||||
* @author Semyon Sadetsky
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import javax.swing.*;
|
import java.io.File;
|
||||||
import java.awt.*;
|
import java.awt.BorderLayout;
|
||||||
|
import java.awt.Color;
|
||||||
|
import java.awt.Graphics;
|
||||||
|
import java.awt.Point;
|
||||||
|
import java.awt.Rectangle;
|
||||||
|
import java.awt.Robot;
|
||||||
|
import java.awt.image.BufferedImage;
|
||||||
|
import javax.imageio.ImageIO;
|
||||||
|
import javax.swing.JFrame;
|
||||||
|
import javax.swing.JProgressBar;
|
||||||
|
import javax.swing.SwingUtilities;
|
||||||
|
import javax.swing.UIManager;
|
||||||
|
|
||||||
public class bug8041642 {
|
public class bug8041642 {
|
||||||
|
|
||||||
@ -50,7 +60,8 @@ public class bug8041642 {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
final Robot robot = new Robot();
|
final Robot robot = new Robot();
|
||||||
robot.delay(300);
|
robot.waitForIdle();
|
||||||
|
robot.delay(1000);
|
||||||
SwingUtilities.invokeAndWait(new Runnable() {
|
SwingUtilities.invokeAndWait(new Runnable() {
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
@ -58,9 +69,15 @@ public class bug8041642 {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
Color color = robot.getPixelColor(point.x + 1, point.y + 7);
|
Color color = robot.getPixelColor(point.x + 1, point.y + 7);
|
||||||
System.out.println(color);
|
System.out.println("point " + point + " color " + color);
|
||||||
if (color.getGreen() < 150 || color.getBlue() > 30 ||
|
if (color.getGreen() < 150 || color.getBlue() > 30 ||
|
||||||
color.getRed() > 200) {
|
color.getRed() > 200) {
|
||||||
|
Rectangle bounds = frame.getBounds();
|
||||||
|
BufferedImage img = new BufferedImage(bounds.width, bounds.height, BufferedImage.TYPE_INT_ARGB);
|
||||||
|
Graphics g = img.getGraphics();
|
||||||
|
frame.paint(g);
|
||||||
|
g.dispose();
|
||||||
|
ImageIO.write(img, "png", new File("bug8041642.png"));
|
||||||
throw new RuntimeException("Bar padding color should be green");
|
throw new RuntimeException("Bar padding color should be green");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user