mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
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
20 lines
371 B
HTML
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> |