Files
rust_browser/tests/goldens/expected/066-flex-gap.layout.txt
Zachary D. Rowitsch aee717819e Fix flex layout: Y positioning, text rendering, and CSS min()/max() in grid
Three bugs fixed:

1. Flex containers never had their Y coordinate set, causing them to
   render at Y=0 regardless of document position.

2. Flex item text was invisible because layout_children bypassed inline
   formatting context (IFC) setup. Replaced with layout_block_children
   (same approach as grid items) so text gets proper line boxes.

3. Flex item intrinsic sizing only checked grandchildren for text, missing
   deeper descendants like <li><a>Text</a></li>. Now recurses the full
   subtree.

Additionally, added CSS min()/max() function support and Percent variant
in grid template parsing (e.g., grid-template-columns: 1fr min(45rem, 90%) 1fr).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-12 19:50:49 -05:00

58 lines
2.0 KiB
Plaintext

LayoutBox node=#2 tag=html box=block
content: (0, 0, 800, 46)
padding: 0 0 0 0
border: 0 0 0 0
margin: 0 0 0 0
LayoutBox node=#10 tag=body box=block
content: (8, 8, 784, 30)
padding: 0 0 0 0
border: 0 0 0 0
margin: 8 8 8 8
LayoutBox node=#12 tag=div box=flex
content: (8, 8, 300, 30)
padding: 0 0 0 0
border: 0 0 0 0
margin: 0 0 0 0
LayoutBox node=#14 tag=div box=block
content: (8, 8, 50, 30)
padding: 0 0 0 0
border: 0 0 0 0
margin: 0 0 0 0
inline_context: 1 lines, height=19.2, max_width=7.506608
line[0]: rect=(8, 8, 7.506608, 19.2) fragments=1
frag[0]: rect=(8, 8, 7.506608, 16) text="A" start=false end=false
LayoutBox node=#15 tag=anonymous box=anon
content: (0, 0, 7.506608, 16)
padding: 0 0 0 0
border: 0 0 0 0
margin: 0 0 0 0
text: "A"
LayoutBox node=#17 tag=div box=block
content: (78, 8, 50, 30)
padding: 0 0 0 0
border: 0 0 0 0
margin: 0 0 0 0
inline_context: 1 lines, height=19.2, max_width=7.635826
line[0]: rect=(78, 8, 7.635826, 19.2) fragments=1
frag[0]: rect=(78, 8, 7.6358294, 16) text="B" start=false end=false
LayoutBox node=#18 tag=anonymous box=anon
content: (0, 0, 7.6358294, 16)
padding: 0 0 0 0
border: 0 0 0 0
margin: 0 0 0 0
text: "B"
LayoutBox node=#20 tag=div box=block
content: (148, 8, 50, 30)
padding: 0 0 0 0
border: 0 0 0 0
margin: 0 0 0 0
inline_context: 1 lines, height=19.2, max_width=7.4243774
line[0]: rect=(148, 8, 7.4243774, 19.2) fragments=1
frag[0]: rect=(148, 8, 7.424376, 16) text="C" start=false end=false
LayoutBox node=#21 tag=anonymous box=anon
content: (0, 0, 7.424376, 16)
padding: 0 0 0 0
border: 0 0 0 0
margin: 0 0 0 0
text: "C"