1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 11:17:35 +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,16 @@
<style>
/* FIXME: This test is not rendered correctly */
* {
border: 1px solid black;
}
.grid-container {
display: grid;
grid-template-columns: repeat(2, [name1] 50px [name2] 100px);
}
.a {
grid-column-start: name2
}
</style><div class="grid-container"><div class="a">1</div><div>2</div><div>3</div><div>4</div></div>