From ac1d15f72622814869e73df0257cb3b8a32d24a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Naz=C4=B1m=20Can=20Alt=C4=B1nova?= Date: Wed, 19 Jul 2017 22:09:15 -0700 Subject: [PATCH] Add a bug link as comment for repeat function --- components/style/values/specified/grid.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/style/values/specified/grid.rs b/components/style/values/specified/grid.rs index 9b847626b17..81b60bdad6b 100644 --- a/components/style/values/specified/grid.rs +++ b/components/style/values/specified/grid.rs @@ -187,6 +187,8 @@ impl Parse for TrackList { fn parse<'i, 't>(context: &ParserContext, input: &mut Parser<'i, 't>) -> Result> { // Merge the line names while parsing values. The resulting values will // all be bunch of `` and one . + // FIXME: We need to decide which way is better for repeat function in + // https://bugzilla.mozilla.org/show_bug.cgi?id=1382369. // // For example, // `[a b] 100px [c d] repeat(1, 30px [g]) [h]` will be merged as `[a b] 100px [c d] 30px [g h]`