| Index: LayoutTests/fast/css-grid-layout/flex-column-use-available-width.html
|
| diff --git a/LayoutTests/fast/css-grid-layout/flex-column-use-available-width.html b/LayoutTests/fast/css-grid-layout/flex-column-use-available-width.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f622222b78ccec5aa2cfd1c0a0e3c5b1551bc8be
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/css-grid-layout/flex-column-use-available-width.html
|
| @@ -0,0 +1,17 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<head>
|
| + <link href="resources/grid.css" rel="stylesheet">
|
| + <style type="text/css">
|
| + .grid {
|
| + grid-definition-columns: 1fr;
|
| + }
|
| + </style>
|
| +</head>
|
| +<body>
|
| + <p>Flex column should use all the available width and you should not see the grid background (grey at the end).</p>
|
| + <div class="grid">
|
| + <div class="firstRowFirstColumn">grid item</div>
|
| + </div>
|
| +</body>
|
| +</html>
|
|
|