diff options
Diffstat (limited to 'Tests/LibWeb/Layout/input/grid/grid-shorthand-property.html')
-rw-r--r-- | Tests/LibWeb/Layout/input/grid/grid-shorthand-property.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Tests/LibWeb/Layout/input/grid/grid-shorthand-property.html b/Tests/LibWeb/Layout/input/grid/grid-shorthand-property.html new file mode 100644 index 0000000000..8b9c7a4475 --- /dev/null +++ b/Tests/LibWeb/Layout/input/grid/grid-shorthand-property.html @@ -0,0 +1,10 @@ +<style> +.container { + display: grid; + grid: 100px / 200px; +} + +.item { + background-color: navy; +} +</style><div class="container"><div class="item"></div></div>
\ No newline at end of file |