[Bug 76] gcjwebplugin AppletViewer HTML parsing: incorrect value for width/height attribute "100%"

bugzilla-daemon at icedtea.classpath.org bugzilla-daemon at icedtea.classpath.org
Mon Dec 3 16:13:53 PST 2007


http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=76





------- Comment #1 from jarkko.lietolahti at jab.fi  2007-12-04 00:13 -------
If one looks at the code from 
sun.applet.AppletViewerPanel.getWidth(AppletViewerPanel.java:134) it looks like
this:
Which suggest that the browser(? or something else other than the appletviewer)
has to modify the <param name="width" value="100%"  /> and replace 100% with
the current value of "100%".

E.g. <param name="width" value="100%"  /> becomes (on the browser) 
<param name="width" value="923"  /> which is what the appletviewer receives.

So this seems to be some kind of integration problem.

/**
     * Get the width.
     */
    public int getWidth() {
        String w = getParameter("width");
        if (w != null) {
            return Integer.valueOf(w).intValue();
        }
        return 0;
    }


-- 
Configure bugmail: http://icedtea.classpath.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the distro-pkg-dev mailing list