Files
ladybird/Tests/LibWeb/Layout/input/grid/1fr-1000px.html
Aliaksandr Kalenik 3270df476d LibWeb: Fix flexible track sizing in GFC
- Change min track sizing function to be "auto" when flex size is
  specified.
- Never check if min track sizing funciton is flexible, because only
  max is allowed to be flexible.
- Address FIXME in automatic_minimum_size to avoid regressions after
  making two fixes mentioned above.
2024-07-17 18:00:18 +02:00

12 lines
322 B
HTML

<!doctype html><style>
* {
outline: 1px solid black;
}
body {
display: grid;
grid-template-columns: 1fr 1000px;
}
nav {
background: pink;
}
</style><body><nav>Hello</nav>