Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 64394 invoked from network); 3 Aug 2007 10:04:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 3 Aug 2007 10:04:14 -0000 Received: (qmail 80170 invoked by uid 500); 3 Aug 2007 10:04:14 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 80151 invoked by uid 500); 3 Aug 2007 10:04:13 -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 80142 invoked by uid 99); 3 Aug 2007 10:04:13 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Aug 2007 03:04:13 -0700 X-ASF-Spam-Status: No, hits=-99.6 required=10.0 tests=ALL_TRUSTED,SUBJECT_FUZZY_TION 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; Fri, 03 Aug 2007 10:04:13 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 2646C7141F7 for ; Fri, 3 Aug 2007 03:03:53 -0700 (PDT) Message-ID: <29420146.1186135433154.JavaMail.jira@brutus> Date: Fri, 3 Aug 2007 03:03:53 -0700 (PDT) From: "Igor V. Stolyarov (JIRA)" To: commits@harmony.apache.org Subject: [jira] Commented: (HARMONY-4583) [classlib][swing][html] HTML is not rendered on buttons and tabs 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:comment-tabpanel#action_12517495 ] Igor V. Stolyarov commented on HARMONY-4583: -------------------------------------------- Solving this issue strongly depends on implementation of BasicHTML class. That class contains methods (isHTMLString, createHTMLView) needed for implementation absent functionality. > [classlib][swing][html] HTML is not rendered on buttons and tabs > ---------------------------------------------------------------- > > 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(); > JTabbedPane tabbedPane = new JTabbedPane(); > tabbedPane.add("Tab", > new JButton("Button")); > panel.add(tabbedPane); > 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.