| Index: LayoutTests/fast/css-grid-layout/grid-item-named-grid-line-resolution.html
|
| diff --git a/LayoutTests/fast/css-grid-layout/grid-item-named-grid-line-resolution.html b/LayoutTests/fast/css-grid-layout/grid-item-named-grid-line-resolution.html
|
| index 5afe940a22e4758cc8fdda4e74b448a41d941bd5..dd4bec17ef0cdb13a4285eddbbc62a2783072e41 100644
|
| --- a/LayoutTests/fast/css-grid-layout/grid-item-named-grid-line-resolution.html
|
| +++ b/LayoutTests/fast/css-grid-layout/grid-item-named-grid-line-resolution.html
|
| @@ -4,17 +4,17 @@
|
| <link href="resources/grid.css" rel="stylesheet">
|
| <style>
|
| .gridWithoutRepeat {
|
| - grid-template-columns: (a) 50px (b) 100px (c) 200px (d);
|
| - grid-template-rows: (e) 50px (f) 100px (g) 200px (h);
|
| + grid-template-columns: [a] 50px [b] 100px [c] 200px [d];
|
| + grid-template-rows: [e] 50px [f] 100px [g] 200px [h];
|
| }
|
|
|
| .gridWithRepeat {
|
| - grid-template-columns: (b) 50px (b) 100px (b) 200px (b);
|
| - grid-template-rows: (g) 50px (g) 100px (g) 200px (g);
|
| + grid-template-columns: [b] 50px [b] 100px [b] 200px [b];
|
| + grid-template-rows: [g] 50px [g] 100px [g] 200px [g];
|
| }
|
|
|
| .gridFromSpecs {
|
| - grid-template-columns: (A) 10px (B) 20px (C) 30px (A) 40px (B) 50px (C) 60px (A) 70px (B) 80px (C);
|
| + grid-template-columns: [A] 10px [B] 20px [C] 30px [A] 40px [B] 50px [C] 60px [A] 70px [B] 80px [C];
|
| grid-template-rows: 100px;
|
| }
|
|
|
|
|