1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 11:27:35 +00:00

Tests/LibWeb: Split grid/positions-and-spans.html into smaller tests

This giant grid test has been a source of problems while iterating on
GFC for a long time. Let's split it into smaller tests to make it
easier to identify issues without needing further reductions on the
test.
This commit is contained in:
Aliaksandr Kalenik 2023-08-24 18:14:36 +02:00 committed by Andreas Kling
parent 29b2022303
commit 6267037a74
10 changed files with 163 additions and 173 deletions

View file

@ -0,0 +1,15 @@
<style>
* {
border: 1px solid black;
grid-template-columns: 1fr 1fr;
}
.grid-container {
display: grid;
}
.a {
grid-column: 1 / span 3;
grid-row: 1;
}
</style><div class="grid-container"><div class="a">1</div><div>2</div></div>