Files
Mozilla/mozilla/layout/html/tests/formctls/bugs/bug68963.html
(no author) d368a405db This commit was manufactured by cvs2svn to create branch
'MOZILLA_1_8_0_BRANCH'.

git-svn-id: svn://10.0.0.236/branches/MOZILLA_1_8_0_BRANCH@185757 18797224-902f-48f8-a5cc-f745e15eee43
2005-12-07 05:54:01 +00:00

53 lines
997 B
HTML

<html>
<head>
<title>Option comment sample</title>
</head>
<p>
Select without comments, working normally.
<p>
Color
<select NAME="1" >
<option NAME="1" VALUE="22802" >
Blue
</option>
<option NAME="1" VALUE="22803" >
Red
</option>
<option NAME="1" VALUE="22804" >
Purple
</option>
</select>
<p>
The second one has comments, so the items are invisible when selected.
<p>
Color
<select NAME="1" >
<option NAME="1" VALUE="22802" >
<!-- Start custom HTML modifications -->
<!-- START_OPTION_TEXT -->
Blue
<!-- END_OPTION_TEXT -->
<!-- End custom HTML modifications -->
</option><option NAME="1" VALUE="22803" >
<!-- Start custom HTML modifications -->
<!-- START_OPTION_TEXT -->
Red
<!-- END_OPTION_TEXT -->
<!-- End custom HTML modifications -->
</option><option NAME="1" VALUE="22804" >
<!-- Start custom HTML modifications -->
<!-- START_OPTION_TEXT -->
Purple
<!-- END_OPTION_TEXT -->
<!-- End custom HTML modifications -->
</option>
</select>
</body></html>