servo/components/layout_2020/table
Oriol Brufau d10d01757d
Don't shrink table columns when handling cells with greater spanning (#32458)
For example:
```html
<table border="1">
  <tr>  <td></td>  <td></td>  </tr>
  <tr>  <td colspan="2"></td>  </tr>
</table>
```
We should initially size the columns according to the cells in the first
row since they have a span of 1. Then we handle the cell in the second
row with a span of 2, this should be able to increase the size of the
columns, but never decrease them.
2024-06-07 16:37:12 +00:00
..
construct.rs Don't trim leading whitespace of anonymous table cells (#31803) 2024-03-21 11:48:39 +00:00
layout.rs Don't shrink table columns when handling cells with greater spanning (#32458) 2024-06-07 16:37:12 +00:00
mod.rs rustdoc: fix warnings in components/layout_2020/table (#31738) 2024-03-19 14:51:28 +00:00