1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-24 01:15:07 +00:00
serenity/Tests/LibWeb/Layout/input/grid/intrinsic-sized-grid.html
martinfalisse ea61296738 LibWeb: Use layout-test-mode for layout tests
Also do some test changes to test it out :^)
2023-05-08 14:47:52 +02:00

17 lines
No EOL
371 B
HTML

<!DOCTYPE html><html><head><style>
* {
border: 1px solid black !important;
}
body {
float: left;
}
.grid {
display: grid;
grid-template-areas: "foo whee";
grid-template-columns: min-content minmax(0, auto) min-content;
}
.whee {
grid-area: whee;
background: pink;
}
</style></head><body><div class="grid"><div class="whee">whee