https://bugzilla.wikimedia.org/show_bug.cgi?id=72790

Ed Sanders <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #4 from Ed Sanders <[email protected]> ---
I suspect that

<table>
 <tr>
  <td colspan="2" rowspan="2">Foo</td>
  <td colspan="2" rowspan="2">Foo</td>
 </tr>
</table>

is bad HTML, as it asks you to span into a row that doesn't exist, in fact

<table>
 <tr>
  <td colspan="2" rowspan="2">Foo</td>
  <td colspan="2" rowspan="2">Foo</td>
 </tr>
 <tr>
  <td colspan="4">Bar</td>
 </tr>
</table>

breaks the renderer in both Chrome and Firefox. An extra, empty, <tr> is
required between the two.

I'm putting that part down as wontfix, give that browsers don't even support
it.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to