Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Unified Diff: LayoutTests/fast/css-grid-layout/grid-item-end-after-get-set.html

Issue 22353013: [CSS Grid Layout] Unknown grid area should compute to 'auto' (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/css-grid-layout/grid-item-end-after-get-set.html
diff --git a/LayoutTests/fast/css-grid-layout/grid-item-end-after-get-set.html b/LayoutTests/fast/css-grid-layout/grid-item-end-after-get-set.html
index 016429e7579a1cb159015ebe2458297c961fee92..a8d595354529510608c8be8cb684fe9a238ca50c 100644
--- a/LayoutTests/fast/css-grid-layout/grid-item-end-after-get-set.html
+++ b/LayoutTests/fast/css-grid-layout/grid-item-end-after-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 {
@@ -101,8 +101,8 @@
testColumnEndRowEndJSParsing("span 'first'", "span 'last'", "span 1 first", "span 1 last");
testColumnEndRowEndJSParsing("auto", "auto");
testColumnEndRowEndJSParsing("thirdArea", "secondArea");
- testColumnEndRowEndJSParsing("nonExistentArea", "secondArea", "nonExistentArea", "secondArea");
- testColumnEndRowEndJSParsing("secondArea", "nonExistentArea", "secondArea", "nonExistentArea");
+ testColumnEndRowEndJSParsing("nonExistentArea", "secondArea", "auto", "secondArea");
+ testColumnEndRowEndJSParsing("secondArea", "nonExistentArea", "secondArea", "auto");
debug("");
debug("Test setting grid-column-start and grid-row-start to 'inherit' through JS");

Powered by Google App Engine
This is Rietveld 408576698