diff options
author | Andreas Kling <kling@serenityos.org> | 2023-06-01 14:20:11 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-06-01 15:11:48 +0200 |
commit | 3f9cfa144c4a5739c68ac61b6520ee759ae44f88 (patch) | |
tree | 3de4e714c53aea8af0b3204e37794ec6d681dd9a /Tests/LibWeb/Layout/input/flex | |
parent | 9c74f49b1ddacd56dd35667b0fa76ff4de422c19 (diff) | |
download | serenity-3f9cfa144c4a5739c68ac61b6520ee759ae44f88.zip |
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.
Diffstat (limited to 'Tests/LibWeb/Layout/input/flex')
-rw-r--r-- | Tests/LibWeb/Layout/input/flex/flex-container-intrinsic-cross-size-with-max-content-main-size.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Tests/LibWeb/Layout/input/flex/flex-container-intrinsic-cross-size-with-max-content-main-size.html b/Tests/LibWeb/Layout/input/flex/flex-container-intrinsic-cross-size-with-max-content-main-size.html new file mode 100644 index 0000000000..9ff4ad9d24 --- /dev/null +++ b/Tests/LibWeb/Layout/input/flex/flex-container-intrinsic-cross-size-with-max-content-main-size.html @@ -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
\ No newline at end of file |