From fcad6ce7f4f0b0aa79154e1f7080f7d14b02f61d Mon Sep 17 00:00:00 2001
From: Oriol Brufau
Date: Wed, 11 Dec 2019 16:02:45 +0100
Subject: [PATCH] [css-grid-1] Exclude implicit tracks from track listing
resolved value. #4475
In order to have round-tripping. As resolved in
https://github.com/w3c/csswg-drafts/issues/4475#issuecomment-553525609
---
css-grid-1/Overview.bs | 19 ++++++++++++++++---
1 file changed, 16 insertions(+), 3 deletions(-)
diff --git a/css-grid-1/Overview.bs b/css-grid-1/Overview.bs
index 9cabf738801..af5dab2683d 100644
--- a/css-grid-1/Overview.bs
+++ b/css-grid-1/Overview.bs
@@ -1912,9 +1912,9 @@ Resolved Value of a Track Listing
-
- Every track listed individually,
- whether implicitly or explicitly created,
- without using the ''repeat()'' notation.
+ Every explicitly created track listed individually,
+ without using the ''repeat()'' notation,
+ and excluding implicitly created tracks.
-
Every track size given as a length in pixels,
@@ -4753,6 +4753,19 @@ Major Changes
The used flex fraction is zero.
+
+
-
+ Don't include implicit tracks in the resolved value of a track listing,
+ so that the value round-trips.
+ (Issue 4475)
+
+ Every track listed individually,
+ whether implicitly or explicitly created,
+ without using the ''repeat()'' notation.
+ Every explicitly created track listed individually,
+ without using the ''repeat()'' notation,
+ and excluding implicitly created tracks.
+
Minor Changes