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

Unified Diff: LayoutTests/fast/css-grid-layout/grid-item-start-before-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-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");

Powered by Google App Engine
This is Rietveld 408576698