Closed
Bug 1142
Opened 26 years ago
Closed 26 years ago
Strange Border Bugs
Categories
(Core :: Layout, defect, P2)
Tracking
()
VERIFIED
FIXED
M5
People
(Reporter: angus, Assigned: kmcclusk)
Details
The following test case should show a thin black double border, but instead,
only a bottom border is shown:
<style type=text/css>
H2 {
border-bottom: thin solid black;
}
</style>
<body>
<h2>
Test test test test test
</h2>
</body>
The following test should show an H1 with a bottom border, followed by an H2
surrounded by a double black border. Instead, the double border around the H2
appears extra thick (on top, outside and bottom, inside lines of the double
border):
<style type=text/css>
H1 {
border-bottom: thin solid black
}
H2 {
border: double black;
}
</style>
</head>
<body>
<h1>test</h1>
<h2>test</h2>
</body>
If you remove the "thin" from the first border declaration, the problem goes
away.
Updated•26 years ago
|
QA Contact: 4110
Comment 3•26 years ago
|
||
assigning ChrisD as QA assigned
Assignee: michaelp → kmcclusk
Status: ASSIGNED → NEW
Target Milestone: M4 → M5
kevin, can you see if this is also fixed as a result of peter's changes and
mark it fixed if things seem cool?
Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 5•26 years ago
|
||
Peter's changes have fixed this problem. Marking it as fixed.
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Comment 6•26 years ago
|
||
Verifying bug fixed.
You need to log in
before you can comment on or make changes to this bug.
Description
•