mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 14:37:45 +00:00
LibWeb: Allow infinitely long flex lines when sizing under max-content
If the flex container is being sized under a max-content main size constraint, there is effectively infinite space available for flex items. Thus, flex lines should be allowed to be infinitely long. This is a little awkward, because the spec doesn't mention specifics about how to resolve flexible lengths during intrninsic sizing. I've marked the spec deviations with big "AD-HOC" comments.
This commit is contained in:
parent
9c74f49b1d
commit
3f9cfa144c
3 changed files with 45 additions and 2 deletions
|
@ -0,0 +1,9 @@
|
|||
Viewport <#document> at (0,0) content-size 800x600 children: not-inline
|
||||
BlockContainer <html> at (0,0) content-size 800x53.46875 [BFC] children: not-inline
|
||||
BlockContainer <body.outer> at (18,18) content-size 280.84375x17.46875 children: not-inline
|
||||
Box <div.inner> at (18,18) content-size 280.84375x17.46875 flex-container(row) [FFC] children: not-inline
|
||||
BlockContainer <(anonymous)> at (18,18) content-size 280.84375x17.46875 flex-item [BFC] children: inline
|
||||
line 0 width: 280.84375, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 35, rect: [18,18 280.84375x17.46875]
|
||||
"this text should be all on one line"
|
||||
TextNode <#text>
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html><style>
|
||||
html { background: white; }
|
||||
.outer {
|
||||
width: max-content;
|
||||
padding: 10px;
|
||||
background: pink;
|
||||
}
|
||||
.inner {
|
||||
display: flex;
|
||||
background: orange;
|
||||
}
|
||||
</style><body class="outer"><div class="inner">this text should be all on one line
|
Loading…
Add table
Add a link
Reference in a new issue