mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 09:45:06 +02:00
Before this change, we were at the mercy of hashed pointer addresses when processing fragment relocation in LayoutState::commit(). This made inline fragment order non-deterministic, causing layouts to shift around seemingly randomly on page reload. By simply using OrderedHashMap, we automatically get tree order processing here. This fixes a bunch of flaky tests on WPT.
18 lines
939 B
Plaintext
18 lines
939 B
Plaintext
Viewport <#document> at (0,0) content-size 800x600 children: not-inline
|
|
BlockContainer <html> at (0,0) content-size 800x18 [BFC] children: inline
|
|
InlineNode <body>
|
|
frag 0 from BlockContainer start: 0, length: 0, rect: [8,0 36.84375x18] baseline: 13.796875
|
|
frag 1 from TextNode start: 0, length: 5, rect: [8,0 36.84375x18] baseline: 13.796875
|
|
"hello"
|
|
BlockContainer <main> at (8,0) content-size 36.84375x18 inline-block [BFC] children: not-inline
|
|
BlockContainer <div> at (8,0) content-size 36.84375x18 children: inline
|
|
TextNode <#text>
|
|
TextNode <#text>
|
|
|
|
ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|
PaintableWithLines (BlockContainer<HTML>) [0,0 800x18]
|
|
PaintableWithLines (InlineNode<BODY>)
|
|
PaintableWithLines (BlockContainer<MAIN>) [8,0 36.84375x18]
|
|
PaintableWithLines (BlockContainer<DIV>) [8,0 36.84375x18]
|
|
TextPaintable (TextNode<#text>)
|