Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 8298 invoked from network); 31 Jul 2007 23:33:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 31 Jul 2007 23:33:50 -0000 Received: (qmail 97644 invoked by uid 500); 31 Jul 2007 23:33:22 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 95470 invoked by uid 500); 31 Jul 2007 23:33:09 -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 93427 invoked by uid 99); 31 Jul 2007 23:32:45 -0000 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, 31 Jul 2007 16:32:43 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 3BFA9714187 for ; Tue, 31 Jul 2007 16:31:53 -0700 (PDT) Message-ID: <780166.1185924713243.JavaMail.jira@brutus> Date: Tue, 31 Jul 2007 16:31:53 -0700 (PDT) From: "Vasily Zakharov (JIRA)" To: commits@harmony.apache.org Subject: [jira] Updated: (HARMONY-4583) [classlib][swing][html] HTML is not rendered on buttons In-Reply-To: <31172096.1185924593339.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-4583?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vasily Zakharov updated HARMONY-4583: ------------------------------------- Attachment: Harmony.jpg > [classlib][swing][html] HTML is not rendered on buttons > ------------------------------------------------------- > > Key: HARMONY-4583 > URL: https://issues.apache.org/jira/browse/HARMONY-4583 > Project: Harmony > Issue Type: Bug > Components: Classlib > Reporter: Vasily Zakharov > Attachments: Harmony.jpg, RI.jpg > > > Here's the simple reproducer: > import java.awt.event.*; > import javax.swing.*; > public class Test { > public static void main(String[] args) { > try { > JFrame frame = new JFrame("Test"); > frame.addWindowListener(new WindowAdapter() { > public void windowClosing(WindowEvent event){ > System.exit(0); > } > }); > JPanel panel = (JPanel) frame.getContentPane(); > panel.add(new JButton("Test")); > frame.pack(); > frame.setVisible(true); > } catch (Throwable e) { > System.out.print("ERROR: "); > e.printStackTrace(System.out); > } > } > } > Attached screenshots demonstrate the problem: > RI.jpg - how it looks on RI > Harmony.jpg - how it looks on Harmony -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.