-
Bug
-
Resolution: Cannot Reproduce
-
P3
-
None
-
1.3.0
-
x86
-
windows_nt
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
- relates to
-
JDK-4314198 JEditorPane garbles display of HTML that was OK in 1.2.2
-
- Resolved
-
-
JDK-4284162 add support for the css text-indent attribute
-
- Resolved
-