-
Bug
-
Resolution: Fixed
-
P3
-
1.0
-
1.0beta
-
sparc
-
solaris_2.4
-
Not verified
From: Adam Doppelt <###@###.###>
Under the AppletViewer, using:
...
<PARAM NAME=gub VALUE=100>
...
the value of gub can be accessed using either getParameter("gub") or
getParameter("GUB"). However, using:
...
<PARAM NAME=GUB VALUE=100>
...
the value of GUB _cannot_ be accessed, using either
getParameter("gub") or getParameter("GUB"). This problem occurs only
under the Applet Viewer, not Netscape.
The description field as copied from bug report 1224109 follows:
It appears that the name of a parameter to an applet (as in <PARAM
NAME=foo value=bar>) must be lower case in order for getParameter() to
pick up its value.
Assume a document containing
<APPLET ...><PARAM NAME=startup VALUE="a bunch of text"></APPLET>
We run it through the AppletViewer. In the applet's init() method,
getParameter("STARTUP") and getParameter("startup") both return "a
bunch of text".
But if the document contains
<APPLET ...><PARAM NAME=STARTUP VALUE="a bunch of text"></APPLET>
then both getParameter("STARTUP") and getParameter("startup") return null.
Is this a problem with the DTD, or should it be documented to work this way?
Under the AppletViewer, using:
...
<PARAM NAME=gub VALUE=100>
...
the value of gub can be accessed using either getParameter("gub") or
getParameter("GUB"). However, using:
...
<PARAM NAME=GUB VALUE=100>
...
the value of GUB _cannot_ be accessed, using either
getParameter("gub") or getParameter("GUB"). This problem occurs only
under the Applet Viewer, not Netscape.
The description field as copied from bug report 1224109 follows:
It appears that the name of a parameter to an applet (as in <PARAM
NAME=foo value=bar>) must be lower case in order for getParameter() to
pick up its value.
Assume a document containing
<APPLET ...><PARAM NAME=startup VALUE="a bunch of text"></APPLET>
We run it through the AppletViewer. In the applet's init() method,
getParameter("STARTUP") and getParameter("startup") both return "a
bunch of text".
But if the document contains
<APPLET ...><PARAM NAME=STARTUP VALUE="a bunch of text"></APPLET>
then both getParameter("STARTUP") and getParameter("startup") return null.
Is this a problem with the DTD, or should it be documented to work this way?
- duplicates
-
JDK-1224109 applet PARAM tag: value of NAME must be lower case
-
- Closed
-