Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8331604

If the focus owner becomes invisible, the parent window may not receive focus.

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Unresolved
    • Icon: P4 P4
    • tbd
    • 8, 11, 17, 21
    • client-libs
    • generic
    • linux

      While investigating the failures of some focus related tests I have found that the next simple usecase intermittently fails:

      $Xvfb :10 -screen 0 1920x1080x24 -fbdir /tmp &
      $export DISPLAY=:10
      $mwm &
      $x=1; while ............/jdk/jdk-21/bin/java MoveFocusBackToParent ; do echo "ITERATION" $(( x++ )); done

      It fails 3~5 times per 100 runs.

      import java.awt.*;

      public final class MoveFocusBackToParent {

          public static void main(String[] args) throws Exception {
              Frame parent = new Frame();
              Dialog child = new Dialog(parent);
              try {
                  parent.setSize(300, 300);
                  parent.setBackground(Color.GREEN);
                  parent.setLocationRelativeTo(null);
                  parent.setVisible(true);
                  Thread.sleep(1000); // sleep is used to eliminate any other issues
                  child.setSize(300, 300);
                  child.setBackground(Color.RED);
                  child.setLocationRelativeTo(parent);
                  child.setVisible(true);
                  Thread.sleep(1000);
                  child.toFront();
                  Thread.sleep(1000);
                  child.requestFocus();
                  Thread.sleep(1000);

                  child.setVisible(false);
                  Thread.sleep(1000);

                  if (!child.isFocused()) {
                      throw new Error("Child is not focused");
                  }
                  if (child.isFocused()) {
                      throw new Error("Child is focused");
                  }
                  if (!parent.isFocused()) {
                      throw new Error("Parent is not focused");
                  }
              } finally {
                  child.dispose();
                  parent.dispose();
              }
          }
      }

            serb Sergey Bylokhov
            serb Sergey Bylokhov
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated: