mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-01 20:17:13 +02:00
Whenever we introduce a block element in a container that at that point has only had inline children, we create an anonymous wrapper for all the inline elements so we can keep the invariant that each container contains either inline or non-inline children. For some reason, we ignore all the out-of-flow nodes since they are layed out separately and it was thought that this shouldn't matter. However, if we are dealing with inline blocks and floating blocks, the order of the inline contents _including_ out-of-flow nodes becomes very important: floating blocks need to take the order of nodes into account when positioning themselves. Fix this by simply hoisting the out-of-flow nodes into the anonymous wrapper as well. Fixes the order of blocks in #4212. The gap is still not present.
36 lines
2.1 KiB
Plaintext
36 lines
2.1 KiB
Plaintext
Viewport <#document> at (0,0) content-size 800x600 children: not-inline
|
|
BlockContainer <html> at (0,0) content-size 650x466 [BFC] children: not-inline
|
|
BlockContainer <body> at (8,16) content-size 634x384 children: not-inline
|
|
BlockContainer <(anonymous)> at (8,16) content-size 634x0 children: inline
|
|
BlockContainer <div.a> at (342,16) content-size 300x225 floating [BFC] children: not-inline
|
|
TextNode <#text>
|
|
BlockContainer <p> at (8,16) content-size 634x68 children: inline
|
|
frag 0 from TextNode start: 0, length: 27, rect: [8,16 232.84375x17] baseline: 13.296875
|
|
"Lorem ipsum dolor sit amet,"
|
|
frag 1 from TextNode start: 28, length: 35, rect: [8,33 278.125x17] baseline: 13.296875
|
|
"consectetur adipiscing elit, sed do"
|
|
frag 2 from TextNode start: 64, length: 38, rect: [8,50 316.5x17] baseline: 13.296875
|
|
"eiusmod tempor incididunt ut labore et"
|
|
frag 3 from TextNode start: 103, length: 20, rect: [8,67 167.078125x17] baseline: 13.296875
|
|
"dolore magna aliqua."
|
|
TextNode <#text>
|
|
BlockContainer <(anonymous)> at (8,100) content-size 634x0 children: inline
|
|
TextNode <#text>
|
|
BlockContainer <div.a> at (342,241) content-size 300x225 floating [BFC] children: not-inline
|
|
TextNode <#text>
|
|
BlockContainer <div.b> at (8,100) content-size 634x300 children: not-inline
|
|
BlockContainer <(anonymous)> at (8,400) content-size 634x0 children: inline
|
|
TextNode <#text>
|
|
|
|
ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|
PaintableWithLines (BlockContainer<HTML>) [0,0 650x466]
|
|
PaintableWithLines (BlockContainer<BODY>) [8,16 634x384]
|
|
PaintableWithLines (BlockContainer(anonymous)) [8,16 634x0]
|
|
PaintableWithLines (BlockContainer<DIV>.a) [342,16 300x225]
|
|
PaintableWithLines (BlockContainer<P>) [8,16 634x68]
|
|
TextPaintable (TextNode<#text>)
|
|
PaintableWithLines (BlockContainer(anonymous)) [8,100 634x0]
|
|
PaintableWithLines (BlockContainer<DIV>.a) [342,241 300x225]
|
|
PaintableWithLines (BlockContainer<DIV>.b) [8,100 634x300]
|
|
PaintableWithLines (BlockContainer(anonymous)) [8,400 634x0]
|