| Index: LayoutTests/fast/css-grid-layout/grid-item-bad-resolution-double-span.html | 
| diff --git a/LayoutTests/fast/css-grid-layout/grid-item-bad-resolution-double-span.html b/LayoutTests/fast/css-grid-layout/grid-item-bad-resolution-double-span.html | 
| index fccc8ab4097d422929bc0ca33e3604699d9f8d38..b23fa78b4f7b1e95c9d7436aa59b4aa0d760dab4 100644 | 
| --- a/LayoutTests/fast/css-grid-layout/grid-item-bad-resolution-double-span.html | 
| +++ b/LayoutTests/fast/css-grid-layout/grid-item-bad-resolution-double-span.html | 
| @@ -3,14 +3,14 @@ | 
| <link href="resources/grid.css" rel="stylesheet"> | 
| <style> | 
| .grid { | 
| -    grid-definition-rows: "firstRow" 10px 20px; | 
| -    grid-definition-columns: "firstColumn" 30px 40px; | 
| +    grid-definition-rows: (firstRow) 10px 20px; | 
| +    grid-definition-columns: (firstColumn) 30px 40px; | 
| grid-auto-flow: row; | 
| } | 
|  | 
| .bothSpanRow { | 
| grid-column: 1; | 
| -    grid-row: span 5 "firstRow" / span 1; | 
| +    grid-row: span 5 (firstRow) / span 1; | 
| } | 
|  | 
| .bothSpanColumn { | 
| @@ -20,7 +20,7 @@ | 
|  | 
| .spanAutoRow { | 
| grid-column: 1; | 
| -    grid-row: span 5 "firstRow" / auto; | 
| +    grid-row: span 5 (firstRow) / auto; | 
| } | 
|  | 
| .spanAutoColumn { | 
|  |