Files
ladybird/Tests/LibWeb/Layout/input/grid/restart-fr-algorithm-if-less-than-base-size.html
Aliaksandr Kalenik 7b2042571b LibWeb: Implement missing step in GFC fr size calculation
Implements:
"If the product of the hypothetical fr size and a flexible track’s flex
factor is less than the track’s base size, restart this algorithm
treating all such tracks as inflexible."

Fixes https://github.com/LadybirdBrowser/ladybird/issues/1211
2024-08-31 07:47:20 +02:00

20 lines
371 B
HTML

<!DOCTYPE html>
<style>
* {
outline: 1px solid black;
}
html {
background: white;
}
body {
background: pink;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
width: 200px;
}
.nowrap {
background: orange;
white-space: nowrap;
}
</style>
<body><div></div><div class="nowrap">HelloFriendsHelloFriends</div><div></div></body>