Closed
Bug 470541
Opened 17 years ago
Closed 17 years ago
Appending td to table to DOM tree via javascript does not respect rowspan
Categories
(Core :: Layout: Tables, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 148810
People
(Reporter: stephane, Unassigned)
Details
Attachments
(1 file)
|
2.16 KB,
text/html
|
Details |
User-Agent: Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.9.0.5) Gecko/2008121622 Ubuntu/8.10 (intrepid) Firefox/3.0.5
Build Identifier: Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.9.0.5) Gecko/2008121622 Ubuntu/8.10 (intrepid) Firefox/3.0.5
When table is appended to dom tree via javascript follow some cells are appended to table, colspan isn't exposed.
Reproducible: Always
Steps to Reproduce:
See example.
| Reporter | ||
Comment 1•17 years ago
|
||
Updated•17 years ago
|
Component: General → Layout: Tables
Product: Firefox → Core
QA Contact: general → layout.tables
Updated•17 years ago
|
Summary: [rowspan issue] hen table is appended to dom tree via javascript follow some cells are appended to table, colspan isn't exposed. → Appending td to table to DOM tree via javascript does not respect rowspan
The "bad" code creates tr below a existing table so that each tr gets wrapped by a anonymous table row group. The rowspan will not exceed the rowgroup so it looks like the cell does not have a rowspan but it covers two nonexistent rows in the wrapping rowgroup.
In the good case only one rowgroup wraps all rows so the rowspan can become visible.
which is a dupe of bug 148810
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
•