
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
20 lines
375 B
HTML
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>
|