mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 00:37:35 +00:00
Tests/LibWeb: Split input/grid/minmax.html into smaller tests
This commit is contained in:
parent
0dcc93ed3d
commit
f2323b5b99
10 changed files with 130 additions and 239 deletions
17
Tests/LibWeb/Layout/input/grid/minmax-2.html
Normal file
17
Tests/LibWeb/Layout/input/grid/minmax-2.html
Normal file
|
@ -0,0 +1,17 @@
|
|||
<style>
|
||||
.container {
|
||||
display: grid;
|
||||
background-color: lightsalmon;
|
||||
grid-template-columns: minmax(150px, 300px) minmax(150px, 300px);
|
||||
/* FIXME: We currently does not layout this correctly. Rows take 25px even if 50px are available. */
|
||||
grid-template-rows: minmax(25px, 50px) minmax(25px, 50px);
|
||||
}
|
||||
|
||||
.one {
|
||||
background-color: lightblue;
|
||||
}
|
||||
|
||||
.two {
|
||||
background-color: yellowgreen;
|
||||
}
|
||||
</style><div class="container"><div class="one">1</div><div class="two">2</div></div>
|
Loading…
Add table
Add a link
Reference in a new issue