Closed
Bug 111190
Opened 23 years ago
Closed 23 years ago
CSS property border, value solid, doesn't work on SELECT tags
Categories
(Core :: Layout: Form Controls, defect)
Tracking
()
RESOLVED
INVALID
People
(Reporter: doutorquen, Assigned: dbaron)
Details
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (Windows; U; WinNT4.0; es-ES; rv:0.9.6) Gecko/20011120
BuildID: 2001112009
In Mozilla 0.9.5, the CSS property border works on SELECT tags.
For example,
<html>
<head>
<title>Untitled</title>
<style type="text/css">
.borderSolid {
border: white 1px solid;
}
</style>
</head>
<body>
<select class="borderSolid"></select>
</body>
</html>
was showing a thin solid white border around the control, but in actual version
0.9.6, this border is showed with a 3d format like the standard
Reproducible: Always
Steps to Reproduce:
1.write this code
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled</title>
<style type="text/css">
.borderSolid {
border: white 1px solid;
}
</style>
</head>
<body>
<select class="borderSolid"></select>
</body>
</html>
2. check the result
3. Look at the border of the SELECT control
Expected Results: Mozilla must show the control (SELECT tag) like version 0.9.5
| Assignee | ||
Comment 1•23 years ago
|
||
Marking INVALID since the CSS spec doesn't define a model that describes the
rendering of form controls, so the application of CSS properties to such
controls is undefined and an extension of CSS. If we do want to allow controls
to be stylable, we should come up with a clear consistent model rather than
doing it haphazardly as we have already done a good bit and as this bug suggests
we continue to do.
Status: UNCONFIRMED → RESOLVED
Closed: 23 years ago
Component: Style System → HTML Form Controls
Resolution: --- → INVALID
You need to log in
before you can comment on or make changes to this bug.
Description
•