Closed
Bug 435019
Opened 17 years ago
Closed 17 years ago
left and top border not visible in table border-collapse:collapse in a div overflow:hidden
Categories
(Firefox :: General, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 155955
People
(Reporter: muhpol, Unassigned)
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; de; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 6.0; de; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14
Top and left border are not visible if a table has border-collapse:collapse and 1px border in a div with overflow:hidden, see:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="de">
<head>
<title>Test</title>
<style type="text/css">
table { border-collapse: collapse; border: 1px solid black;}
div { overflow: hidden; }
</style>
</head>
<body>
<div>
<table>
<tbody>
<tr>
<td>A</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>
Reproducible: Always
Steps to Reproduce:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="de">
<head>
<title>Test</title>
<style type="text/css">
table { border-collapse: collapse; border: 1px solid black;}
div { overflow: hidden; }
</style>
</head>
<body>
<div>
<table>
<tbody>
<tr>
<td>A</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>
Actual Results:
Top and left border are not visible
Expected Results:
Top and left border should be visible like in IE
Updated•17 years ago
|
Status: UNCONFIRMED → RESOLVED
Closed: 17 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•