Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 5178 invoked from network); 29 Aug 2007 14:53:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 29 Aug 2007 14:53:53 -0000 Received: (qmail 26868 invoked by uid 500); 29 Aug 2007 14:53:49 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 26778 invoked by uid 500); 29 Aug 2007 14:53:49 -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 26768 invoked by uid 99); 29 Aug 2007 14:53:49 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Aug 2007 07:53:49 -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; Wed, 29 Aug 2007 14:54:49 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 9DB15714191 for ; Wed, 29 Aug 2007 07:53:30 -0700 (PDT) Message-ID: <32246528.1188399210643.JavaMail.jira@brutus> Date: Wed, 29 Aug 2007 07:53:30 -0700 (PDT) From: "Vasily Zakharov (JIRA)" To: commits@harmony.apache.org Subject: [jira] Commented: (HARMONY-4696) [classlib][swing][html] JEditorPane doesn't recognize HTML by file name In-Reply-To: <5417035.1188398010806.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-4696?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12523589 ] Vasily Zakharov commented on HARMONY-4696: ------------------------------------------ The proper place for a fix seems to be in JEditorPane.getStream(). > [classlib][swing][html] JEditorPane doesn't recognize HTML by file name > ----------------------------------------------------------------------- > > Key: HARMONY-4696 > URL: https://issues.apache.org/jira/browse/HARMONY-4696 > Project: Harmony > Issue Type: Bug > Components: Classlib > Reporter: Vasily Zakharov > Priority: Minor > Attachments: Harmony.jpg, RI.jpg > > > The following simple test demonstrates the problem: > import javax.swing.JFrame; > import javax.swing.JEditorPane; > public class Test { > public static void main(String argv[]) { > try { > JFrame frame = new JFrame(); > frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); > frame.add(new JEditorPane("file:test.html")); > frame.setSize(150, 100); > frame.setVisible(true); > } catch (Exception e) { > e.printStackTrace(System.out); > } > } > } > test.html: > normal italic > test.html contains HTML code not clearly detectable as HTML. However, this code is contained in file having .html extension, and it's enough for RI to use HTML renderer. Harmony doesn't do it. The attached screenshots demonstrate the results on RI and Harmony. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.