Closed
Bug 157012
Opened 23 years ago
Closed 23 years ago
<td colspan="0"> should span across colgroup
Categories
(Core :: Layout, defect)
Tracking
()
RESOLVED
INVALID
People
(Reporter: alfred, Assigned: attinasi)
Details
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.0) Gecko/20020607
BuildID: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.0) Gecko/20020607
td with colspan=0 in table should span all columns like w3c spec points out in:
http://www.w3.org/TR/html4/struct/tables.html#adef-colspan
Reproducible: Always
Steps to Reproduce:
1.load sample html code
Actual Results: displays "a - b" in first column
+------+---+
|a | b |
+------+---+
|a - b | |
+------+---+
Expected Results: displays "a - b" across two columns
+------+
|a | b |
+------+
|a - b |
+------+
<html>
<body>
<table border="1">
<tr>
<td>a</td>
<td>b</td>
</tr>
<tr>
<td colspan="0">a - b</td>
</tr>
</table>
</body>
</html>
Comment 1•23 years ago
|
||
it does - but only in standards mode, because this is often missused for
invisible cells...
Comment 2•23 years ago
|
||
Status: UNCONFIRMED → RESOLVED
Closed: 23 years ago
Resolution: --- → INVALID
You need to log in
before you can comment on or make changes to this bug.
Description
•