Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 48328 invoked from network); 7 Aug 2007 10:24:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 7 Aug 2007 10:24:20 -0000 Received: (qmail 87182 invoked by uid 500); 7 Aug 2007 10:24:19 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 87164 invoked by uid 500); 7 Aug 2007 10:24:19 -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 87155 invoked by uid 99); 7 Aug 2007 10:24:19 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Aug 2007 03:24:19 -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 10:24:19 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 262A77141E2 for ; Tue, 7 Aug 2007 03:23:59 -0700 (PDT) Message-ID: <24361857.1186482239146.JavaMail.jira@brutus> Date: Tue, 7 Aug 2007 03:23:59 -0700 (PDT) From: "Vasily Zakharov (JIRA)" To: commits@harmony.apache.org Subject: [jira] Updated: (HARMONY-4607) [classlib][swing][html]
tag behaves incorrectly In-Reply-To: <24630680.1186482119081.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-4607?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vasily Zakharov updated HARMONY-4607: ------------------------------------- Attachment: Harmony.jpg > [classlib][swing][html]
tag behaves incorrectly > ---------------------------------------------------- > > Key: HARMONY-4607 > URL: https://issues.apache.org/jira/browse/HARMONY-4607 > Project: Harmony > Issue Type: Bug > Components: Classlib > Reporter: Vasily Zakharov > Attachments: Harmony.jpg, RI.jpg > > > On RI
tag provides the same line interval the natural line break does. > In Harmony
tag provides too much line interval. > Here's the simple test reproducing the problem: > import java.awt.event.*; > import javax.swing.*; > public class Test { > public static void main(String argv[]) { > JFrame frame = new JFrame("Test"); > frame.addWindowListener(new WindowAdapter() { > public void windowClosing(WindowEvent event){ > System.exit(0); > } > }); > JEditorPane editorPane = new JEditorPane("text/html", "aaa bbb ccc ddd eee fff ggg
hhh iii jjj kkk lll mmm nnn ooo ppp"); > frame.add(editorPane); > frame.setSize(150, 150); > frame.setVisible(true); > } > } -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.