[Webkit-unassigned] [Bug 20610] display in style of tr results in ignoring style in col-tags

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Oct 20 18:15:30 PDT 2011


https://bugs.webkit.org/show_bug.cgi?id=20610


Tab Atkins <tabatkins at google.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |INVALID
                 CC|                            |tabatkins at google.com




--- Comment #4 from Tab Atkins <tabatkins at google.com>  2011-10-20 18:15:30 PST ---
Not a bug.  If you set 'display' to something other than 'table-row', then *it's no longer a table row*.  The CSS table fix-up algorithm then goes to work and does some fun things to the table's formatting structure.

In other words, you start with this structure:

table
 - table-column
 - table-column
 - table-row
   - table-cell
   - table-cell
 - table-row
   - table-cell
   - table-cell 

But after you set the second <tr> to be display:run-in, you instead get this structure:

table
 - table-column
 - table-column
 - table-row
   - table-cell
   - table-cell
 - (anonymous) table-row
   - (anonymous) table-cell
     - run-in
       - (anonymous) table
         - (anonymous) table-row
           - table-cell
           - table-cell

This is all expected behavior, so I'm marking this bug as invalid.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list