ladybird/Tests/LibWeb/Ref/expected/inline-nested-node-ref.html
Christoffer Sandberg 879af72850 LibWeb: Improve painting of nested inline elements
PaintableWithLines created from inline nodes need to examine their
children to fully compute their size and offset as nested children
might have textnodes that are placed before their parent.

Fixes #1286
2024-12-04 11:23:54 +00:00

20 lines
375 B
HTML

<!DOCTYPE html>
<style>
.bluebg {
background-color: #0000FF7F;
}
</style>
<body>
<div>
<span class="bluebg">12</span>
</div>
<div>
<span class="bluebg">12</span>
</div>
<div>
<span class="bluebg">1234</span><span>consecutive inline item</span>
</div>
<div>
<span class="bluebg">24</span>
</div>
</body>