| Index: LayoutTests/fast/css-grid-layout/grid-item-position-changed-dynamic.html
|
| diff --git a/LayoutTests/fast/css-grid-layout/grid-item-position-changed-dynamic.html b/LayoutTests/fast/css-grid-layout/grid-item-position-changed-dynamic.html
|
| index a0080fce31101f65ae06b2e2ba61a6aff5e73263..347b0e670179050e23d757d576a2559640403981 100644
|
| --- a/LayoutTests/fast/css-grid-layout/grid-item-position-changed-dynamic.html
|
| +++ b/LayoutTests/fast/css-grid-layout/grid-item-position-changed-dynamic.html
|
| @@ -3,12 +3,12 @@
|
| <link href="resources/grid.css" rel="stylesheet">
|
| <style>
|
| .grid {
|
| - grid-template-columns: (col) 50px (col) 100px (col) 200px (col);
|
| - grid-template-rows: (row) 70px (row) 140px (row) 280px (row);
|
| + grid-template-columns: [col] 50px [col] 100px [col] 200px [col];
|
| + grid-template-rows: [row] 70px [row] 140px [row] 280px [row];
|
| }
|
| .differentNamedGridLines {
|
| - grid-template-columns: (col1) 50px (col2) 100px (col3) 200px (col4);
|
| - grid-template-rows: (row1) 70px (row2) 140px (row3) 280px (row4);
|
| + grid-template-columns: [col1] 50px [col2] 100px [col3] 200px [col4];
|
| + grid-template-rows: [row1] 70px [row2] 140px [row3] 280px [row4];
|
| }
|
| </style>
|
| <script src="../../resources/check-layout.js"></script>
|
|
|