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/06 14:13:59 UTC

[jira] Commented: (HARMONY-4572) [classlib][swing][html] Tag
doesn't work

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

Vasily Zakharov commented on HARMONY-4572:
------------------------------------------

I don't think it's a workaround. I couldn't find anything making this decision wrong.

For example, see info on CENTER tag at the following links:
http://www.w3.org/TR/REC-CSS2/sample.html
http://www.w3.org/TR/html401/index/elements.html


> [classlib][swing][html] Tag <center> doesn't work
> -------------------------------------------------
>
>                 Key: HARMONY-4572
>                 URL: https://issues.apache.org/jira/browse/HARMONY-4572
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Vasily Zakharov
>            Assignee: Alexey Petrenko
>         Attachments: Harmony-4572-Fix.patch, Harmony.jpg, RI.jpg
>
>
> HTML tag <center> is not handled properly. To reproduce, run the following test:
> import java.awt.event.*;
> import java.io.IOException;
> import javax.swing.*;
> public class Test {
>     public static void main(String[] args) {
>         try {
>             final JEditorPane editorPane = new JEditorPane("text/html",
>                     "<html><body><center>Test</center></body></html>");
>             editorPane.setEditable(false);
>             JFrame frame = new JFrame("Test");
>             frame.addWindowListener(new WindowAdapter() {
>                 public void windowClosing(WindowEvent event){
>                     System.exit(0);
>                 }
>             });
>             JPanel contentPane = (JPanel) frame.getContentPane();
>             contentPane.add(editorPane);
>             frame.setSize(400, 300);
>             frame.setVisible(true);
>         } catch (Throwable e) {
>             System.out.print("ERROR: ");
>             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.