mirror of
https://github.com/openjdk/jdk.git
synced 2026-02-22 16:26:05 +00:00
8000183: 7163696: JCK Swing interactive test JScrollBarTest0013 fails with Nimbus and GTK L&Fs
Reviewed-by: alexsch, serb
This commit is contained in:
parent
b1d7c46e14
commit
be64bfbaad
@ -57,6 +57,7 @@ public class SynthScrollBarUI extends BasicScrollBarUI
|
||||
*/
|
||||
@Override
|
||||
protected void installDefaults() {
|
||||
super.installDefaults();
|
||||
trackHighlight = NO_HIGHLIGHT;
|
||||
if (scrollbar.getLayout() == null ||
|
||||
(scrollbar.getLayout() instanceof UIResource)) {
|
||||
|
||||
103
jdk/test/javax/swing/JScrollBar/7163696/Test7163696.java
Normal file
103
jdk/test/javax/swing/JScrollBar/7163696/Test7163696.java
Normal file
@ -0,0 +1,103 @@
|
||||
/*
|
||||
* Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* @test
|
||||
* @bug 7163696
|
||||
* @summary Tests that JScrollBar scrolls to the left
|
||||
* @author Sergey Malenkov
|
||||
*/
|
||||
|
||||
import sun.awt.SunToolkit;
|
||||
|
||||
import java.awt.Dimension;
|
||||
import java.awt.Point;
|
||||
import java.awt.Robot;
|
||||
import java.awt.Toolkit;
|
||||
import java.awt.event.InputEvent;
|
||||
|
||||
import javax.swing.JFrame;
|
||||
import javax.swing.JScrollBar;
|
||||
import javax.swing.SwingUtilities;
|
||||
import javax.swing.UIManager;
|
||||
import javax.swing.UIManager.LookAndFeelInfo;
|
||||
|
||||
public class Test7163696 implements Runnable {
|
||||
|
||||
private static final boolean AUTO = null != System.getProperty("test.src", null);
|
||||
|
||||
public static void main(String[] args) throws Exception {
|
||||
new Test7163696().test();
|
||||
}
|
||||
|
||||
private JScrollBar bar;
|
||||
|
||||
private void test() throws Exception {
|
||||
Robot robot = new Robot();
|
||||
SunToolkit toolkit = (SunToolkit) Toolkit.getDefaultToolkit();
|
||||
for (LookAndFeelInfo info : UIManager.getInstalledLookAndFeels()) {
|
||||
UIManager.setLookAndFeel(info.getClassName());
|
||||
|
||||
SwingUtilities.invokeAndWait(this);
|
||||
toolkit.realSync(500); // after creation
|
||||
|
||||
Point point = this.bar.getLocation();
|
||||
SwingUtilities.convertPointToScreen(point, this.bar);
|
||||
point.x += this.bar.getWidth() >> 2;
|
||||
point.y += this.bar.getHeight() >> 1;
|
||||
robot.mouseMove(point.x, point.y);
|
||||
robot.mousePress(InputEvent.BUTTON1_MASK);
|
||||
robot.mouseRelease(InputEvent.BUTTON1_MASK);
|
||||
|
||||
toolkit.realSync(500); // before validation
|
||||
SwingUtilities.invokeAndWait(this);
|
||||
|
||||
if (this.bar != null) {
|
||||
this.bar = null; // allows to reuse the instance
|
||||
if (AUTO) { // error reporting only for automatic testing
|
||||
throw new Error("TEST FAILED");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public void run() {
|
||||
if (this.bar == null) {
|
||||
this.bar = new JScrollBar(JScrollBar.HORIZONTAL, 50, 10, 0, 100);
|
||||
this.bar.setPreferredSize(new Dimension(400, 20));
|
||||
|
||||
JFrame frame = new JFrame();
|
||||
frame.add(this.bar);
|
||||
frame.pack();
|
||||
frame.setVisible(true);
|
||||
}
|
||||
else if (40 != this.bar.getValue()) {
|
||||
System.out.println("name = " + UIManager.getLookAndFeel().getName());
|
||||
System.out.println("value = " + this.bar.getValue());
|
||||
}
|
||||
else {
|
||||
SwingUtilities.getWindowAncestor(this.bar).dispose();
|
||||
this.bar = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user