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]`