Index: LayoutTests/fast/css-grid-layout/grid-item-start-before-get-set.html |
diff --git a/LayoutTests/fast/css-grid-layout/grid-item-start-before-get-set.html b/LayoutTests/fast/css-grid-layout/grid-item-start-before-get-set.html |
index e28bec0610f6e38e9b79762a17a2ab0dda4b1d5d..d07a6ab4f59c51af5f60780f777207c64e817b6c 100644 |
--- a/LayoutTests/fast/css-grid-layout/grid-item-start-before-get-set.html |
+++ b/LayoutTests/fast/css-grid-layout/grid-item-start-before-get-set.html |
@@ -4,8 +4,8 @@ |
<link href="resources/grid.css" rel="stylesheet"> |
<style> |
.grid { |
- grid-template: "firstArea" "secondArea" |
- "thirdArea" "thirdArea"; |
+ grid-template: "firstArea secondArea" |
+ "thirdArea thirdArea"; |
} |
.gridItemWithPositiveInteger { |
@@ -106,8 +106,8 @@ |
testColumnStartRowStartJSParsing("span 'nav'", "span 'last'", "span 1 nav", "span 1 last"); |
testColumnStartRowStartJSParsing("auto", "auto"); |
testColumnStartRowStartJSParsing("thirdArea", "secondArea"); |
- testColumnStartRowStartJSParsing("nonExistentArea", "secondArea", "nonExistentArea", "secondArea"); |
- testColumnStartRowStartJSParsing("secondArea", "nonExistentArea", "secondArea", "nonExistentArea"); |
+ testColumnStartRowStartJSParsing("nonExistentArea", "secondArea", "auto", "secondArea"); |
+ testColumnStartRowStartJSParsing("secondArea", "nonExistentArea", "secondArea", "auto"); |
debug(""); |
debug("Test setting grid-column-start and grid-row-start to 'inherit' through JS"); |