The table height layout algorithms in CSS 2 say that CSS 2 does not specify what to do when the height is given as a percentage.
Despite that, both Firefox and Chrome agree on a behavior.
(I think they treat a percentage height as 0?)
This breaks https://www.psxdev.net/ in Ladybird.
Linux
<!DOCTYPE html>
<style>
td {
background-color: black;
}
</style>
<table width="100%">
<tr height="100%">
<td>
<img src="http://psxdev.net/images/site/psxdev.gif"/>
</td>
</tr>
<tr height="500%">
</tr>
</table>
Ideally, Ladybird would follow whatever behavior the other browsers have here, especially since this causes breakages on real websites.
Ladybird does something different from the other browsers.
<!DOCTYPE html>
<style>
td {
background-color: black;
}
</style>
<table width="100%">
<tr height="100%">
<td>
<img src="http://psxdev.net/images/site/psxdev.gif"/>
</td>
</tr>
<tr height="500%">
</tr>
</table>
None?
The reduced test case in Firefox:
The reduced test case in Ladybird:
No response
Pay now to fund the work behind this issue.
Get updates on progress being made.
Maintainer is rewarded once the issue is completed.
You're funding impactful open source efforts
You want to contribute to this effort
You want to get funding like this too