mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
This occured because the abspos containing block is in-between the containing blocks of two regular ancestors in this case, so it was being skipped. (The containing block of a table cell is the table itself, not the table row.)
9 lines
227 B
HTML
9 lines
227 B
HTML
<!DOCTYPE html>
|
|
<table>
|
|
<!-- The first row is just here to move the second one down a bit. -->
|
|
<tr><td></td></tr>
|
|
<tr style="position: relative">
|
|
<td><div style="position: absolute">ABSPOS</div></td>
|
|
</tr>
|
|
</table>
|