-
Notifications
You must be signed in to change notification settings - Fork 708
/
Copy pathissues-cr-2017.html
984 lines (977 loc) · 89.7 KB
/
issues-cr-2017.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Grid Layout Level 1 Disposition of Comments for 2017-12-14 CR</title>
<style type="text/css">
pre { border: solid thin silver; padding: 0.2em; white-space: normal; }
pre > span { display: block; white-space: pre; }
.a { background: #52E052 }
.d { background: #8CCBF2 }
.oi { background: #E0CB52 }
.r { background: orange }
.fo { background: #f66 }
pre.a { background: #E9FBE9 }
pre.d { background: #DEF }
pre.oi { background: #FCFAEE }
pre.r { background: #FFEECC }
pre.fo { background: #FBE9E9 }
.open { border: solid red; }
:target { box-shadow: 0.25em 0.25em 0.25em; }
a[href^=mid], a[href~=flatten] { text-decoration: none; }
abbr { font-weight: bold; }
</style>
<h1>CSS Grid Layout Level 1 Disposition of Comments for 2017-12-14 CR</h1>
<p>Dated Draft: <a href="https://www.w3.org/TR/2017/CR-css-grid-1-20171214/">https://www.w3.org/TR/2017/CR-css-grid-1-20171214/</a>
<p>Editor's Draft: <a href="http://drafts.csswg.org/css-grid-1/">http://drafts.csswg.org/css-grid-1/</a>
<p>The following color coding convention is used for comments:</p>
<ul>
<li class="a">Accepted or Rejected and positive response
<li class="r">Rejected and no response
<li class="fo">Rejected and negative response
<li class="d">Deferred
<li class="oi">Out-of-Scope or Invalid and not verified
</ul>
<p class=open>Open issues are marked like this</p>
<p>An issue can be closed as <code>Accepted</code>, <code>OutOfScope</code>,
<code>Invalid</code>, <code>Rejected</code>, or <code>Retracted</code>.
<code>Verified</code> indicates commentor's acceptance of the response.</p>
<pre class=' a' id='issue-1'>
<span>Issue 1. <a href='#issue-1'>#</a></span>
<span>Summary: Resolve on rules for computing block-axis percentage margin/padding</span>
<span>From: Rossen Atanassov</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/2085'>https://github.com/w3c/csswg-drafts/issues/2085</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/2085#issuecomment-362000362'>https://github.com/w3c/csswg-drafts/issues/2085#issuecomment-362000362</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/db68ee43e752fabf68fd1e776a0ac840f4d3e971'>https://github.com/w3c/csswg-drafts/commit/db68ee43e752fabf68fd1e776a0ac840f4d3e971</a></span>
<span class="a">Closed: Accepted</span>
<span class="a">Verified: Commenter is chair</span>
<span>Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2018Feb/0000.html'>https://lists.w3.org/Archives/Public/www-style/2018Feb/0000.html</a> <a href="https://www.w3.org/Mail/flatten/index?subject=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-style/2018Feb/0000.html"><abbr title="Thread">∈</abbr></a></span></pre>
<pre class=' a' id='issue-2'>
<span>Issue 2. <a href='#issue-2'>#</a></span>
<span>Summary: Better intrinsic sizing of tracks when item spans flexible track</span>
<span>From: Manuel Rego Casasnovas</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/2177'>https://github.com/w3c/csswg-drafts/issues/2177</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/2177#issuecomment-365732303'>https://github.com/w3c/csswg-drafts/issues/2177#issuecomment-365732303</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/2177#issuecomment-383244660'>https://github.com/w3c/csswg-drafts/issues/2177#issuecomment-383244660</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/25e3f631310207ed83746530b4066b6278c3234f'>https://github.com/w3c/csswg-drafts/commit/25e3f631310207ed83746530b4066b6278c3234f</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2018Apr/0033.html'>https://lists.w3.org/Archives/Public/www-style/2018Apr/0033.html</a> <a href="https://www.w3.org/Mail/flatten/index?subject=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-style/2018Apr/0033.html"><abbr title="Thread">∈</abbr></a></span>
<span>Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2018May/0004.html'>https://lists.w3.org/Archives/Public/www-style/2018May/0004.html</a> <a href="https://www.w3.org/Mail/flatten/index?subject=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-style/2018May/0004.html"><abbr title="Thread">∈</abbr></a></span></pre>
<pre class=' a' id='issue-3'>
<span>Issue 3. <a href='#issue-3'>#</a></span>
<span>Summary: Clarify handling of gutters during track sizing</span>
<span>From: Manuel Rego Casasnovas</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/2201'>https://github.com/w3c/csswg-drafts/issues/2201</a></span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/2201#issuecomment-358732046'>https://github.com/w3c/csswg-drafts/issues/2201#issuecomment-358732046</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/2201#issuecomment-360953404'>https://github.com/w3c/csswg-drafts/issues/2201#issuecomment-360953404</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/fbc730b862fbba890e9de96cd27ed10ff83ee4dd'>https://github.com/w3c/csswg-drafts/commit/fbc730b862fbba890e9de96cd27ed10ff83ee4dd</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/82a6bd4a81f9b8db4d5e7da4349d55e0dfc14dcf'>https://github.com/w3c/csswg-drafts/commit/82a6bd4a81f9b8db4d5e7da4349d55e0dfc14dcf</a></span>
<span class="a">Closed: Accepted</span>
<span class="a">Verified: <a href='https://github.com/w3c/csswg-drafts/issues/2201#issuecomment-363027795'>https://github.com/w3c/csswg-drafts/issues/2201#issuecomment-363027795</a></span>
<span>Resolved: Editorial</span></pre>
<pre class=' a' id='issue-4'>
<span>Issue 4. <a href='#issue-4'>#</a></span>
<span>Summary: Specify minimum required track count</span>
<span>From: Toby Reif</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/2261'>https://github.com/w3c/csswg-drafts/issues/2261</a></span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/2261#issuecomment-365864327'>https://github.com/w3c/csswg-drafts/issues/2261#issuecomment-365864327</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/2261#issuecomment-363591498'>https://github.com/w3c/csswg-drafts/issues/2261#issuecomment-363591498</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/2261#issuecomment-367414140'>https://github.com/w3c/csswg-drafts/issues/2261#issuecomment-367414140</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/83c601511485340ccd7b26b2ffd73dea2ff68d5d'>https://github.com/w3c/csswg-drafts/commit/83c601511485340ccd7b26b2ffd73dea2ff68d5d</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/fd4149e0acad0bc4446c04ada7b29e7ada07b4d4'>https://github.com/w3c/csswg-drafts/commit/fd4149e0acad0bc4446c04ada7b29e7ada07b4d4</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/0f072d8fc2a6acfbdb3cdef80613b4b84138df2d'>https://github.com/w3c/csswg-drafts/commit/0f072d8fc2a6acfbdb3cdef80613b4b84138df2d</a></span>
<span class="a">Closed: Accepted</span>
<span class="a">Verified: <a href='https://github.com/w3c/csswg-drafts/issues/2261#issuecomment-397250532'>https://github.com/w3c/csswg-drafts/issues/2261#issuecomment-397250532</a></span>
<span>Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2018Feb/0045.html'>https://lists.w3.org/Archives/Public/www-style/2018Feb/0045.html</a> <a href="https://www.w3.org/Mail/flatten/index?subject=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-style/2018Feb/0045.html"><abbr title="Thread">∈</abbr></a></span></pre>
<pre class=' a' id='issue-5'>
<span>Issue 5. <a href='#issue-5'>#</a></span>
<span>Summary: Clarify axis for AMS condition</span>
<span>From: Mats Palmgren</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/2283'>https://github.com/w3c/csswg-drafts/issues/2283</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/4b784426189a2979bf0b396a6ccf8c6b763004a8'>https://github.com/w3c/csswg-drafts/commit/4b784426189a2979bf0b396a6ccf8c6b763004a8</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/2283#issuecomment-363643213'>https://github.com/w3c/csswg-drafts/issues/2283#issuecomment-363643213</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Editorial</span></pre>
<pre class=' a' id='issue-6'>
<span>Issue 6. <a href='#issue-6'>#</a></span>
<span>Summary: ??????????</span>
<span>From: Manuel Rego Casasnovas</span>
<span>From: Mats Palmgren</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/2303'>https://github.com/w3c/csswg-drafts/issues/2303</a></span>
<span>Comment: <a href='https://lists.w3.org/Archives/Public/www-archive/2018Mar/0004.html'>https://lists.w3.org/Archives/Public/www-archive/2018Mar/0004.html</a> <a href="https://www.w3.org/Mail/flatten/index?subject=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-archive/2018Mar/0004.html"><abbr title="Thread">∈</abbr></a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/2303#issuecomment-465459842'>https://github.com/w3c/csswg-drafts/issues/2303#issuecomment-465459842</a></span>
<span class="a">Closed: Accepted</span>
<span>Notes: Follow-up in <a href='https://github.com/w3c/csswg-drafts/issues/3565'>https://github.com/w3c/csswg-drafts/issues/3565</a></span>
<span>Resolved: Editor Discretion</span></pre>
<pre class='open d' id='issue-7'>
<span>Issue 7. <a href='#issue-7'>#</a></span>
<span>Summary: Intrinsic Track Sizing Algo leaves slack with overlapping spans</span>
<span>From: Florian Rivoal</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/2356'>https://github.com/w3c/csswg-drafts/issues/2356</a></span>
<span class="d">Open: Deferred to next revision</span></pre>
<pre class=' a' id='issue-8'>
<span>Issue 8. <a href='#issue-8'>#</a></span>
<span>Summary: is auto -> behaves as auto</span>
<span>From: Mats Palmgren</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/2367'>https://github.com/w3c/csswg-drafts/issues/2367</a></span>
<span>Changes: <a href='https://github.com/fergald/csswg-drafts/commit/af7ffa4ba91dfa36dc8ce4fafc758a2ad453e647'>https://github.com/fergald/csswg-drafts/commit/af7ffa4ba91dfa36dc8ce4fafc758a2ad453e647</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Editorial</span></pre>
<pre class=' r' id='issue-9'>
<span>Issue 9. <a href='#issue-9'>#</a></span>
<span>Summary: Logical order exclusion for readers</span>
<span>From: Robert Utasi</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/2405'>https://github.com/w3c/csswg-drafts/issues/2405</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/2405#issuecomment-371528202'>https://github.com/w3c/csswg-drafts/issues/2405#issuecomment-371528202</a></span>
<span class="r">Closed: Rejected</span>
<span>Resolved: Many previous WG discussions resulting in current text</span></pre>
<pre class=' a' id='issue-10'>
<span>Issue 10. <a href='#issue-10'>#</a></span>
<span>Summary: Problem with intrinsic size of track + baseline alignment</span>
<span>From: Javier Fernandez</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/2409'>https://github.com/w3c/csswg-drafts/issues/2409</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/2409#issuecomment-376344027'>https://github.com/w3c/csswg-drafts/issues/2409#issuecomment-376344027</a></span>
<span class="oi">Closed: Invalid</span>
<span class="a">Verified: <a href='https://github.com/w3c/csswg-drafts/issues/2409#issuecomment-376453669'>https://github.com/w3c/csswg-drafts/issues/2409#issuecomment-376453669</a></span></pre>
<pre class=' a' id='issue-11'>
<span>Issue 11. <a href='#issue-11'>#</a></span>
<span>Summary: Disallow repeat() in resolved track listings</span>
<span>From: Mats Palmgren</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/2427'>https://github.com/w3c/csswg-drafts/issues/2427</a></span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/2427#issuecomment-377357237'>https://github.com/w3c/csswg-drafts/issues/2427#issuecomment-377357237</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/2427#issuecomment-378781275'>https://github.com/w3c/csswg-drafts/issues/2427#issuecomment-378781275</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/9e884b552d2f6b5f6fca0f5ca515e56fe171eb9f'>https://github.com/w3c/csswg-drafts/commit/9e884b552d2f6b5f6fca0f5ca515e56fe171eb9f</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2018Apr/0005.html'>https://lists.w3.org/Archives/Public/www-style/2018Apr/0005.html</a> <a href="https://www.w3.org/Mail/flatten/index?subject=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-style/2018Apr/0005.html"><abbr title="Thread">∈</abbr></a></span></pre>
<pre class=' a' id='issue-12'>
<span>Issue 12. <a href='#issue-12'>#</a></span>
<span>Summary: 'justify-content' poorly integrated into grid sizing algo</span>
<span>From: Mats Palmgren</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/2557'>https://github.com/w3c/csswg-drafts/issues/2557</a></span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/2557#issuecomment-385571268'>https://github.com/w3c/csswg-drafts/issues/2557#issuecomment-385571268</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/2557#issuecomment-396450274'>https://github.com/w3c/csswg-drafts/issues/2557#issuecomment-396450274</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2018May/0049.html'>https://lists.w3.org/Archives/Public/www-style/2018May/0049.html</a> <a href="https://www.w3.org/Mail/flatten/index?subject=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-style/2018May/0049.html"><abbr title="Thread">∈</abbr></a></span></pre>
<pre class=' a' id='issue-13'>
<span>Issue 13. <a href='#issue-13'>#</a></span>
<span>Summary: Add note to explain flex values < 1</span>
<span>From: fantasai</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/2617'>https://github.com/w3c/csswg-drafts/issues/2617</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/cfdc4a228acbabd1c4a7bda9ea467ae858396301'>https://github.com/w3c/csswg-drafts/commit/cfdc4a228acbabd1c4a7bda9ea467ae858396301</a></span>
<span class="a">Closed: Accepted</span>
<span class="a">Verified: Reporter is editor</span>
<span>Resolved: Editorial</span></pre>
<pre class=' a' id='issue-14'>
<span>Issue 14. <a href='#issue-14'>#</a></span>
<span>Summary: Auto layouts inconsistently implemented</span>
<span>From: Tab Aktins</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/2633'>https://github.com/w3c/csswg-drafts/issues/2633</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/2633#issuecomment-385524710'>https://github.com/w3c/csswg-drafts/issues/2633#issuecomment-385524710</a></span>
<span class="oi">Closed: Invalid</span>
<span class="a">Verified: <a href='https://github.com/w3c/csswg-drafts/issues/2633#issuecomment-385528103'>https://github.com/w3c/csswg-drafts/issues/2633#issuecomment-385528103</a></span></pre>
<pre class=' a' id='issue-15'>
<span>Issue 15. <a href='#issue-15'>#</a></span>
<span>Summary: Audit spec to make sure we floor at zero where needed</span>
<span>From: fantasai</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/2655'>https://github.com/w3c/csswg-drafts/issues/2655</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/75c72c5a919a5b7a1bec00a51e5e09e255d20688'>https://github.com/w3c/csswg-drafts/commit/75c72c5a919a5b7a1bec00a51e5e09e255d20688</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/cc3aad3342aa50eb77ee300ffbc87e0ab07f820d'>https://github.com/w3c/csswg-drafts/commit/cc3aad3342aa50eb77ee300ffbc87e0ab07f820d</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/652146011aa8ea4562dd6dee285e58bf1ba4182e'>https://github.com/w3c/csswg-drafts/commit/652146011aa8ea4562dd6dee285e58bf1ba4182e</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Bugfix</span></pre>
<pre class=' a' id='issue-16a'>
<span>Issue 16a. <a href='#issue-16a'>#</a></span>
<span>Summary: Computing min-content heights of percentage-sized items</span>
<span>From: François Remy</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/2674'>https://github.com/w3c/csswg-drafts/issues/2674</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/2674#issuecomment-389943401'>https://github.com/w3c/csswg-drafts/issues/2674#issuecomment-389943401</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/2674#issuecomment-390366891'>https://github.com/w3c/csswg-drafts/issues/2674#issuecomment-390366891</a></span>
<span class="a">Closed: Retracted</span>
<span class="a">Verified: <a href='https://github.com/w3c/csswg-drafts/issues/2674#issuecomment-390376924'>https://github.com/w3c/csswg-drafts/issues/2674#issuecomment-390376924</a></span></pre>
<pre class=' a' id='issue-16b'>
<span>Issue 16b. <a href='#issue-16b'>#</a></span>
<span>Summary: Errors in rules for contributions of items with percentage sizing</span>
<span>From: Mats Palmgren</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/2674#issuecomment-390438322'>https://github.com/w3c/csswg-drafts/issues/2674#issuecomment-390438322</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/2674#issuecomment-465490328'>https://github.com/w3c/csswg-drafts/issues/2674#issuecomment-465490328</a></span>
<span class="a">Closed: Accepted </span>
<span>Resolved: Editorial + <a href='https://lists.w3.org/Archives/Public/www-style/2019Mar/0003.html'>https://lists.w3.org/Archives/Public/www-style/2019Mar/0003.html</a> <a href="https://www.w3.org/Mail/flatten/index?subject=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-style/2019Mar/0003.html"><abbr title="Thread">∈</abbr></a></span></pre>
<pre class=' oi' id='issue-17'>
<span>Issue 17. <a href='#issue-17'>#</a></span>
<span>Summary: <auto-track-list> syntax</span>
<span>From: Roman Dvornov</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/2676'>https://github.com/w3c/csswg-drafts/issues/2676</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/2676#issuecomment-388882264'>https://github.com/w3c/csswg-drafts/issues/2676#issuecomment-388882264</a></span>
<span class="oi">Closed: Invalid</span></pre>
<pre class=' r' id='issue-18'>
<span>Issue 18. <a href='#issue-18'>#</a></span>
<span>Summary: Make getComputedStyle() of grid position properties return used values</span>
<span>From: MarkUK</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/2681'>https://github.com/w3c/csswg-drafts/issues/2681</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/2681#issuecomment-446666091'>https://github.com/w3c/csswg-drafts/issues/2681#issuecomment-446666091</a></span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/2681#issuecomment-446784018'>https://github.com/w3c/csswg-drafts/issues/2681#issuecomment-446784018</a></span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/2681#issuecomment-447638781'>https://github.com/w3c/csswg-drafts/issues/2681#issuecomment-447638781</a></span>
<span class="r">Closed: Rejected</span>
<span>Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2018Dec/0019.html'>https://lists.w3.org/Archives/Public/www-style/2018Dec/0019.html</a> <a href="https://www.w3.org/Mail/flatten/index?subject=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-style/2018Dec/0019.html"><abbr title="Thread">∈</abbr></a></span></pre>
<pre class=' a' id='issue-19'>
<span>Issue 19. <a href='#issue-19'>#</a></span>
<span>Summary: Consider align-content for row height estimation</span>
<span>From: Mats Palmgren</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/2697'>https://github.com/w3c/csswg-drafts/issues/2697</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/2697#issuecomment-396443928'>https://github.com/w3c/csswg-drafts/issues/2697#issuecomment-396443928</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/277817b114e3bee1abb9d720bb559dc557928ff5'>https://github.com/w3c/csswg-drafts/commit/277817b114e3bee1abb9d720bb559dc557928ff5</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2018May/0049.html'>https://lists.w3.org/Archives/Public/www-style/2018May/0049.html</a> <a href="https://www.w3.org/Mail/flatten/index?subject=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-style/2018May/0049.html"><abbr title="Thread">∈</abbr></a></span></pre>
<pre class=' a' id='issue-20'>
<span>Issue 20. <a href='#issue-20'>#</a></span>
<span>Summary: Grid line ident 'auto'?</span>
<span>From: Eric Willigers</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/2856'>https://github.com/w3c/csswg-drafts/issues/2856</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/2856#issuecomment-401713517'>https://github.com/w3c/csswg-drafts/issues/2856#issuecomment-401713517</a></span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/2856#issuecomment-407577100'>https://github.com/w3c/csswg-drafts/issues/2856#issuecomment-407577100</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/pull/3002'>https://github.com/w3c/csswg-drafts/pull/3002</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2018Aug/0008.html'>https://lists.w3.org/Archives/Public/www-style/2018Aug/0008.html</a> <a href="https://www.w3.org/Mail/flatten/index?subject=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-style/2018Aug/0008.html"><abbr title="Thread">∈</abbr></a></span></pre>
<pre class='open d' id='issue-21'>
<span>Issue 21. <a href='#issue-21'>#</a></span>
<span>Summary: min-content track sizing should be tighter than auto</span>
<span>From: Tab Atkins</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/2873'>https://github.com/w3c/csswg-drafts/issues/2873</a></span>
<span class="d">Open: Deferred to next revision</span></pre>
<pre class='open d' id='issue-22'>
<span>Issue 22. <a href='#issue-22'>#</a></span>
<span>Summary: Clarity in sizing dependencies across CSS</span>
<span>From: David Baron</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/2890'>https://github.com/w3c/csswg-drafts/issues/2890</a></span>
<span class="d">Open: Deferred / OutOfScope</span></pre>
<pre class=' a' id='issue-23'>
<span>Issue 23. <a href='#issue-23'>#</a></span>
<span>Summary: Interaction of overflow and baseline on flex/grid containers</span>
<span>From: Daniel Holbert</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/2902'>https://github.com/w3c/csswg-drafts/issues/2902</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/2902#issuecomment-407576395'>https://github.com/w3c/csswg-drafts/issues/2902#issuecomment-407576395</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/566e3483a8441c49b026b798ba9f58a32464efca'>https://github.com/w3c/csswg-drafts/commit/566e3483a8441c49b026b798ba9f58a32464efca</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Editor discretion</span>
<span class="a">Verified: <a href='https://github.com/w3c/csswg-drafts/issues/2902#issuecomment-414840228'>https://github.com/w3c/csswg-drafts/issues/2902#issuecomment-414840228</a></span></pre>
<pre class=' a' id='issue-24'>
<span>Issue 24. <a href='#issue-24'>#</a></span>
<span>Summary: getComputedStyle() for abspos left</span>
<span>From: François Remy</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/2913'>https://github.com/w3c/csswg-drafts/issues/2913</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/2913#issuecomment-405333130'>https://github.com/w3c/csswg-drafts/issues/2913#issuecomment-405333130</a></span>
<span class="oi">Closed: Invalid</span>
<span class="a">Verified: <a href='https://github.com/w3c/csswg-drafts/issues/2913#issuecomment-407887157'>https://github.com/w3c/csswg-drafts/issues/2913#issuecomment-407887157</a></span></pre>
<pre class=' r' id='issue-25'>
<span>Issue 25. <a href='#issue-25'>#</a></span>
<span>Summary: naming convention of start/end</span>
<span>From: Bob Hamblok</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/2957'>https://github.com/w3c/csswg-drafts/issues/2957</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/2957#issuecomment-408491685'>https://github.com/w3c/csswg-drafts/issues/2957#issuecomment-408491685</a></span>
<span class="r">Closed: Rejected</span>
<span>Resolved: Previous CSSWG resolutions</span></pre>
<pre class=' a' id='issue-26'>
<span>Issue 26. <a href='#issue-26'>#</a></span>
<span>Summary: static grid position should use content-box, not padding-box</span>
<span>From: fantasai</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3020'>https://github.com/w3c/csswg-drafts/issues/3020</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3020#issuecomment-415086888'>https://github.com/w3c/csswg-drafts/issues/3020#issuecomment-415086888</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2018Aug/0023.html'>https://lists.w3.org/Archives/Public/www-style/2018Aug/0023.html</a> <a href="https://www.w3.org/Mail/flatten/index?subject=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-style/2018Aug/0023.html"><abbr title="Thread">∈</abbr></a></span></pre>
<pre class=' a' id='issue-27'>
<span>Issue 27. <a href='#issue-27'>#</a></span>
<span>Summary: Do fr tracks fallback baseline alignment when container is content-sized?</span>
<span>From: Javier Fernandez</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3042'>https://github.com/w3c/csswg-drafts/issues/3042</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3042#issuecomment-417500953'>https://github.com/w3c/csswg-drafts/issues/3042#issuecomment-417500953</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3042#issuecomment-420017233'>https://github.com/w3c/csswg-drafts/issues/3042#issuecomment-420017233</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2019Feb/0003.html'>https://lists.w3.org/Archives/Public/www-style/2019Feb/0003.html</a> <a href="https://www.w3.org/Mail/flatten/index?subject=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-style/2019Feb/0003.html"><abbr title="Thread">∈</abbr></a></span>
<span class="a">Verified: <a href='https://github.com/w3c/csswg-drafts/issues/3042#issuecomment-490068495'>https://github.com/w3c/csswg-drafts/issues/3042#issuecomment-490068495</a></span></pre>
<pre class=' a' id='issue-28'>
<span>Issue 28. <a href='#issue-28'>#</a></span>
<span>Summary: Define content-sized track</span>
<span>From: Javier Fernandez</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3044'>https://github.com/w3c/csswg-drafts/issues/3044</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3044#issuecomment-417502081'>https://github.com/w3c/csswg-drafts/issues/3044#issuecomment-417502081</a></span>
<span class="oi">Closed: Invalid</span>
<span class="a">Verified: <a href='https://github.com/w3c/csswg-drafts/issues/3044#issuecomment-417600547'>https://github.com/w3c/csswg-drafts/issues/3044#issuecomment-417600547</a></span>
<span>Resolved: Editorial</span></pre>
<pre class=' a' id='issue-29'>
<span>Issue 29. <a href='#issue-29'>#</a></span>
<span>Summary: Cycling conditions for determining baseline fallbacks</span>
<span>From: Javier Fernanez</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3046'>https://github.com/w3c/csswg-drafts/issues/3046</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3046#issuecomment-420023850'>https://github.com/w3c/csswg-drafts/issues/3046#issuecomment-420023850</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3046#issuecomment-420027443'>https://github.com/w3c/csswg-drafts/issues/3046#issuecomment-420027443</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/b29122f7f58c9668779671e95838ba321c3fd65a'>https://github.com/w3c/csswg-drafts/commit/b29122f7f58c9668779671e95838ba321c3fd65a</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3046#issuecomment-428005574'>https://github.com/w3c/csswg-drafts/issues/3046#issuecomment-428005574</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Editor Discretion</span>
<span class="a">Verified: <a href='https://github.com/w3c/csswg-drafts/issues/3046#issuecomment-446189954'>https://github.com/w3c/csswg-drafts/issues/3046#issuecomment-446189954</a></span></pre>
<pre class=' a' id='issue-30'>
<span>Issue 30. <a href='#issue-30'>#</a></span>
<span>Summary: Define computed value of track listings</span>
<span>From: fantasai</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3154'>https://github.com/w3c/csswg-drafts/issues/3154</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/63a1d65afa5997a56b210c1cbddccdb2603ecec9'>https://github.com/w3c/csswg-drafts/commit/63a1d65afa5997a56b210c1cbddccdb2603ecec9</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2018Oct/0010.html'>https://lists.w3.org/Archives/Public/www-style/2018Oct/0010.html</a> <a href="https://www.w3.org/Mail/flatten/index?subject=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-style/2018Oct/0010.html"><abbr title="Thread">∈</abbr></a></span>
<span class="a">Verified: reporter is editor</span></pre>
<pre class=' a' id='issue-31'>
<span>Issue 31. <a href='#issue-31'>#</a></span>
<span>Summary: Can content-aligned and self-aligned items baseline-align together?</span>
<span>From: fantasai</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3200'>https://github.com/w3c/csswg-drafts/issues/3200</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3200#issuecomment-430675243'>https://github.com/w3c/csswg-drafts/issues/3200#issuecomment-430675243</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/9fac83ccbeb2dfbbdfebc891e2e8e1f0e364d878'>https://github.com/w3c/csswg-drafts/commit/9fac83ccbeb2dfbbdfebc891e2e8e1f0e364d878</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/52f193c852b19616019df8f30d67cf2d67146a8a'>https://github.com/w3c/csswg-drafts/commit/52f193c852b19616019df8f30d67cf2d67146a8a</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2018Oct/0010.html'>https://lists.w3.org/Archives/Public/www-style/2018Oct/0010.html</a> <a href="https://www.w3.org/Mail/flatten/index?subject=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-style/2018Oct/0010.html"><abbr title="Thread">∈</abbr></a></span></pre>
<pre class=' a' id='issue-32'>
<span>Issue 32. <a href='#issue-32'>#</a></span>
<span>Summary: Interpolating track listings</span>
<span>From: fantasai</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3201'>https://github.com/w3c/csswg-drafts/issues/3201</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3201#issuecomment-428017363'>https://github.com/w3c/csswg-drafts/issues/3201#issuecomment-428017363</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/63219ae02d2d64c35fd520d3e1e7d31f3f80385f'>https://github.com/w3c/csswg-drafts/commit/63219ae02d2d64c35fd520d3e1e7d31f3f80385f</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2018Dec/0019.html'>https://lists.w3.org/Archives/Public/www-style/2018Dec/0019.html</a> <a href="https://www.w3.org/Mail/flatten/index?subject=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-style/2018Dec/0019.html"><abbr title="Thread">∈</abbr></a></span></pre>
<pre class=' a' id='issue-33'>
<span>Issue 33. <a href='#issue-33'>#</a></span>
<span>Summary: Serializing computed grid template strings</span>
<span>From: Tab Atkins</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3261'>https://github.com/w3c/csswg-drafts/issues/3261</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3261#issuecomment-433725685'>https://github.com/w3c/csswg-drafts/issues/3261#issuecomment-433725685</a></span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3261#issuecomment-435698461'>https://github.com/w3c/csswg-drafts/issues/3261#issuecomment-435698461</a></span>
<span>Notes: Best behavior seems to be don't normalize specified, but 3/4 impls do.</span>
<span class="a">Closed: Accepted</span>
<span>Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2018Nov/0003.html'>https://lists.w3.org/Archives/Public/www-style/2018Nov/0003.html</a> <a href="https://www.w3.org/Mail/flatten/index?subject=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-style/2018Nov/0003.html"><abbr title="Thread">∈</abbr></a></span>
<span>Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2018Dec/0019.html'>https://lists.w3.org/Archives/Public/www-style/2018Dec/0019.html</a> <a href="https://www.w3.org/Mail/flatten/index?subject=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-style/2018Dec/0019.html"><abbr title="Thread">∈</abbr></a></span></pre>
<pre class=' a' id='issue-34'>
<span>Issue 34. <a href='#issue-34'>#</a></span>
<span>Summary: Rename min-size contribution</span>
<span>From: Tab Atkins</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3277'>https://github.com/w3c/csswg-drafts/issues/3277</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3277#issuecomment-446021037'>https://github.com/w3c/csswg-drafts/issues/3277#issuecomment-446021037</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/be2c57b3fe5a508008ad4e42d3253463aa851ea6'>https://github.com/w3c/csswg-drafts/commit/be2c57b3fe5a508008ad4e42d3253463aa851ea6</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Editorial</span></pre>
<pre class=' a' id='issue-35'>
<span>Issue 35. <a href='#issue-35'>#</a></span>
<span>Summary: Errors in example 4</span>
<span>From: Gunyon</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3410'>https://github.com/w3c/csswg-drafts/issues/3410</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3410#issuecomment-446015138'>https://github.com/w3c/csswg-drafts/issues/3410#issuecomment-446015138</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/09f6107883f2e8a292dc0a2855af8af2291612d5'>https://github.com/w3c/csswg-drafts/commit/09f6107883f2e8a292dc0a2855af8af2291612d5</a></span>
<span class="a">Closed: Accepted</span>
<span class="a">Verified: <a href='https://github.com/w3c/csswg-drafts/issues/3410#issuecomment-446116397'>https://github.com/w3c/csswg-drafts/issues/3410#issuecomment-446116397</a></span>
<span>Resolved: Editorial</span></pre>
<pre class='open d' id='issue-36'>
<span>Issue 36. <a href='#issue-36'>#</a></span>
<span>Summary: Clarify percentage sizing vs intrinsic sizing in grid algo</span>
<span>From: Manuel Rego Casasnovas</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3418'>https://github.com/w3c/csswg-drafts/issues/3418</a></span>
<span class="d">Open: Deferred to next revision</span></pre>
<pre class=' a' id='issue-37'>
<span>Issue 37. <a href='#issue-37'>#</a></span>
<span>Summary: Non-existent line names in abspos grid positions</span>
<span>From: Manuel Rego Casasnovas</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3445'>https://github.com/w3c/csswg-drafts/issues/3445</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3445#issuecomment-448031047'>https://github.com/w3c/csswg-drafts/issues/3445#issuecomment-448031047</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/511bb63f5f2e5757ff2cd093690c9a9c37a0bc53'>https://github.com/w3c/csswg-drafts/commit/511bb63f5f2e5757ff2cd093690c9a9c37a0bc53</a></span>
<span class="a">Closed: Accepted</span>
<span class="a">Verified: <a href='https://github.com/w3c/csswg-drafts/issues/3445#issuecomment-448176463'>https://github.com/w3c/csswg-drafts/issues/3445#issuecomment-448176463</a></span>
<span>Resolved: Editorial</span></pre>
<pre class=' oi' id='issue-38'>
<span>Issue 38. <a href='#issue-38'>#</a></span>
<span>Summary: Serializing computed span + <custom-ident></span>
<span>From: Eric Willigers</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3448'>https://github.com/w3c/csswg-drafts/issues/3448</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3448#issuecomment-447997389'>https://github.com/w3c/csswg-drafts/issues/3448#issuecomment-447997389</a></span>
<span class="oi">Closed: Invalid</span></pre>
<pre class=' a' id='issue-39'>
<span>Issue 39. <a href='#issue-39'>#</a></span>
<span>Summary: grid-area property definition should list longhands</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3492'>https://github.com/w3c/csswg-drafts/issues/3492</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/5bdd09ab3bdfc6371661561af368f02b98b797df'>https://github.com/w3c/csswg-drafts/commit/5bdd09ab3bdfc6371661561af368f02b98b797df</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Editorial</span></pre>
<pre class=' a' id='issue-40'>
<span>Issue 40. <a href='#issue-40'>#</a></span>
<span>Summary: Clarify CCW</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3493'>https://github.com/w3c/csswg-drafts/issues/3493</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/1f74bc38bb28f52570ed3b05a26f2578c9e41414'>https://github.com/w3c/csswg-drafts/commit/1f74bc38bb28f52570ed3b05a26f2578c9e41414</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Editorial</span></pre>
<pre class=' a' id='issue-41'>
<span>Issue 41. <a href='#issue-41'>#</a></span>
<span>Summary: Interpolation of repeat()</span>
<span>From: BorisChiou</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3503'>https://github.com/w3c/csswg-drafts/issues/3503</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/2e57e1ebf31677ce7d7b70ad8012455c455490ae'>https://github.com/w3c/csswg-drafts/commit/2e57e1ebf31677ce7d7b70ad8012455c455490ae</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3503#issuecomment-456901487'>https://github.com/w3c/csswg-drafts/issues/3503#issuecomment-456901487</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2019Jan/0010.html'>https://lists.w3.org/Archives/Public/www-style/2019Jan/0010.html</a> <a href="https://www.w3.org/Mail/flatten/index?subject=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-style/2019Jan/0010.html"><abbr title="Thread">∈</abbr></a></span></pre>
<pre class='open d' id='issue-42'>
<span>Issue 42. <a href='#issue-42'>#</a></span>
<span>Summary: minmax(auto, min-content) under max-content constraint unintuitive</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3565'>https://github.com/w3c/csswg-drafts/issues/3565</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3565#issuecomment-458724703'>https://github.com/w3c/csswg-drafts/issues/3565#issuecomment-458724703</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/a3091ab46f393c5b50a5a9dcce558214041ea8d1'>https://github.com/w3c/csswg-drafts/commit/a3091ab46f393c5b50a5a9dcce558214041ea8d1</a></span>
<span class="d">Open: Deferred to next revision</span>
<span>Resolved: =WG= Review.</span></pre>
<pre class=' a' id='issue-43'>
<span>Issue 43. <a href='#issue-43'>#</a></span>
<span>Summary: Statement about min overriding max</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3567'>https://github.com/w3c/csswg-drafts/issues/3567</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3567#issuecomment-458755401'>https://github.com/w3c/csswg-drafts/issues/3567#issuecomment-458755401</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/ac95c6f9b43e7f0c6a376bb0ddd6df3635138936'>https://github.com/w3c/csswg-drafts/commit/ac95c6f9b43e7f0c6a376bb0ddd6df3635138936</a></span>
<span class="a">Closed: Accepted</span>
<span class="a">Verified: <a href='https://github.com/w3c/csswg-drafts/issues/3567#issuecomment-458758329'>https://github.com/w3c/csswg-drafts/issues/3567#issuecomment-458758329</a></span>
<span>Resolved: Editorial</span></pre>
<pre class=' a' id='issue-44'>
<span>Issue 44. <a href='#issue-44'>#</a></span>
<span>Summary: Reference to flexible min track sizing functions, which don't exist</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3568'>https://github.com/w3c/csswg-drafts/issues/3568</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3568#issuecomment-458746482'>https://github.com/w3c/csswg-drafts/issues/3568#issuecomment-458746482</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Bugfix</span></pre>
<pre class=' a' id='issue-45'>
<span>Issue 45. <a href='#issue-45'>#</a></span>
<span>Summary: Definition of fit-content() is confusing</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3569'>https://github.com/w3c/csswg-drafts/issues/3569</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3569#issuecomment-458758443'>https://github.com/w3c/csswg-drafts/issues/3569#issuecomment-458758443</a></span>
<span class="a">Closed: Accepted</span>
<span class="a">Verified: <a href='https://github.com/w3c/csswg-drafts/issues/3569#issuecomment-458759330'>https://github.com/w3c/csswg-drafts/issues/3569#issuecomment-458759330</a></span>
<span>Resolved: Editorial</span></pre>
<pre class=' a' id='issue-46'>
<span>Issue 46. <a href='#issue-46'>#</a></span>
<span>Summary: auto minimums under min/max-content constraint aren't floored at zero</span>
<span>From: Oriol Burfau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3570'>https://github.com/w3c/csswg-drafts/issues/3570</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3570#issuecomment-458756448'>https://github.com/w3c/csswg-drafts/issues/3570#issuecomment-458756448</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Bugfix</span></pre>
<pre class=' a' id='issue-47'>
<span>Issue 47. <a href='#issue-47'>#</a></span>
<span>Summary: Improve description of auto tracks</span>
<span>From: fantasai</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3571'>https://github.com/w3c/csswg-drafts/issues/3571</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/17c9ad19127e2bbe9c9c4a03019e260d9b7bfa09'>https://github.com/w3c/csswg-drafts/commit/17c9ad19127e2bbe9c9c4a03019e260d9b7bfa09</a></span>
<span class="a">Closed: Accepted</span>
<span class="a">Verified: <a href='https://github.com/w3c/csswg-drafts/issues/3571#issuecomment-458782759'>https://github.com/w3c/csswg-drafts/issues/3571#issuecomment-458782759</a></span>
<span>Resolved: Editorial</span></pre>
<pre class=' a' id='issue-48'>
<span>Issue 48. <a href='#issue-48'>#</a></span>
<span>Summary:</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3573'>https://github.com/w3c/csswg-drafts/issues/3573</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3573#issuecomment-459548869'>https://github.com/w3c/csswg-drafts/issues/3573#issuecomment-459548869</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Bugfix</span></pre>
<pre class=' a' id='issue-49'>
<span>Issue 49. <a href='#issue-49'>#</a></span>
<span>Summary: auto min size definition accidentally references min track sizes</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3581'>https://github.com/w3c/csswg-drafts/issues/3581</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3581#issuecomment-459548257'>https://github.com/w3c/csswg-drafts/issues/3581#issuecomment-459548257</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/1d563d1ceb75b1ccaed284652166016a802c32ad'>https://github.com/w3c/csswg-drafts/commit/1d563d1ceb75b1ccaed284652166016a802c32ad</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Bugfix</span></pre>
<pre class=' a' id='issue-50'>
<span>Issue 50. <a href='#issue-50'>#</a></span>
<span>Summary: Define intrinsic size contribution of fit-content(indefinite %)</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3585'>https://github.com/w3c/csswg-drafts/issues/3585</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3585#issuecomment-461321936'>https://github.com/w3c/csswg-drafts/issues/3585#issuecomment-461321936</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/d110d63e244b4e04640447c9e26ae993da7e8091'>https://github.com/w3c/csswg-drafts/commit/d110d63e244b4e04640447c9e26ae993da7e8091</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Editorial</span></pre>
<pre class=' a' id='issue-51'>
<span>Issue 51. <a href='#issue-51'>#</a></span>
<span>Summary: Clarify percentages behaving as auto</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3612'>https://github.com/w3c/csswg-drafts/issues/3612</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3612#issuecomment-499749538'>https://github.com/w3c/csswg-drafts/issues/3612#issuecomment-499749538</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Editor Discretion</span></pre>
<pre class=' a' id='issue-52'>
<span>Issue 52. <a href='#issue-52'>#</a></span>
<span>Summary: Wording sloppy wrt base size vs min track sizing function</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3614'>https://github.com/w3c/csswg-drafts/issues/3614</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/93f0feba42b29da59029891ca4cc4a2e8ddf95d9'>https://github.com/w3c/csswg-drafts/commit/93f0feba42b29da59029891ca4cc4a2e8ddf95d9</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Editorial</span></pre>
<pre class=' a' id='issue-53'>
<span>Issue 53. <a href='#issue-53'>#</a></span>
<span>Summary: "Distribute space to base sizes up to growth limits" unclear</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3615'>https://github.com/w3c/csswg-drafts/issues/3615</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3615#issuecomment-461317375'>https://github.com/w3c/csswg-drafts/issues/3615#issuecomment-461317375</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/d5b1ee8ecde26e7a55e3b94774612007079e5758'>https://github.com/w3c/csswg-drafts/commit/d5b1ee8ecde26e7a55e3b94774612007079e5758</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/9fbbae380169505a2f0ebe090ee2a321e4b73633'>https://github.com/w3c/csswg-drafts/commit/9fbbae380169505a2f0ebe090ee2a321e4b73633</a></span>
<span class="a">Closed: Accepted</span></pre>
<pre class=' a' id='issue-54'>
<span>Issue 54. <a href='#issue-54'>#</a></span>
<span>Summary: Sizing algorithm doesn't define span > 2</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3617'>https://github.com/w3c/csswg-drafts/issues/3617</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3617#issuecomment-460856916'>https://github.com/w3c/csswg-drafts/issues/3617#issuecomment-460856916</a></span>
<span class="oi">Closed: Invalid</span>
<span class="a">Verified: <a href='https://github.com/w3c/csswg-drafts/issues/3617#issuecomment-460859694'>https://github.com/w3c/csswg-drafts/issues/3617#issuecomment-460859694</a></span></pre>
<pre class=' a' id='issue-55'>
<span>Issue 55. <a href='#issue-55'>#</a></span>
<span>Summary: Sizing span >= 2 inconsistent with span 1</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3616#issuecomment-461330465'>https://github.com/w3c/csswg-drafts/issues/3616#issuecomment-461330465</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3616#issuecomment-461330465'>https://github.com/w3c/csswg-drafts/issues/3616#issuecomment-461330465</a></span>
<span class="oi">Closed: Invalid</span>
<span class="a">Verified: <a href='https://github.com/w3c/csswg-drafts/issues/3616#issuecomment-461396941'>https://github.com/w3c/csswg-drafts/issues/3616#issuecomment-461396941</a></span></pre>
<pre class=' a' id='issue-56'>
<span>Issue 56. <a href='#issue-56'>#</a></span>
<span>Summary: Add note saying that span >= 2 is consistent with span 1</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3616#issuecomment-461396941'>https://github.com/w3c/csswg-drafts/issues/3616#issuecomment-461396941</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3616#issuecomment-465493193'>https://github.com/w3c/csswg-drafts/issues/3616#issuecomment-465493193</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/c223e32244e7aa6b0fb742f62ba7ea48fdfa7717'>https://github.com/w3c/csswg-drafts/commit/c223e32244e7aa6b0fb742f62ba7ea48fdfa7717</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Editorial</span>
<span class="a">Verified: <a href='https://github.com/w3c/csswg-drafts/issues/3616#issuecomment-465542647'>https://github.com/w3c/csswg-drafts/issues/3616#issuecomment-465542647</a></span></pre>
<pre class=' a' id='issue-57'>
<span>Issue 57. <a href='#issue-57'>#</a></span>
<span>Summary: Add note that minimum contribution <= min-content contribution</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3616#issuecomment-461396941'>https://github.com/w3c/csswg-drafts/issues/3616#issuecomment-461396941</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/7676ea26bcedaa69835fe43b92361523b3ef5890'>https://github.com/w3c/csswg-drafts/commit/7676ea26bcedaa69835fe43b92361523b3ef5890</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Editorial</span></pre>
<pre class=' a' id='issue-58'>
<span>Issue 58. <a href='#issue-58'>#</a></span>
<span>Summary: Tweak wording referencing base sizes.</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3614'>https://github.com/w3c/csswg-drafts/issues/3614</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/93f0feba42b29da59029891ca4cc4a2e8ddf95d9'>https://github.com/w3c/csswg-drafts/commit/93f0feba42b29da59029891ca4cc4a2e8ddf95d9</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Editorial</span></pre>
<pre class=' a' id='issue-59'>
<span>Issue 59. <a href='#issue-59'>#</a></span>
<span>Summary: Clarify references to item-incurred increase</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3615'>https://github.com/w3c/csswg-drafts/issues/3615</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/d5b1ee8ecde26e7a55e3b94774612007079e5758'>https://github.com/w3c/csswg-drafts/commit/d5b1ee8ecde26e7a55e3b94774612007079e5758</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/9fbbae380169505a2f0ebe090ee2a321e4b73633'>https://github.com/w3c/csswg-drafts/commit/9fbbae380169505a2f0ebe090ee2a321e4b73633</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Editorial</span>
<span class="a">Verified: <a href='https://github.com/w3c/csswg-drafts/issues/3615#issuecomment-461317375'>https://github.com/w3c/csswg-drafts/issues/3615#issuecomment-461317375</a></span></pre>
<pre class=' a' id='issue-60'>
<span>Issue 60. <a href='#issue-60'>#</a></span>
<span>Summary: Editorial structure of extra space distribution</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3616'>https://github.com/w3c/csswg-drafts/issues/3616</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3616#issuecomment-461330465'>https://github.com/w3c/csswg-drafts/issues/3616#issuecomment-461330465</a></span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3616#issuecomment-461396941'>https://github.com/w3c/csswg-drafts/issues/3616#issuecomment-461396941</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/issues/3616#issuecomment-461396941'>https://github.com/w3c/csswg-drafts/issues/3616#issuecomment-461396941</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/c223e32244e7aa6b0fb742f62ba7ea48fdfa7717'>https://github.com/w3c/csswg-drafts/commit/c223e32244e7aa6b0fb742f62ba7ea48fdfa7717</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Editorial</span>
<span class="a">Verified: <a href='https://github.com/w3c/csswg-drafts/issues/3616#issuecomment-465542647'>https://github.com/w3c/csswg-drafts/issues/3616#issuecomment-465542647</a></span></pre>
<pre class=' a' id='issue-61'>
<span>Issue 61. <a href='#issue-61'>#</a></span>
<span>Summary: Sizing algorithm missing case for span > 2</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3617'>https://github.com/w3c/csswg-drafts/issues/3617</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3617#issuecomment-460856916'>https://github.com/w3c/csswg-drafts/issues/3617#issuecomment-460856916</a></span>
<span class="oi">Closed: Invalid</span>
<span class="a">Verified: <a href='https://github.com/w3c/csswg-drafts/issues/3617#issuecomment-460859694'>https://github.com/w3c/csswg-drafts/issues/3617#issuecomment-460859694</a></span></pre>
<pre class=' a' id='issue-62'>
<span>Issue 62. <a href='#issue-62'>#</a></span>
<span>Summary: Minimums when mixing auto/min-content/max-content tracks</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3621'>https://github.com/w3c/csswg-drafts/issues/3621</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3621#issuecomment-499356530'>https://github.com/w3c/csswg-drafts/issues/3621#issuecomment-499356530</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/a6d8950c38e8bcadc28862fe70485c8d12911f8e'>https://github.com/w3c/csswg-drafts/commit/a6d8950c38e8bcadc28862fe70485c8d12911f8e</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/66d84cdf6f394c5fb10126182ec98afb8ca2de8a'>https://github.com/w3c/csswg-drafts/commit/66d84cdf6f394c5fb10126182ec98afb8ca2de8a</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Editorial</span>
<span class="a">Verified: <a href='https://github.com/w3c/csswg-drafts/issues/3621#issuecomment-550322171'>https://github.com/w3c/csswg-drafts/issues/3621#issuecomment-550322171</a></span></pre>
<pre class=' a' id='issue-63'>
<span>Issue 63. <a href='#issue-63'>#</a></span>
<span>Summary: Empty tracks should contribute to scrollable overflow</span>
<span>From: Charbel Nicolas</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3638'>https://github.com/w3c/csswg-drafts/issues/3638</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3638#issuecomment-484365512'>https://github.com/w3c/csswg-drafts/issues/3638#issuecomment-484365512</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2019Feb/0010.html'>https://lists.w3.org/Archives/Public/www-style/2019Feb/0010.html</a> <a href="https://www.w3.org/Mail/flatten/index?subject=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-style/2019Feb/0010.html"><abbr title="Thread">∈</abbr></a></span>
<span class="a">Verified: <a href='https://github.com/w3c/csswg-drafts/issues/3638#issuecomment-465687123'>https://github.com/w3c/csswg-drafts/issues/3638#issuecomment-465687123</a></span></pre>
<pre class=' a' id='issue-64'>
<span>Issue 64. <a href='#issue-64'>#</a></span>
<span>Summary: Regression in finding baseline when first row is empty</span>
<span>From: Mats Palmgren</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3645'>https://github.com/w3c/csswg-drafts/issues/3645</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3645#issuecomment-463055056'>https://github.com/w3c/csswg-drafts/issues/3645#issuecomment-463055056</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3645#issuecomment-472502461'>https://github.com/w3c/csswg-drafts/issues/3645#issuecomment-472502461</a></span>
<span>Changes: <a href='https://github.com/web-platform-tests/wpt/commit/feb0d3c72e50f84de1c6de5879dc866c3fd0d9d9'>https://github.com/web-platform-tests/wpt/commit/feb0d3c72e50f84de1c6de5879dc866c3fd0d9d9</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/a74f96f7e29be98ee2b73ecdfedc27b3a789a410'>https://github.com/w3c/csswg-drafts/commit/a74f96f7e29be98ee2b73ecdfedc27b3a789a410</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/e85a11caa3a94682e08ca6786c0c4f528926a3d8'>https://github.com/w3c/csswg-drafts/commit/e85a11caa3a94682e08ca6786c0c4f528926a3d8</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2019Mar/0003.html'>https://lists.w3.org/Archives/Public/www-style/2019Mar/0003.html</a> <a href="https://www.w3.org/Mail/flatten/index?subject=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-style/2019Mar/0003.html"><abbr title="Thread">∈</abbr></a></span></pre>
<pre class='open d' id='issue-65'>
<span>Issue 65. <a href='#issue-65'>#</a></span>
<span>Summary: Consider setting base sizes to growth limit under max-content constraint</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3646'>https://github.com/w3c/csswg-drafts/issues/3646</a></span>
<span class="d">Open: Deferred to next revision</span></pre>
<pre class='open d' id='issue-66'>
<span>Issue 66. <a href='#issue-66'>#</a></span>
<span>Summary: Distribute space to non-intrinsic tracks instead of breaking growth limits</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3648'>https://github.com/w3c/csswg-drafts/issues/3648</a></span>
<span class="d">Open: Deferred to next revision</span></pre>
<pre class=' a' id='issue-67'>
<span>Issue 67. <a href='#issue-67'>#</a></span>
<span>Summary: Define how child margin boxes contribute to scrollable overflow</span>
<span>From: Mats Palmgren</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3653'>https://github.com/w3c/csswg-drafts/issues/3653</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3653#issuecomment-484310009'>https://github.com/w3c/csswg-drafts/issues/3653#issuecomment-484310009</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/bc4f54d39258d951b93a842713d31e38844a1f35'>https://github.com/w3c/csswg-drafts/commit/bc4f54d39258d951b93a842713d31e38844a1f35</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2019May/0005.html'>https://lists.w3.org/Archives/Public/www-style/2019May/0005.html</a> <a href="https://www.w3.org/Mail/flatten/index?subject=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-style/2019May/0005.html"><abbr title="Thread">∈</abbr></a></span></pre>
<pre class=' a' id='issue-68'>
<span>Issue 68. <a href='#issue-68'>#</a></span>
<span>Summary: Is minimum contribution a type of intrinsic contribution?</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3660'>https://github.com/w3c/csswg-drafts/issues/3660</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3660#issuecomment-499347404'>https://github.com/w3c/csswg-drafts/issues/3660#issuecomment-499347404</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/f72db5052ed895e0fcb9ebe11e1e44611a34c9e4#diff-4d456d4295a1298fa18e7e73bdf982d2'>https://github.com/w3c/csswg-drafts/commit/f72db5052ed895e0fcb9ebe11e1e44611a34c9e4#diff-4d456d4295a1298fa18e7e73bdf982d2</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Editorial</span></pre>
<pre class=' a' id='issue-69'>
<span>Issue 69. <a href='#issue-69'>#</a></span>
<span>Summary: Include padding in scrollable overflow area</span>
<span>From: fantasai</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3665'>https://github.com/w3c/csswg-drafts/issues/3665</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3665#issuecomment-467955648'>https://github.com/w3c/csswg-drafts/issues/3665#issuecomment-467955648</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2019May/0009.html'>https://lists.w3.org/Archives/Public/www-style/2019May/0009.html</a> <a href="https://www.w3.org/Mail/flatten/index?subject=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-style/2019May/0009.html"><abbr title="Thread">∈</abbr></a></span></pre>
<pre class=' a' id='issue-70'>
<span>Issue 70. <a href='#issue-70'>#</a></span>
<span>Summary: Don't expand flexible tracks under a min-content constraint</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3683'>https://github.com/w3c/csswg-drafts/issues/3683</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3683#issuecomment-499345155'>https://github.com/w3c/csswg-drafts/issues/3683#issuecomment-499345155</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/d891281464dce8a6b33837100deacff9022e4101'>https://github.com/w3c/csswg-drafts/commit/d891281464dce8a6b33837100deacff9022e4101</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2019Jun/0003.html'>https://lists.w3.org/Archives/Public/www-style/2019Jun/0003.html</a> <a href="https://www.w3.org/Mail/flatten/index?subject=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-style/2019Jun/0003.html"><abbr title="Thread">∈</abbr></a></span></pre>
<pre class='open ' id='issue-71'>
<span>Issue 71. <a href='#issue-71'>#</a></span>
<span>Summary: min-content size of grid container in block axis differs from max-content</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3684'>https://github.com/w3c/csswg-drafts/issues/3684</a></span>
<span class="">Open: Blocked on css-sizing-3 issue <a href='https://github.com/w3c/csswg-drafts/issues/3973'>https://github.com/w3c/csswg-drafts/issues/3973</a></span></pre>
<pre class=' a' id='issue-72'>
<span>Issue 72. <a href='#issue-72'>#</a></span>
<span>Summary: Maximize Tracks distributes space to flex tracks but not by ratio</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3693'>https://github.com/w3c/csswg-drafts/issues/3693</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3693#issuecomment-499342924'>https://github.com/w3c/csswg-drafts/issues/3693#issuecomment-499342924</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2019Jun/0003.html'>https://lists.w3.org/Archives/Public/www-style/2019Jun/0003.html</a> <a href="https://www.w3.org/Mail/flatten/index?subject=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-style/2019Jun/0003.html"><abbr title="Thread">∈</abbr></a></span>
<span class="a">Verified: <a href='https://github.com/w3c/csswg-drafts/issues/3693'>https://github.com/w3c/csswg-drafts/issues/3693</a></span></pre>
<pre class=' a' id='issue-73'>
<span>Issue 73. <a href='#issue-73'>#</a></span>
<span>Summary: How to distribute space by ratio when sum is zero?</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3694'>https://github.com/w3c/csswg-drafts/issues/3694</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3694#issuecomment-499326875'>https://github.com/w3c/csswg-drafts/issues/3694#issuecomment-499326875</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/5a43ab7210d08c9a012a7697eb39a382f8133079'>https://github.com/w3c/csswg-drafts/commit/5a43ab7210d08c9a012a7697eb39a382f8133079</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2019Jun/0003.html'>https://lists.w3.org/Archives/Public/www-style/2019Jun/0003.html</a> <a href="https://www.w3.org/Mail/flatten/index?subject=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-style/2019Jun/0003.html"><abbr title="Thread">∈</abbr></a></span></pre>
<pre class=' a' id='issue-74'>
<span>Issue 74. <a href='#issue-74'>#</a></span>
<span>Summary: Automatic min sizes should not cause items to overflow fixed tracks</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3705'>https://github.com/w3c/csswg-drafts/issues/3705</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3705#issuecomment-499329698'>https://github.com/w3c/csswg-drafts/issues/3705#issuecomment-499329698</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/8b98983a37362c939a3e7d6abd345297fecd4967'>https://github.com/w3c/csswg-drafts/commit/8b98983a37362c939a3e7d6abd345297fecd4967</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/90511c68da5d25661d8aa3aabcf51486b9b5e541'>https://github.com/w3c/csswg-drafts/commit/90511c68da5d25661d8aa3aabcf51486b9b5e541</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2019Jul/0013.html'>https://lists.w3.org/Archives/Public/www-style/2019Jul/0013.html</a> <a href="https://www.w3.org/Mail/flatten/index?subject=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-style/2019Jul/0013.html"><abbr title="Thread">∈</abbr></a></span></pre>
<pre class=' a' id='issue-75'>
<span>Issue 75. <a href='#issue-75'>#</a></span>
<span>Summary: Simplify sentence</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3706'>https://github.com/w3c/csswg-drafts/issues/3706</a></span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3706#issuecomment-469896096'>https://github.com/w3c/csswg-drafts/issues/3706#issuecomment-469896096</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/201a41cd7199736d44422e76a44b6d99bca23bf0'>https://github.com/w3c/csswg-drafts/commit/201a41cd7199736d44422e76a44b6d99bca23bf0</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Editorial</span></pre>
<pre class=' a' id='issue-76'>
<span>Issue 76. <a href='#issue-76'>#</a></span>
<span>Summary: Broken anchor</span>
<span>From: Huijing Chen</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3883'>https://github.com/w3c/csswg-drafts/issues/3883</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/3883#issuecomment-493230420'>https://github.com/w3c/csswg-drafts/issues/3883#issuecomment-493230420</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/65ba881a95d5da281477ee22372101881865615d'>https://github.com/w3c/csswg-drafts/commit/65ba881a95d5da281477ee22372101881865615d</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Editorial</span></pre>
<pre class=' a' id='issue-77'>
<span>Issue 77. <a href='#issue-77'>#</a></span>
<span>Summary: Clarify intention of minimum contribution</span>
<span>From: fantasai</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/4016'>https://github.com/w3c/csswg-drafts/issues/4016</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/d5b753c962487bcc446926f7e6107234f8eef56b'>https://github.com/w3c/csswg-drafts/commit/d5b753c962487bcc446926f7e6107234f8eef56b</a></span>
<span class="">Closed: Accepted</span>
<span>Resolved: Editorial</span>
<span class="a">Verified: reporter is editor</span></pre>
<pre class=' a' id='issue-78'>
<span>Issue 78. <a href='#issue-78'>#</a></span>
<span>Summary: Floor max by min in auto-repeat with minmax() tracks</span>
<span>From: Manuel Rego Casasnovas</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/4043'>https://github.com/w3c/csswg-drafts/issues/4043</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/4043#issuecomment-548970291'>https://github.com/w3c/csswg-drafts/issues/4043#issuecomment-548970291</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/5622ca1e78786f3e87d48471a297ab988aaa82f3'>https://github.com/w3c/csswg-drafts/commit/5622ca1e78786f3e87d48471a297ab988aaa82f3</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2019Nov/0009.html'>https://lists.w3.org/Archives/Public/www-style/2019Nov/0009.html</a> <a href="https://www.w3.org/Mail/flatten/index?subject=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-style/2019Nov/0009.html"><abbr title="Thread">∈</abbr></a></span></pre>
<pre class=' a' id='issue-79'>
<span>Issue 79. <a href='#issue-79'>#</a></span>
<span>Summary: Clarify resolved value of track listing only special on grid container</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/4063'>https://github.com/w3c/csswg-drafts/issues/4063</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/24991f9dd3a0dd983705d1a6b38fcd919665ebab'>https://github.com/w3c/csswg-drafts/commit/24991f9dd3a0dd983705d1a6b38fcd919665ebab</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Bugfix</span></pre>
<pre class=' a' id='issue-80'>
<span>Issue 80. <a href='#issue-80'>#</a></span>
<span>Summary: Blockification should use computed value of element, not box</span>
<span>From: Emilio Cobos Álvarez</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/4065'>https://github.com/w3c/csswg-drafts/issues/4065</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/0db00e1870bcb74bd820f89beed168514d9a6ec5'>https://github.com/w3c/csswg-drafts/commit/0db00e1870bcb74bd820f89beed168514d9a6ec5</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/4065#issuecomment-548924024'>https://github.com/w3c/csswg-drafts/issues/4065#issuecomment-548924024</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2019Nov/0009.html'>https://lists.w3.org/Archives/Public/www-style/2019Nov/0009.html</a> <a href="https://www.w3.org/Mail/flatten/index?subject=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-style/2019Nov/0009.html"><abbr title="Thread">∈</abbr></a></span>
<span class="a">Verified: <a href='https://github.com/w3c/csswg-drafts/issues/4065#issuecomment-553319697'>https://github.com/w3c/csswg-drafts/issues/4065#issuecomment-553319697</a></span></pre>
<pre class=' a' id='issue-81'>
<span>Issue 81. <a href='#issue-81'>#</a></span>
<span>Summary: Serialization of grid-template-rows/columns</span>
<span>From: Eric Willigers</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/4173'>https://github.com/w3c/csswg-drafts/issues/4173</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/4173#issuecomment-533474227'>https://github.com/w3c/csswg-drafts/issues/4173#issuecomment-533474227</a></span>
<span class="a">Closed: Retracted</span>
<span class="a">Verified: <a href='https://github.com/w3c/csswg-drafts/issues/4173#event-2649645415'>https://github.com/w3c/csswg-drafts/issues/4173#event-2649645415</a></span></pre>
<pre class='open d' id='issue-82'>
<span>Issue 82. <a href='#issue-82'>#</a></span>
<span>Summary: Sizing aspect-ratio-only boxes to grid container</span>
<span>From: fantasai</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/4228'>https://github.com/w3c/csswg-drafts/issues/4228</a></span>
<span class="d">Open: Deferred to next revision</span></pre>
<pre class=' a' id='issue-82'>
<span>Issue 82. <a href='#issue-82'>#</a></span>
<span>Summary: Set flex track initial growth limit to infinity (instead of assuming)</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/4228'>https://github.com/w3c/csswg-drafts/issues/4228</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/41019d2c5da3b4e697dc2b5fb9bedd736d6d194e'>https://github.com/w3c/csswg-drafts/commit/41019d2c5da3b4e697dc2b5fb9bedd736d6d194e</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Editorial</span>
<span class="a">Verified: Merged reporter's own PR</span></pre>
<pre class=' a' id='issue-83'>
<span>Issue 83. <a href='#issue-83'>#</a></span>
<span>Summary: Bad formatting / markup error</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/4332'>https://github.com/w3c/csswg-drafts/issues/4332</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/dbe3f639dd940ba102df11cb1ea5e8bd8158846a'>https://github.com/w3c/csswg-drafts/commit/dbe3f639dd940ba102df11cb1ea5e8bd8158846a</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Editorial</span>
<span class="a">Verified: reporter is editor</span></pre>
<pre class=' a' id='issue-84'>
<span>Issue 84. <a href='#issue-84'>#</a></span>
<span>Summary: Spaces in grid-template-areas serialization</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/4335'>https://github.com/w3c/csswg-drafts/issues/4335</a></span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/4335#issuecomment-533091177'>https://github.com/w3c/csswg-drafts/issues/4335#issuecomment-533091177</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/4335#issuecomment-548962309'>https://github.com/w3c/csswg-drafts/issues/4335#issuecomment-548962309</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2019Nov/0007.html'>https://lists.w3.org/Archives/Public/www-style/2019Nov/0007.html</a> <a href="https://www.w3.org/Mail/flatten/index?subject=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-style/2019Nov/0007.html"><abbr title="Thread">∈</abbr></a></span>
<span class="a">Verified: participated in WG consensus</span></pre>
<pre class='open d' id='issue-85'>
<span>Issue 85. <a href='#issue-85'>#</a></span>
<span>Summary: Resolved values of grid-template-rows/columns don't round-trip</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/4475'>https://github.com/w3c/csswg-drafts/issues/4475</a></span>
<span class="d">Open: Deferred to next revision</span></pre>
<pre class=' a' id='issue-86'>
<span>Issue 86. <a href='#issue-86'>#</a></span>
<span>Summary: Invalid propdef syntax, unclear if repeat allows zero</span>
<span>From: fantasai</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/4479'>https://github.com/w3c/csswg-drafts/issues/4479</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/4479#issuecomment-548952782'>https://github.com/w3c/csswg-drafts/issues/4479#issuecomment-548952782</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/ccd94deea1eb5243842ff4e76382d5eb67e6e71c'>https://github.com/w3c/csswg-drafts/commit/ccd94deea1eb5243842ff4e76382d5eb67e6e71c</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Bugfix</span></pre>
<pre class='open d' id='issue-87'>
<span>Issue 87. <a href='#issue-87'>#</a></span>
<span>Summary: Repetitions against indefinite grid unclear</span>
<span>From: fantasai</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/4480'>https://github.com/w3c/csswg-drafts/issues/4480</a></span>
<span class="d">Open: Deferred to next revision</span></pre>
<pre class=' a' id='issue-88'>
<span>Issue 88. <a href='#issue-88'>#</a></span>
<span>Summary: Confusing reference to "flexible track"</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/4544'>https://github.com/w3c/csswg-drafts/issues/4544</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/faf173cf6654a14e51c0e8498db01a0496adbdb7'>https://github.com/w3c/csswg-drafts/commit/faf173cf6654a14e51c0e8498db01a0496adbdb7</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Editorial</span></pre>
<pre class='open d' id='issue-89'>
<span>Issue 89. <a href='#issue-89'>#</a></span>
<span>Summary: Clarify handling of fit-content() growth limits</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/4549'>https://github.com/w3c/csswg-drafts/issues/4549</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/4549#issuecomment-662718050'>https://github.com/w3c/csswg-drafts/issues/4549#issuecomment-662718050</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/64494c001f8a9da9bc0efd7bc760240b726f97a2'>https://github.com/w3c/csswg-drafts/commit/64494c001f8a9da9bc0efd7bc760240b726f97a2</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/4f4fde91831eb51820585aa4b1c29f8b4f4687c8'>https://github.com/w3c/csswg-drafts/commit/4f4fde91831eb51820585aa4b1c29f8b4f4687c8</a></span>
<span class="d">Open: Deferred to next revision</span></pre>
<pre class=' a' id='issue-90'>
<span>Issue 90. <a href='#issue-90'>#</a></span>
<span>Summary: Do grid items with no baseline participate in baseline alignment?</span>
<span>From: Mats Palmgren</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/4675'>https://github.com/w3c/csswg-drafts/issues/4675</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/4675#issuecomment-620742941'>https://github.com/w3c/csswg-drafts/issues/4675#issuecomment-620742941</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/3bd261f0b92c7087640b6249e8f865f0ba9ccb6d'>https://github.com/w3c/csswg-drafts/commit/3bd261f0b92c7087640b6249e8f865f0ba9ccb6d</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2020Mar/0013.html'>https://lists.w3.org/Archives/Public/www-style/2020Mar/0013.html</a> <a href="https://www.w3.org/Mail/flatten/index?subject=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-style/2020Mar/0013.html"><abbr title="Thread">∈</abbr></a></span></pre>
<pre class=' a' id='issue-91'>
<span>Issue 91. <a href='#issue-91'>#</a></span>
<span>Summary: Intrinsic contributions for items spanning flex tracks not Web-compatible</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/4783'>https://github.com/w3c/csswg-drafts/issues/4783</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/4783#issuecomment-587749012'>https://github.com/w3c/csswg-drafts/issues/4783#issuecomment-587749012</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: CSSWG 2020-07-27</span>
<span>Verified: <a href='https://github.com/w3c/csswg-drafts/issues/4783#issuecomment-667237434'>https://github.com/w3c/csswg-drafts/issues/4783#issuecomment-667237434</a></span></pre>
<pre class=' a' id='issue-92'>
<span>Issue 92. <a href='#issue-92'>#</a></span>
<span>Summary: Definition of fit-content() uses min() and max() backwards</span>
<span>From: Tab Atkins</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/4789'>https://github.com/w3c/csswg-drafts/issues/4789</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/de2577cce3bda75e2d207494a9cb27c2abfa9a28'>https://github.com/w3c/csswg-drafts/commit/de2577cce3bda75e2d207494a9cb27c2abfa9a28</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Bugfix</span>
<span class="a">Verified: Reporter is editor</span></pre>
<pre class=' a' id='issue-93'>
<span>Issue 93. <a href='#issue-93'>#</a></span>
<span>Summary: Spanning items not increased by min-content contributions</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/4790'>https://github.com/w3c/csswg-drafts/issues/4790</a></span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/5352'>https://github.com/w3c/csswg-drafts/issues/5352</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/4790#issuecomment-662727415'>https://github.com/w3c/csswg-drafts/issues/4790#issuecomment-662727415</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Bugfix + WG resolution 2020-07-27</span></pre>
<pre class='open d' id='issue-94'>
<span>Issue 94. <a href='#issue-94'>#</a></span>
<span>Summary: Accounting for min-size when distributing free space</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/4852'>https://github.com/w3c/csswg-drafts/issues/4852</a></span>
<span class="d">Open: Deferred to next revision</span></pre>
<pre class=' a' id='issue-95'>
<span>Issue 95. <a href='#issue-95'>#</a></span>
<span>Summary: When grid-template-areas expands the explicit grid?</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/4914'>https://github.com/w3c/csswg-drafts/issues/4914</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/4914#issuecomment-608925290'>https://github.com/w3c/csswg-drafts/issues/4914#issuecomment-608925290</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/bae5afe6d692a2ae96bb524360f269933a5b044b'>https://github.com/w3c/csswg-drafts/commit/bae5afe6d692a2ae96bb524360f269933a5b044b</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2020Jul/0010.html'>https://lists.w3.org/Archives/Public/www-style/2020Jul/0010.html</a> <a href="https://www.w3.org/Mail/flatten/index?subject=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-style/2020Jul/0010.html"><abbr title="Thread">∈</abbr></a></span></pre>
<pre class=' a' id='issue-96'>
<span>Issue 96. <a href='#issue-96'>#</a></span>
<span>Summary: Error in example</span>
<span>From: Cameron McCormack</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/4991'>https://github.com/w3c/csswg-drafts/issues/4991</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/e4391db71a0739ebd32b2b2c5b193093cac9c66f'>https://github.com/w3c/csswg-drafts/commit/e4391db71a0739ebd32b2b2c5b193093cac9c66f</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Editorial</span></pre>
<pre class=' a' id='issue-97'>
<span>Issue 97. <a href='#issue-97'>#</a></span>
<span>Summary: Typo</span>
<span>From: Cameron McCormack</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/4994'>https://github.com/w3c/csswg-drafts/issues/4994</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/841f5a95dcfa1d206fd2587eed4b381385608923'>https://github.com/w3c/csswg-drafts/commit/841f5a95dcfa1d206fd2587eed4b381385608923</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Editorial</span></pre>
<pre class=' a' id='issue-98'>
<span>Issue 98. <a href='#issue-98'>#</a></span>
<span>Summary: Should grid-template-areas accept empty strings?</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/5110'>https://github.com/w3c/csswg-drafts/issues/5110</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/5110#issuecomment-655191252'>https://github.com/w3c/csswg-drafts/issues/5110#issuecomment-655191252</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/4e81c0422009398f27b020987ae1b454e650a9bb'>https://github.com/w3c/csswg-drafts/commit/4e81c0422009398f27b020987ae1b454e650a9bb</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2020Jul/0010.html'>https://lists.w3.org/Archives/Public/www-style/2020Jul/0010.html</a> <a href="https://www.w3.org/Mail/flatten/index?subject=https%3A%2F%2Flists.w3.org%2FArchives%2FPublic%2Fwww-style/2020Jul/0010.html"><abbr title="Thread">∈</abbr></a></span></pre>
<pre class=' a' id='issue-99'>
<span>Issue 99. <a href='#issue-99'>#</a></span>
<span>Summary: Clarify that line 1 is never implicit</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/5122'>https://github.com/w3c/csswg-drafts/issues/5122</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/5122#issuecomment-634721981'>https://github.com/w3c/csswg-drafts/issues/5122#issuecomment-634721981</a></span>
<span class="oi">Closed: Invalid</span>
<span class="a">Verified: <a href='https://github.com/w3c/csswg-drafts/issues/5122#issuecomment-634726483'>https://github.com/w3c/csswg-drafts/issues/5122#issuecomment-634726483</a></span></pre>
<pre class=' a' id='issue-100'>
<span>Issue 100. <a href='#issue-100'>#</a></span>
<span>Summary: Grid baseline from not-first row should prioritize participating items</span>
<span>From: fantasai</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/5293'>https://github.com/w3c/csswg-drafts/issues/5293</a></span>
<span>Changes: <a href='https://github.com/w3c/csswg-drafts/commit/916d4581221ef17550619654c5022af820690135'>https://github.com/w3c/csswg-drafts/commit/916d4581221ef17550619654c5022af820690135</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Bugfix</span>
<span class="a">Verified: reporter is editor</span></pre>
<pre class=' a' id='issue-101'>
<span>Issue 101. <a href='#issue-101'>#</a></span>
<span>Summary: Step 2.2 of Distribute Extra space confusingly written for growth limits</span>
<span>From: fantasai</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/5351'>https://github.com/w3c/csswg-drafts/issues/5351</a></span>
<span class="a">Closed: Accepted</span>
<span>Resolved: Editorial</span>
<span class="a">Verified: <a href='https://github.com/w3c/csswg-drafts/issues/5351#issuecomment-662987876'>https://github.com/w3c/csswg-drafts/issues/5351#issuecomment-662987876</a></span></pre>
<pre class='open d' id='issue-102'>
<span>Issue 102. <a href='#issue-102'>#</a></span>
<span>Summary: fit-content() arg should affect distribution of spanning item min contrib</span>
<span>From: Oriol Brufau</span>
<span>Comment: <a href='https://github.com/w3c/csswg-drafts/issues/4549#issuecomment-662738127'>https://github.com/w3c/csswg-drafts/issues/4549#issuecomment-662738127</a></span>
<span>Response: <a href='https://github.com/w3c/csswg-drafts/issues/4549#issuecomment-662754902'>https://github.com/w3c/csswg-drafts/issues/4549#issuecomment-662754902</a></span>
<span class="d">Open: Deferred to next revision</span></pre>
<script>
(function () {
var sheet = document.styleSheets[0];
function addCheckbox(className) {
var element = document.querySelector('*.' + className);
var span = document.createElement('span');
span.innerHTML = element.innerHTML;
element.innerHTML = null;
var check = document.createElement('input');
check.type = 'checkbox';
if (className == 'open') {
check.checked = false;
sheet.insertRule('pre:not(.open)' + '{}', sheet.cssRules.length);
check.onchange = function (e) {
rule.style.display = this.checked ? 'none' : 'block';
}
}
else {
check.checked = true;
sheet.insertRule('pre.' + className + '{}', sheet.cssRules.length);
check.onchange = function (e) {
rule.style.display = this.checked ? 'block' : 'none';
}
}
var rule = sheet.cssRules[sheet.cssRules.length - 1];
element.appendChild(check);
element.appendChild(span);
}
['a', 'd', 'fo', 'oi', 'r', 'open'].forEach(addCheckbox);
}());
</script>