You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Vasily Zakharov (JIRA)" <ji...@apache.org> on 2007/08/07 12:09:59 UTC

[jira] Updated: (HARMONY-4606) [classlib][swing][html] tag behaves incorrectly

     [ https://issues.apache.org/jira/browse/HARMONY-4606?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Vasily Zakharov updated HARMONY-4606:
-------------------------------------

    Attachment: RI.jpg

> [classlib][swing][html] <a> tag behaves incorrectly
> ---------------------------------------------------
>
>                 Key: HARMONY-4606
>                 URL: https://issues.apache.org/jira/browse/HARMONY-4606
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Vasily Zakharov
>         Attachments: Harmony.jpg, RI.jpg
>
>
> In Harmony the text in <a> tag becomes blue and underlined even if href attribute is absent.
> In RI it only gets this look if href attribute is present.
> Here's the simple test demonstrating 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", "text<br><a>aaa</a><br><a href=\"\">href</a>");
>         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.