mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 08:48:11 +00:00

automatic_content_width() should return grid container width that is supposed to be set by determine_intrinsic_size_of_grid_container().
16 lines
No EOL
344 B
HTML
16 lines
No EOL
344 B
HTML
<!DOCTYPE html><html><head><style>
|
|
* {
|
|
border: 1px solid black !important;
|
|
}
|
|
.grid {
|
|
float: left;
|
|
display: grid;
|
|
grid-template-columns: min-content minmax(0, auto);
|
|
}
|
|
.whee {
|
|
background: pink;
|
|
}
|
|
.yeehaw {
|
|
background: lightskyblue;
|
|
}
|
|
</style></head><body><div class="grid"><div class="whee">whee</div><div class="yeehaw">yeehaw</div> |