Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 26710 invoked from network); 7 Aug 2007 08:52:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 7 Aug 2007 08:52:23 -0000 Received: (qmail 62613 invoked by uid 500); 7 Aug 2007 08:52:21 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 62589 invoked by uid 500); 7 Aug 2007 08:52:21 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 62477 invoked by uid 99); 7 Aug 2007 08:52:21 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Aug 2007 01:52:21 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Aug 2007 08:52:13 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 5020A7141F4 for ; Tue, 7 Aug 2007 01:51:59 -0700 (PDT) Message-ID: <5445787.1186476719326.JavaMail.jira@brutus> Date: Tue, 7 Aug 2007 01:51:59 -0700 (PDT) From: "Vasily Zakharov (JIRA)" To: commits@harmony.apache.org Subject: [jira] Updated: (HARMONY-4605) [classlib][swing][html] tag behaves incorrectly In-Reply-To: <21019661.1186476599692.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HARMONY-4605?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vasily Zakharov updated HARMONY-4605: ------------------------------------- Attachment: Harmony.jpg > [classlib][swing][html] tag behaves incorrectly > --------------------------------------------------- > > Key: HARMONY-4605 > URL: https://issues.apache.org/jira/browse/HARMONY-4605 > Project: Harmony > Issue Type: Bug > Components: Classlib > Reporter: Vasily Zakharov > Attachments: Harmony.jpg, RI.jpg > > > If tag is followed by a whitespace, that whitespace is not visible. > Here's the simple test demonstrating the problem: > import java.awt.event.*; > import javax.swing.*; > public class Test { > public static void main(String argv[]) { > try { > JFrame frame = new JFrame("Test"); > frame.addWindowListener(new WindowAdapter() { > public void windowClosing(WindowEvent event){ > System.exit(0); > } > }); > JEditorPane editorPane = new JEditorPane("text/html", "pre bold after"); > frame.add(editorPane); > frame.setSize(150, 100); > frame.setVisible(true); > } catch (Exception e) { > e.printStackTrace(System.out); > } > } > } -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.