mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 04:09:13 +00:00
LibWeb: Don't treat auto insets as definite for child of abspos element
This fixes an issue where the welcome screen wasn't showing up the first time you visit https://puter.com/ :^)
This commit is contained in:
parent
e43e4d3a93
commit
a74954e145
Notes:
github-actions[bot]
2024-11-27 21:56:05 +00:00
Author: https://github.com/awesomekling
Commit: a74954e145
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2611
3 changed files with 25 additions and 2 deletions
|
@ -1226,10 +1226,15 @@ void FormattingContext::layout_absolutely_positioned_element(Box const& box, Ava
|
|||
|
||||
// If the box width and/or height is fixed and/or or resolved from inset properties,
|
||||
// mark the size as being definite (since layout was not required to resolve it, per CSS-SIZING-3).
|
||||
if (box.computed_values().inset().left().is_length() && box.computed_values().inset().right().is_length()) {
|
||||
auto is_length_but_not_auto = [](auto& length_percentage) {
|
||||
return length_percentage.is_length() && !length_percentage.is_auto();
|
||||
};
|
||||
if (is_length_but_not_auto(box.computed_values().inset().left())
|
||||
&& is_length_but_not_auto(box.computed_values().inset().right())) {
|
||||
box_state.set_has_definite_width(true);
|
||||
}
|
||||
if (box.computed_values().inset().top().is_length() && box.computed_values().inset().bottom().is_length()) {
|
||||
if (is_length_but_not_auto(box.computed_values().inset().top())
|
||||
&& is_length_but_not_auto(box.computed_values().inset().bottom())) {
|
||||
box_state.set_has_definite_height(true);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue