Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 47985 invoked from network); 7 Aug 2007 10:22:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 7 Aug 2007 10:22:22 -0000 Received: (qmail 84225 invoked by uid 500); 7 Aug 2007 10:22:21 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 84187 invoked by uid 500); 7 Aug 2007 10:22: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 84178 invoked by uid 99); 7 Aug 2007 10:22: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 03:22: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 10:22:13 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 21C127141E2 for ; Tue, 7 Aug 2007 03:21:59 -0700 (PDT) Message-ID: <24630680.1186482119081.JavaMail.jira@brutus> Date: Tue, 7 Aug 2007 03:21:59 -0700 (PDT) From: "Vasily Zakharov (JIRA)" To: commits@harmony.apache.org Subject: [jira] Created: (HARMONY-4607) [classlib][swing][html]
tag behaves incorrectly MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [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: 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.