1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-18 20:15:08 +00:00
serenity/Tests/LibWeb/Layout/input/misc/grid-template-block-components-whitespace-crash.html
Andi Gallo db121c7af1 LibWeb: Handle leading whitespace in grid-template-* block components
We're already handling whitespace between components, do the same for
leading whitespace. Fixes crash on https://distill.pub/2021/gnn-intro.
2023-06-18 13:41:15 +02:00

7 lines
137 B
HTML

<style>
test {
display: grid;
width: 100%;
grid-template-columns: 50px [ first second ] 1fr;
}
</style>