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

[jira] Assigned: (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 ]

Alexey Petrenko reassigned HARMONY-4606:
----------------------------------------

    Assignee: Alexey Petrenko

> [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, Non-bug differences from RI
>            Reporter: Vasily Zakharov
>            Assignee: Alexey Petrenko
>         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.