diff options
author | martinfalisse <martinmotteditfalisse@gmail.com> | 2022-11-21 19:47:31 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-11-21 21:48:25 +0000 |
commit | 0c577b4b3ba1943aa25778cf26a31bc66aad94ff (patch) | |
tree | 268eb62be3385bfc0abf206cf5be7ef4e9d30ea6 | |
parent | 513a12372868c3472df9c90c6eda476fc1723afd (diff) | |
download | serenity-0c577b4b3ba1943aa25778cf26a31bc66aad94ff.zip |
Base: Add test for multiple line names in CSS Grid
-rw-r--r-- | Base/res/html/misc/display-grid.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Base/res/html/misc/display-grid.html b/Base/res/html/misc/display-grid.html index 6ca771cc7c..d9187d7c06 100644 --- a/Base/res/html/misc/display-grid.html +++ b/Base/res/html/misc/display-grid.html @@ -131,6 +131,15 @@ that I don't quite understand. --> <div class="grid-item">1</div> </div> +<div + class="grid-container" + style=" + grid-column-gap: 1px; + grid-template-columns: [name1 name2 name3] 1fr repeat(1, [name4 name5 name6] 1fr); + "> + <div class="grid-item">1</div> +</div> + <p>End of crash tests</p> <!-- Different column sizes --> |