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 15:43:00 UTC

[jira] Resolved: (HARMONY-4610) [classlib][swing][html]Border and spacing attributes processing are unimplemented

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

Alexey Petrenko resolved HARMONY-4610.
--------------------------------------

    Resolution: Fixed

The patch has been applied.
Please verify.

> [classlib][swing][html]Border and spacing attributes processing are unimplemented
> ---------------------------------------------------------------------------------
>
>                 Key: HARMONY-4610
>                 URL: https://issues.apache.org/jira/browse/HARMONY-4610
>             Project: Harmony
>          Issue Type: Bug
>            Reporter: Dmitry Irlyanov
>            Assignee: Alexey Petrenko
>         Attachments: example.jpg, H4610-ImageView.patch, Harmony output.jpg, RI output.jpg
>
>
> When one trying to draw a border for an image in html file one can add border attribute in img tag. For harmony it doesn't work
> import java.net.URL;
> import javax.swing.JEditorPane;
> import javax.swing.JFrame;
> public class Test {
>     private final static URL url = Test.class.getResource("example.jpg");
>     
>     /**
>      * @param args
>      */
>     public static void main(String[] args) {
>         
>         JEditorPane editorPane = new JEditorPane(
>                 "text/html",
>                         "<img src=\"" + url + "\" width=100 height=100"
>                         + " border=10 hspace=30 vspace=30 align=center alt=\"test\">"                        
>         );
>         
>         JFrame frame = new JFrame("Test");
>         frame.add(editorPane);
>         frame.setSize(400, 300);
>         frame.setVisible(true);
>     }
> }

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