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

JEditorPane overlays part of HTML page

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Cannot Reproduce
    • Icon: P3 P3
    • None
    • 1.3.0
    • client-libs



      Name: krT82822 Date: 02/15/2000


      (see also 4284162)
      15 Feb 2000 eval1127@eng -- reproducible on both 1.2.2 and 1.3.0 build "U". There doesn't appear to be anything "exotic" about the page.

      C:\javaBugs\JDK1.3_RC1_HTMLDisplayProblems>java -version
      java version "1.3.0rc1"
      Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0rc1-T)
      Java HotSpot(TM) Client VM (build 1.3.0rc1-S, mixed mode)

      JEditorPane displays the page http://www.3m.com/interconnects/prod_con_0662.html
      incorrectly. This is one of several pages that are displayed with part of the
      page incorrectly overlayed on another part of the page.

      Display the given URL using Netscape Navigator or InternetExplorer to see how
      it should be displayed. Then compile and run the following Java program and
      you will see how the middle of the page (PHYSICAL parameters of a part) are
      being overlayed on the top part of the page.

      % javac TestHTMLRead.java
      % java TestHTMLRead

      public class TestHTMLRead extends javax.swing.JFrame
      {
      // This test program demonstrates several problems with the HTML layout when
      // run with the JDK1.3 RC1 VM. The problem is that the middle of the top of
      // the page is being overlayed by the middle (PHYSICAL parameters) of the page.
      //

          public TestHTMLRead()
          {
              try {
                  String url = "http://www.3m.com/interconnects/prod_con_0662.html";
                  javax.swing.JEditorPane editorPane =
                      new javax.swing.JEditorPane(url);
                  javax.swing.JScrollPane scrollPane =
                      new javax.swing.JScrollPane(editorPane);
                  getContentPane().add(java.awt.BorderLayout.CENTER, scrollPane);
                  setSize(700, 900);
              } catch (java.io.IOException ex) { ex.printStackTrace(); }
          }

          public static void main(String[] argv)
          {
              (new TestHTMLRead()).show();
          }
      }
      (Review ID: 101306)
      ======================================================================

      Removed the second section of the bug since it has been filed separately
      under 4314198.
      shannon.hickey@Eng 2001-03-16

            shickeysunw Shannon Hickey (Inactive)
            kryansunw Kevin Ryan (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: