-
Enhancement
-
Resolution: Fixed
-
P4
-
1.3.0
-
tiger
-
sparc
-
solaris_2.6
Name: skT88420 Date: 10/22/99
1. Compile and run the included source against the included html
file under 1.2.1_02 and 1.3 beta. The beta output has a white
empty band on the left margin that isn't there in 1.2.1. Some
of the html output is also overlaid on previous output. Finally
the html output under 1.3 beta is not consistent from run to run.
2. Java source:
// Demonstarates the Swing editor pane
import javax.swing.*;
import javax.swing.event.*;
import javax.swing.text.*;
import javax.swing.text.html.*;
import java.awt.*;
import java.io.*;
import java.awt.event.*;
import java.net.*;
public class TestSS extends JFrame {
JEditorPane editorPane = null;
URL pageURL = null;
public TestSS() {
// Assign a name to the frame and obtain a handle
// on the frame's content pane
super ("TestSS");
Container container = this.getContentPane();
// create an editor pane and add it to the content pane
editorPane = new JEditorPane("text/html", "initial Text");
JScrollPane scrollPane = new JScrollPane (editorPane);
container.add(scrollPane);
editorPane.setEditable (false);
editorPane.addHyperlinkListener (new HyperlinkListener() {
public void hyperlinkUpdate (HyperlinkEvent e) {
try {
editorPane.setPage (e.getURL());
}
catch (IOException ex) {
ex.printStackTrace();
}
}
});
try {
pageURL = new URL("file:test.html");
}
catch (MalformedURLException excep) {
System.out.println ("MalformedURL");
}
// Assign the page to the editor pane so that the
// page is displayed
try {
editorPane.setPage(pageURL);
}
catch (java.io.IOException excep) {
System.out.println ("setPage" + excep.toString());
}
// display the editorpane with the specified size.
setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
setSize(600, 400);
setBackground(Color.lightGray);
setForeground(Color.black);
show();
}
// The listener class to handle closing of the frame
// Class to close the frame and exit the application
class WindowEventHandler extends WindowAdapter {
public void windowClosing (WindowEvent e) {
System.exit(0);
}
}
// The main method
public static void main (String[] ergs) {
new TestSS();
}
}
2. HTML source:
<html>
<head>
<title>XXXXX</title>
<STYLE TYPE="text/css">
A:link {
color: blue;
text-decoration: underline;
}
A:visited {
color: purple;
text-decoration: underline;
}
A:active {
color: red;
text-decoration: underline;
}
html {
background-color: #cccccc;
}
body {
background-color: #cccccc;
text-indent: -36.000000pt;
margin-left: 36.000000pt;
}
blockquote {
text-indent: 0.000000pt;
margin-left: 0.000000pt;
}
table {
text-indent: 0.000000pt;
margin-left: -10.000000pt;
}
tr th {
text-align: center;
padding-left: 10.000000pt;
padding-right: 10.000000pt;
}
tr td {
padding-left: 10.000000pt;
padding-right: 10.000000pt;
margin-top: -3.000000pt;
margin-bottom: -3.000000pt;
}
</style>
</head>
<body>
<BASEFONT SIZE=2>
<H2 ALIGN=center>xxxxxxx xxx xxxxx</H2>
<B>xxxxxxxx: </B>xxxxxxx xxxx, xxxxxxxxx xx xxxxxx xx xxxxxxx xx xxxxxxx xx xxxxxxx xx xxxxxxxxxx xx xxxxxxx xx xxxxxxxxxxx xx xxxxxxxxxx xx xxxxxx xx xxxxxxxxxx xx xxxxxxxxxxx xx xxxxxxxxxx xx xxxxxxxxxxxx<DIV HEIGHT=18><B>xxxxxxxxxx xxxx:</B></DIV>
<BLOCKQUOTE>
xx xxxxxxxxxx xxxx xxxxx</BLOCKQUOTE>
<DIV HEIGHT=18><B>xxxxxxxxxxx:</B></DIV><BLOCKQUOTE>
xxxx</BLOCKQUOTE>
<DIV><B>xxxxx xxxx:</B></DIV><TABLE BORDER=0><TR><TH>xxxxx xxxxxx</TH><TH>xx xxx</TH><TH>xx xxxx</TH><TH>xx xxxxx</TH><TH>xxxxxxxx xxxxxxxxxxxxxx</TH></TR><TR><TD ALIGN=center>A</TD><TD ALIGN=center>B</TD><TD ALIGN=center>C</TD><TD ALIGN=center>D</TD><TD ALIGN=center>E</TD></TR>
</TABLE><DIV><B>xxx xxxxxxxxxxxxxx:</B></DIV>
<TABLE BORDER=0><TR><TH>xxxxxxxxxxxxx</TH><TH>xxxxx</TH><TH>xxx</TH><TH>xxx</TH><TH>xxx</TH></TR><TR valign=baseline><TD>xxxxx</TD><TD ALIGN=right>Z</TD><TD ALIGN=right>xxxxxxxx</TD><TD ALIGN=right>xxxxxxxx</TD><TD ALIGN=right>yyyyyyyy</TD></TR>
<TR valign=baseline><TD>xxxx</TD><TD ALIGN=right>Z</TD><TD ALIGN=right>xxxxxxxx</TD><TD ALIGN=right>xxxxxxxx</TD><TD ALIGN=right>yyyyyyyy</TD></TR>
</TABLE><DIV><B>xxxxxxx xxxxxxxxxxx:</B></DIV><TABLE BORDER=0><TR><TH width=75>xxxx</TH><TH width=60>xxxx</TH><TH width=60>xxxxxx</TH><TH >xxxxxx</TH><TH >xxxxxxxxxxx</TH></TR>
<TR VALIGN=BASELINE><TD ALIGN="left">xxxxxxxxxx</TD><TD ALIGN="left">xxxxxxxx</TD><TD ALIGN="right">xxxxxxxx</TD><TD ALIGN="left">xxxxx</TD><TD ALIGN="left">xxxxx</TD></TR>
<TR VALIGN=BASELINE><TD ALIGN="left">xxxxxxxxxx</TD><TD ALIGN="left">xxxxxxxx</TD><TD ALIGN="right">xxxxxxxx</TD><TD ALIGN="left">xxxxx</TD><TD ALIGN="left">xxxxx<BR>xxxxx<BR>xxxxx</TD></TR>
<TR VALIGN=BASELINE><TD ALIGN="left">xxxxxxxxxx</TD><TD ALIGN="left">xxxxxxxx</TD><TD ALIGN="right">xxxxxxxx</TD><TD ALIGN="left">xxxxx</TD><TD ALIGN="left">xxxxx</TD></TR>
<TR VALIGN=BASELINE><TD ALIGN="left">xxxxxxxxxx</TD><TD ALIGN="left">xxxxxxxx</TD><TD ALIGN="right">xxxxxxxx</TD><TD ALIGN="left">xxxxx</TD><TD ALIGN="left">xxxxx</TD></TR>
</TABLE>
</body>
</html>
3. No error msgs. The problem is noted by a visual comparison
of 1.2.1 and 1.3beta output.
4. None.
5. 1.2.1 version/fullversion
java version "1.2.1"
Solaris VM (build native threads, sunwjit)
java full version "Solaris_1.2.1_02"
5. 1.3 beta version/fullversion
java version "1.3beta"
Java(TM) Runtime Environment, Standard Edition (build 1.3beta-0)
Java(TM) HotSpot Client VM (build 1.3beta-release, build 1.3beta-release, interpreted mode)
java full version "1.3beta-0"
6. None
(Review ID: 96922)
======================================================================
- relates to
-
JDK-4295763 CSS Attribute "text-indent" gives problems when highlighting text
-
- Closed
-
-
JDK-4312959 JEditorPane overlays part of HTML page
-
- Closed
-