Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 30613 invoked from network); 7 Aug 2007 09:06:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 7 Aug 2007 09:06:22 -0000 Received: (qmail 79687 invoked by uid 500); 7 Aug 2007 09:06:21 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 79665 invoked by uid 500); 7 Aug 2007 09:06: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 79651 invoked by uid 99); 7 Aug 2007 09:06: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 02:06: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 09:06:14 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 9D2AA7141F4 for ; Tue, 7 Aug 2007 02:05:59 -0700 (PDT) Message-ID: <28751681.1186477559641.JavaMail.jira@brutus> Date: Tue, 7 Aug 2007 02:05:59 -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_12518116 ] Vasily Zakharov commented on HARMONY-4605: ------------------------------------------ Attached are screenshots demonstrating the problem. > [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.