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

Tests/LibWeb: Split "grid/named-tracks.html" into smaller layout tests

The file grid/named-tracks.html contained multiple subtests. Splitting
them into individual files will make it simpler to identify where is
the issue.
This commit is contained in:
Aliaksandr Kalenik 2023-08-27 14:06:24 +02:00 committed by Andreas Kling
parent b0eea51335
commit e4dd4808c4
8 changed files with 173 additions and 177 deletions

View file

@ -0,0 +1,20 @@
<style>
/* FIXME: This test is not rendered correctly */
* {
border: 1px solid black;
}
.grid-container {
display: grid;
grid-template-columns: [a] auto [b] auto;
}
.a {
grid-column-start: a;
}
.b {
grid-column-start: b;
}
</style><div class="grid-container"><div class="a">1</div><div class="b">2</div></div>