Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 14028 invoked from network); 21 Aug 2007 16:38:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 21 Aug 2007 16:38:52 -0000 Received: (qmail 48778 invoked by uid 500); 21 Aug 2007 16:38:48 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 48763 invoked by uid 500); 21 Aug 2007 16:38:48 -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 48754 invoked by uid 99); 21 Aug 2007 16:38:48 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Aug 2007 09:38:48 -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, 21 Aug 2007 16:38:50 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 6CFCB714209 for ; Tue, 21 Aug 2007 09:38:30 -0700 (PDT) Message-ID: <26073485.1187714310435.JavaMail.jira@brutus> Date: Tue, 21 Aug 2007 09:38:30 -0700 (PDT) From: "Vasily Zakharov (JIRA)" To: commits@harmony.apache.org Subject: [jira] Commented: (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:comment-tabpanel#action_12521523 ] Vasily Zakharov commented on HARMONY-4605: ------------------------------------------ The same problem (whitespace disappearing after the tag) also occurs for , , , , , and maybe other tags. See HARMONY-4662 for screenshot examples. > [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.