Re: [csswg-drafts] [css-tables-3] Cell definiteness rules on 2nd layout incomplete. (#6380)

I did confirm that dating back to IE, percentages are only re-evaluated for cells that had grown as a result of row equalization.

```
<!doctype html>

<table style="height: 100%;">
  <td>
    <div style="height: 200%; background: yellow;">Will grow</div>
  </td>
  <td>
   X<br>X
  </td>
</table>

<hr style="margin-bottom: 50px">

<table style="height: 100%;">
  <td>
    <div style="height: 200%; background: yellow;">Will grow</div>
  </td>
  <td>
   <big>X</big>
  </td>
</table>

<hr style="margin-bottom: 50px">

<table style="height: 100%;">
  <td>
    <div style="height: 200%; background: yellow;">Will not grow</div>
  </td>
  <td>
   X
  </td>
</table>
```

It is a bit crazy, but I will add this change to the spec. Thanks for the feedback on this!

-- 
GitHub Notification of comment by FremyCompany
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/6380#issuecomment-862807675 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Wednesday, 16 June 2021 23:52:55 UTC