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 11:05:59 UTC

[jira] Commented: (HARMONY-4605) [classlib][swing][html] tag behaves incorrectly

    [ https://issues.apache.org/jira/browse/HARMONY-4605?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12518116 ] 

Vasily Zakharov commented on HARMONY-4605:
------------------------------------------

Attached are screenshots demonstrating the problem.


> [classlib][swing][html] <b> tag behaves incorrectly
> ---------------------------------------------------
>
>                 Key: HARMONY-4605
>                 URL: https://issues.apache.org/jira/browse/HARMONY-4605
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Vasily Zakharov
>         Attachments: Harmony.jpg, RI.jpg
>
>
> If <b> tag is followed by a whitespace, that whitespace is not visible.
> Here's the simple test demonstrating the problem:
> import java.awt.event.*;
> import javax.swing.*;
> public class Test {
>     public static void main(String argv[]) {
>         try {
>             JFrame frame = new JFrame("Test");
>             frame.addWindowListener(new WindowAdapter() {
>                 public void windowClosing(WindowEvent event){
>                     System.exit(0);
>                 }
>             });
>             JEditorPane editorPane = new JEditorPane("text/html", "pre <b>bold</b> after");
>             frame.add(editorPane);
>             frame.setSize(150, 100);
>             frame.setVisible(true);
>         } catch (Exception e) {
>             e.printStackTrace(System.out);
>         }
>     }
> }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.