-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathcss2.1.txt
More file actions
2341 lines (1905 loc) · 113 KB
/
css2.1.txt
File metadata and controls
2341 lines (1905 loc) · 113 KB
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
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
====== CSS2.1 ======
The [[http://www.w3.org/TR/CSS21/|CSS2.1 specification]] is a revision of of [[http://www.w3.org/TR/REC-CSS2/|CSS2]] that corrects many errors and omissions in the CSS2 Recommendation. It has also dropped unimplemented features and introduced a handful of minor new ones.
TODO: Audit issues list and make sure each issue has tests in the test suite. Then institute policy that issues cannot be marked as closed until there is a test checked in for that issue.
**CSS 2.1 bugs/issues are //no longer// tracked on this wiki page. New issues on CSS 2.1 should go in Bugzilla. (See [[http://www.w3.org/Bugs/Public/buglist.cgi?query_format=advanced&product=CSS&component=Issues+with+the+CSS+level+2+revision+1+specification&resolution=---|existing open bugs]], or [[http://www.w3.org/Bugs/Public/enter_bug.cgi?assigned_to=bert%40w3.org&blocked=&bug_file_loc=http%3A%2F%2F&bug_severity=normal&bug_status=NEW&comment=&component=Issues%20with%20the%20CSS%20level%202%20revision%201%20specification&contenttypeentry=&contenttypemethod=autodetect&contenttypeselection=text%2Fplain&data=&dependson=&description=&form_name=enter_bug&keywords=&maketemplate=Remember%20values%20as%20bookmarkable%20template&op_sys=All&priority=P2&product=CSS&qa_contact=&rep_platform=All&short_desc=&target_milestone=---&version=unspecified|file a new bug]] but please discuss on the ([[http://lists.w3.org/Archives/Public/www-style/|archived]]) public mailing list [[mailto:www-style@w3.org|www-style@w3.org]] (see [[http://www.w3.org/Mail/Request|instructions]]) first).** From there, they find their way to the [[http://www.w3.org/Style/css2-updates/REC-CSS2-20110607-errata.html | errata document]].
Mailing list sweeps:
* Up to 2011-01-07 – fantasai, arronei
* From 2011-05-01 to 2012-04-30 (and ongoing) - antonp
TODO: perform mailing list sweep for Jan to April 2011; perform sweep for 2010 specifically looking for items marked for consideration in errata; comprehensively review this wiki page to ensure that errata items are captured and moved to Bugzilla (antonp).
===== Current Issues =====
==== Issue 142 ====
;URL : http://lists.w3.org/Archives/Public/www-style/2009Sep/0126.html #4
;Summary : clarify terms like "ancestor box", whether referring to formatting structure or document tree. Spec contains only 3 instances of ancestor box. They are all in section 10.1.
;Resolution : Agreed this is ambiguous.
;Proposal : [[http://lists.w3.org/Archives/Public/www-style/2010Aug/0436.html|first version,]] [[http://lists.w3.org/Archives/Public/www-style/2010Oct/0042.html|second version, with support for run-in]]
;Follow-up 1 : There is probably an [[http://lists.w3.org/Archives/Public/www-style/2010Oct/0044.html|error]] in the resolution of [[#issue-120|issue 120]]. If so, the proposal needs changing.
;Follow-up 2 : [[http://lists.w3.org/Archives/Public/www-style/2010Aug/0443.html|Boris Zbarsky asks]] that the containing block of an element inside a table, in the absence of a table element, be created from the height of the row and the width of the column, even if one or both of those are implied rather than actual elements. If we accept that change, the proposal needs changing.
;Resolution : Push to errata.
;Status : Open. =errata=
==== Issue 153 ====
;URL : http://lists.w3.org/Archives/Public/public-css-testsuite/2010Jan/0030.html
;Summary : Clarify which box of a replaced element is vertical-aligned
;Testcase : http://www.w3.org/Style/CSS/Test/CSS2.1/20100127/html4/c44-ln-box-002.htm
;Testcase : data:text/html;charset=utf-8,%3C!DOCTYPE%20html%3E%0D%0A%3Cp%20style%3D%22border%3A%201px%20solid%20gray%3B%22%3E%3Cspan%20style%3D%22background%3A%20silver%3B%22%3E__Xx-%20%3Cimg%20src%3D%22http%3A%2F%2Ftest.csswg.org%2Fsource%2Fapproved%2Fsupport%2Fsquare-purple.png%22%20style%3D%22vertical-align%3A%20middle%3B%20margin-top%3A%20100px%3B%20border%3A%20solid%2010px%20aqua%3B%20border-bottom-width%3A%2040px%3B%22%3E%20-xX___
;Proposal : "In the following definitions, for replaced, inline-block, and inline-table elements, the box used for alignment is the margin box. For inline non-replaced elements, the box used for alignment is undefined."
;Second proposal : http://lists.w3.org/Archives/Public/www-style/2010Jun/0570.html
;Resolution : Second proposal accepted.
;Follow-up 1 : The term "the box whose height is 'line-height'" isn't actually defined anywhere and indeed can't be. (The intended boxes are typically of that height, but it depends on whether they contain glyphs in fallback fonts.) We need to define the box we need somewhere, or characterize it better. See [[http://lists.w3.org/Archives/Public/www-style/2010Oct/0045.html|thread.]] See also sylvain's comment in the March f2f minutes
;Status : Closed.
;Testcases : vertical-align-boxes-001
==== Issue 159 ====
;URL : http://lists.w3.org/Archives/Public/www-style/2010Feb/0015.html http://lists.w3.org/Archives/Public/www-style/2010Aug/0183.html
;Summary : Clarify definition of adjoining margins
;Proposal : http://lists.w3.org/Archives/Public/www-style/2010Sep/0684.html
;Resolution : Proposal accepted with tweaks noted in minutes: http://lists.w3.org/Archives/Public/www-style/2010Oct/0842.html.
;Status : Closed.
==== Issue 179 ====
;Summary : Example in anonymous block boxes section is wrong
;URI : http://lists.w3.org/Archives/Public/www-style/2010Aug/0005.html
;Note : Partially, but not completely, fixed by [[#issue-164|issue 164.]]
;Proposal : Replace "The resulting boxes would be an anonymous block box around the P" with "The resulting boxes would be a block box representing the P"
;Resolution : Proposal accepted
;Objection : This is incorrect, see http://lists.w3.org/Archives/Public/www-style/2011Mar/0310.html
;Status : Closed.
;Testcases : n/a (editorial)
==== Issue 181 ====
;Summary : use of 'height' in 10.8 causes confusion over content height and line-height wrt inline elements
;URI : http://lists.w3.org/Archives/Public/www-style/2010Aug/0010.html
;Followup : conflict noted in http://lists.w3.org/Archives/Public/www-style/2011Mar/0139.html (e.g. say "based on line-height"?)
;Response : http://lists.w3.org/Archives/Public/www-style/2011Mar/0587.html
;Status : Closed.
==== Issue 192 ====
;Summary : Clarifications to float's effect on its shortened line
;URI : http://lists.w3.org/Archives/Public/www-style/2009Oct/0027.html
;Resolution : Accept change for first issue; accept s/further content/content after the float/ and s/it/that content/ for the second issue; third issue is invalid.
;Followup : http://lists.w3.org/Archives/Public/www-style/2010Sep/0053.html http://lists.w3.org/Archives/Public/www-style/2010Dec/0312.html #FL1
;Additional followup : Third issue is not invalid: http://lists.w3.org/Archives/Public/www-style/2011Mar/0059.html
;Response : dbaron's note explaining interaction of rules 6 and 8 - http://lists.w3.org/Archives/Public/www-style/2011Mar/0358.html
;Objection : http://lists.w3.org/Archives/Public/www-style/2011Mar/0402.html
;Resolution : from 2011-03-29 telcon: "If a shortened line box is too small to contain any content <del>after the float</del>, then <del>that content</del> <ins>the line box</ins> is shifted downward <ins>(and its width recomputed)</ins>
until either <del>it</del> <ins>some content</ins> fits or there are no more floats present. Any content in the current line before a floated box is reflowed in the <del>first available</del> <ins>same</ins> line on the other side of the float."
;Status : Closed.
==== Issue 197 ====
;Summary : Clarify application of 'clear' to run-ins.
;URI : http://lists.w3.org/Archives/Public/www-style/2010Jan/0404.html
;Proposed Wording : http://lists.w3.org/Archives/Public/www-style/2010Sep/0682.html
;Proposal A : Clear on run-in and its containing block combine.
;Proposal B : Clear does not apply to inline run-ins.
;Proposal C : Clear does not apply to elements with display: run-in. (safest)
;Resolution : Move run-in to CSS3 Box.
;Status : Closed.
==== Issue 198 ====
;Summary : Clarify interaction of run-ins and "elements earlier in the source document".
;URI : http://lists.w3.org/Archives/Public/www-style/2010Jan/0376.html
;Proposal : Say that for all layout purposes, the run-in is considered a direct child of the block to which it belongs.
;Resolution : Move run-in to CSS3 Box.
;Status : Closed.
==== Issue 199 ====
;Summary : Define when line boxes are present
;URI : http://lists.w3.org/Archives/Public/www-style/2010May/0698.html
;Proposal : http://lists.w3.org/Archives/Public/www-style/2010Oct/0707.html
;Resolution : Accept Tab's proposal with "auto" replaced by "static"
;Objection : Text no longer deals with such content between sibling blocks. Also fails to mention margin collapsing transparency.
;Proposal : http://lists.w3.org/Archives/Public/www-style/2011Mar/0530.html
;Resolution : Accept updated proposal.
;Status : Closed.
==== Issue 203 ====
;Summary : Hypothetical border calculation should match actual border calculation
;URI : http://lists.w3.org/Archives/Public/www-style/2010Aug/0261.html
;Proposal : http://lists.w3.org/Archives/Public/www-style/2010Aug/0460.html
;Resolution : Proposal accepted.
;Objection : http://lists.w3.org/Archives/Public/www-style/2010Sep/0665.html
;Resolution : Resolve via Issue 285.
;Objection : http://lists.w3.org/Archives/Public/www-style/2011Mar/0426.html
;Proposal : http://lists.w3.org/Archives/Public/www-style/2011Mar/0567.html
;Resolution : Proposal accepted.
;Status : Closed.
==== Issue 204 ====
;Summary : Link 8.3.1 to clause about phantom line boxes
;URI : http://lists.w3.org/Archives/Public/www-style/2010Sep/0061.html 20d
;Resolution : Assumed editorial.
;Status : Closed.
==== Issue 205 ====
;Summary : Clause about phantom line boxes should say "forced line break" instead of "line feed"
;URI : http://lists.w3.org/Archives/Public/www-style/2010Sep/0074.html
;Resolution : Assumed editorial.
;Status : Closed.
==== Issue 206 ====
;Summary : Comments on HASH grammar
;URI : http://lists.w3.org/Archives/Public/www-style/2010Aug/0597.html
;Resolution : Assumed either no change or editorial.
;Response : http://lists.w3.org/Archives/Public/www-style/2011Mar/0491.html
;Status : Closed.
==== Issue 207 ====
;Summary : Clearance is discontinuous
;URI : http://lists.w3.org/Archives/Public/www-style/2010Aug/0569.html
;Status : Closed. =errata=
==== Issue 208 ====
;Summary : Horizontal scrollbars confuse width/height/etc calculations
;URI : http://lists.w3.org/Archives/Public/www-style/2010Aug/0544.html
;Resolution : No change to spec, address any clarifications in errata.
;Status : Closed. =errata=
==== Issue 209 ====
;Summary : Does the root element establish a new block formatting context?
;URI : http://lists.w3.org/Archives/Public/www-style/2010Aug/0107.html http://lists.w3.org/Archives/Public/www-style/2010Aug/0539.html
;Proposal : The root element participates in a block formatting context established by the initial containing block.
;Status : Open. =errata= Deferred to Errata
==== Issue 210 ====
;Summary : 4.1.9 implies comments are not allowed at start or end of style sheet
;URI : http://lists.w3.org/Archives/Public/www-style/2010Aug/0510.html
;Resolution : Assumed editorial.
;Status : Closed.
==== Issue 211 ====
;Summary : Transitivity error in margin collapsing
;URI : http://lists.w3.org/Archives/Public/www-style/2010Sep/0439.html http://lists.w3.org/Archives/Public/www-style/2010Sep/0451.html
;Status : Open. =errata= Deferred to Errata
==== Issue 212 ====
;Summary : Clarify that table wrapper boxes are containing blocks, even though table boxes are not in 9.2.1
;Resolution : Clarified by edits for other issues.
;Status : Closed.
==== Issue 213 ====
;Summary : clarify that forced page breaks on the root element change whether :first is :left or :right
;URL : http://lists.w3.org/Archives/Public/www-style/2010Nov/0421.html
;Resolution : Make it undefined in CSS2.1 whether forced break before first page creates a :first page or a blank page.
;Status : Closed.
==== Issue 214 ====
;Summary : Make it undefined whether white space stripping happens before or after bidi reordering
;URI : http://wiki.csswg.org/test/css2.1/blocking/bidi-004#discussion
;Proposal : http://lists.w3.org/Archives/Public/www-style/2011Feb/0528.html
;Resolution : Proposal accepted.
;Status : Closed.
==== Issue 215 ====
; Summary : Make it undefined what containing block is formed by a relpos inline that splits across multiple lines
; URI : containing-block-032
; Resolution : Make undefined.
;Status : Closed.
==== Issue 216 ====
; Summary : Drop vertical-align from list of properties supported on ::first-line
; URI : first-line-pseudo-016
; Resolution : Drop.
;Status : Closed.
==== Issue 218 ====
;Summary : Percentage intrinsic widths untestable
;URI : http://lists.w3.org/Archives/Public/www-style/2010Nov/0077.html
;Resolution : Remove all mention of percentage intrinsic widths from CSS2.1
;Status : Closed.
==== Issue 219 ====
;Summary : Clarify that Line Separator LS and other (non-collapsed) forced-break Unicode chars break the line
;URI : http://krijnhoetmer.nl/irc-logs/css/20101111
;Resolution : Make line breaking behavior of forced-break Unicode chars undefined in CSS2.1 so that CSS3 can define it.
;Proposal : http://lists.w3.org/Archives/Public/www-style/2011Feb/0669.html
;Resolution : Proposal accepted.
;Status : Closed.
==== Issue 220 ====
;Summary : Clip does not respond to 'direction' in most implementations
;URI : http://lists.w3.org/Archives/Public/www-style/2010Nov/0174.html
;Resolution : Make 'clip' not respond to 'direction' in the spec.
;Status : Closed.
==== Issue 221 ====
;Summary : Remove gamma-correction section
;URI :
;Resolution : Remove gamma-correction section
;Status : Closed.
==== Issue 222 ====
Misfiled. See Issue 192.
==== Issue 223 ====
Misfiled. See Issue 192.
==== Issue 224 ====
;Summary : List style intrinsic sizing rules inconsistent with other image uses
;URL : http://lists.w3.org/Archives/Public/www-style/2011Feb/0364.html
;Proposal : http://lists.w3.org/Archives/Public/www-style/2011Feb/0679.html
;Resolution : Tab's proposal accepted.
;Status : Closed.
==== Issue 225 ====
;Summary : Auto height calculation rules confused about margin collapsing
;URL : http://lists.w3.org/Archives/Public/www-style/2010Aug/0108.html
;Proposal : http://lists.w3.org/Archives/Public/www-style/2011Apr/0160.html (first part)
;Status : Open. =Bert= Edit. =Anton= Review.
==== Issue 226 ====
;Summary : White space processing clarifications
;URL : http://lists.w3.org/Archives/Public/www-style/2010Aug/0421.html
;Resolution : No change.
;Status : Closed.
==== Issue 227 ====
;Summary : Diagram caption out of date
;URL : http://lists.w3.org/Archives/Public/www-style/2010Aug/0446.html
;Resolution : Fixed already.
;Status : Closed.
==== Issue 228 ====
;Summary : Add non-normative note pointing at min/max sections from auto width/height sections.
;URL : http://lists.w3.org/Archives/Public/www-style/2010Aug/0483.html
;Resolution : Accepted editorial.
;Status : Closed.
==== Issue 229 ====
;Summary : Floats effect on lines above placeholder
;Testcase : [[http://www.gtalbot.org/BrowserBugsSection/css21testsuite/testcase-for-issue-229.html|2 basic testcases for issue 229]]
;URL : http://lists.w3.org/Archives/Public/www-style/2010Sep/0149.html http://lists.w3.org/Archives/Public/www-style/2010Oct/0245.html
;Proposal : Add, "If, within the BFC, there is an in-flow negative vertical margin such that the floats position is above the position it would be at were all such negative margins set to zero, the position of the float is undefined."
;Resolution : Proposal accepted
;Status : Closed.
==== Issue 230 ====
;Summary : List item numbering undefined
;URL : http://lists.w3.org/Archives/Public/www-style/2010Sep/0175.html
;Testcases : http://bowman.infotech.monash.edu.au/~pmoulder/html-tests/list-item-numbering/
;Proposal : Add a note saying it's undefined and point to CSS3 Lists
;Resolution : Proposal accepted.
;Status : Closed.
==== Issue 231 ====
;Summary : Make list-item-ness of root list-item optional
;URL : http://lists.w3.org/Archives/Public/www-style/2010Sep/0205.html
;Testcases : http://software.hixie.ch/utilities/js/live-dom-viewer/?%3C!DOCTYPE%20html%3E%0A%3Cstyle%3Ehtml%20{%20display%3A%20list-item%3B%20margin%3A%205em%3B%20}%3C%2Fstyle%3E
;Resolution : Make undefined whether root is list-item (with marker) or reverts to block.
;Status : Closed.
==== Issue 232 ====
;Summary : Define "in-flow"
;URL : http://lists.w3.org/Archives/Public/www-style/2010Sep/0310.html
;See also : http://lists.w3.org/Archives/Public/www-style/2010Oct/0407.html
;Resolution : Make in-flow mean not out-of-flow, check that spec remains correct.
;Status : Closed.
==== Issue 233 ====
;Summary : text-indent percentages behavior very odd for table cells and floats
;URL : http://lists.w3.org/Archives/Public/www-style/2010Sep/0431.html
;Resolution : No change.
;Status : Closed.
==== Issue 234 ====
;Summary : Margin-collapsing and min-height inconsistent implementations.
;URL : http://lists.w3.org/Archives/Public/www-style/2010Sep/0649.html
;Testcase : http://css-class.com/test/css/box/margins/collapsing-with-min-height.htm
;Response : http://lists.w3.org/Archives/Public/www-style/2011Mar/0356.html
;Status : Closed.
==== Issue 235 ====
;Summary : Clarify that list of 'direction' property effects is not exhaustive.
;URL : http://lists.w3.org/Archives/Public/www-style/2010Sep/0728.html
;Proposal : Copy from css3-writing-modes
;Resolution : Assumed editorial.
;Status : Closed.
==== Issue 236 ====
;Summary : Propagation of text-decoration to contents of tables
;URL : http://lists.w3.org/Archives/Public/www-style/2010Oct/0407.html
;Testcase : http://software.hixie.ch/utilities/js/live-dom-viewer/?%3C!DOCTYPE%20html%3E%0A%3Cdiv%20style%3D%22text-decoration%3A%20line-through%22%3E%0Aline-through%0A%3Cdiv%20style%3D%22display%3A%20table%22%3ECSS%20Table%3C%2Fdiv%3E%0Aline-through%0A%3Ctable%3E%3Ctr%3E%3Ctd%3EHTML%20Table%3C%2Ftd%3E%3C%2Ftr%3E%3C%2Ftable%3E%0Aline-through%0A%3C%2Fdiv%3E%0A
;Proposal A : Allow text-decoration to propagate to tables, use CSS3 to block propagation to <table> if necessary.
;Proposal B : display: table blocks text-decoration propagation
;Resolution : Make propagation to display: table descendants undef.
;Status : Closed.
==== Issue 237 ====
;Summary : Border conflict resolution unclear due to equivalence wording of outset/inset and groove/ridge
;URL : http://lists.w3.org/Archives/Public/www-style/2010Oct/0560.html
;Proposal : s/same as/drawn the same as/
;Resolution : Assumed editorial.
;Status : Closed.
==== Issue 238 ====
;Summary : Clarify interpretation of system font keywords
;URL : http://lists.w3.org/Archives/Public/www-style/2010Oct/0622.html
;Proposal : Add a note or example?
;Resolution : Deferred to CSS3 fonts
;Status : Closed. Refiled against css3-fonts.
==== Issue 239 ====
;Summary : Propagate 'direction' from BODY to ICB
;URL : http://lists.w3.org/Archives/Public/www-style/2010Oct/0750.html
;Resolution : No change. 'direction' doesn't propagate.
;Status : Closed.
==== Issue 240 ====
;Summary : Behavior of min/max width on table elements.
;URL : http://lists.w3.org/Archives/Public/www-style/2010Oct/0817.html
;Proposal : Make undefined
;Resolution : Proposal accepted to make effect of min/max-width/height undefined on table elements to which they apply.
;Status : Closed.
==== Issue 241 ====
;Summary : position: static doesn't prevent computation of top/left/bottom/right
;URL : http://lists.w3.org/Archives/Public/www-style/2010Nov/0035.html
;Proposal : Remove "for 'position:static', 'auto'. Otherwise:" from Computed Value line of top/left/bottom/right
;Resolution : Proposal accepted.
;Status : Open. Closed.
==== Issue 242 ====
;Summary : Exact behavior of inline split around block not defined.
;URL : http://lists.w3.org/Archives/Public/www-style/2010Nov/0047.html (z-index issues folded into issue 244)
;Proposal : "are broken around the block-level box (and any block-level siblings that are consecutive or separated only by collapsible whitespace and/or out-of-flow elements), splitting the inline box into two boxes (even if either side is empty), one on each side of the block-level box."
;Resolution : Proposal accepted.
;Status : Closed.
==== Issue 243 ====
;Summary : Tables confused about which box is principal box
;URL : http://lists.w3.org/Archives/Public/www-style/2010Nov/0084.html + http://lists.w3.org/Archives/Public/www-style/2011Jan/0073.html issue 4
;Proposal : http://lists.w3.org/Archives/Public/www-style/2011Mar/0180.html
;Resolution : Proposal accepted.
;Status : Closed.
==== Issue 244 ====
;Summary : Rendering tree vs. element tree in z-order algo
;URL : http://lists.w3.org/Archives/Public/www-style/2010Nov/0069.html + http://lists.w3.org/Archives/Public/www-style/2010Nov/0047.html
;Resolution : No change to spec, but we agree it is the rendering tree.
;Status : Closed.
==== Issue 245 ====
;Summary : Clarifications to z-index chapter
;URL : http://lists.w3.org/Archives/Public/www-style/2010Nov/0083.html
;Resolution : No changes. See Issue 60. Deferred to CSS3.
;Status : Closed.
==== Issue 246 ====
;Summary : Improve clip examples
;URL : http://lists.w3.org/Archives/Public/www-style/2010Nov/0187.html
;Resolution : Assumed editorial.
;Status : Closed.
==== Issue 247 ====
;Summary : Containing block of abspos inside block-in-inline split unclear & inconsistent
;URL : http://lists.w3.org/Archives/Public/www-style/2010Nov/0444.html
;Resolution : Make undefined via issue 215. (See [[http://www.w3.org/Style/CSS/Tracker/issues/176 | ISSUE-176]] for CSS3 Box.
;Status : Open. =dbaron= Verify after Bert edits 215.
==== Issue 248 ====
;Summary : Clarification for Floats with height: 0;
;URL : http://lists.w3.org/Archives/Public/www-style/2010Dec/0020.html
;Status : Open. =errata= Deferred to Errata
==== Issue 249 ====
;Summary : Add explanatory sentences to clarify clearance calculation.
;URL : http://lists.w3.org/Archives/Public/www-style/2010Dec/0120.html
;Resolution : Accept, but defer to next revision.
;Status : Closed. =editorial clarification=
==== Issue 250 ====
;Summary : @page grammar missing
;URL : http://lists.w3.org/Archives/Public/www-style/2010Dec/0211.html
;Proposal : Accepted
;Status : Closed.
==== Issue 251 ====
;Summary : Add longest-match tokenization example
;URL : http://lists.w3.org/Archives/Public/www-style/2011Jan/0064.html
;Resolution : Assumed editorial.
;Status : Closed.
==== Issue 252 ====
;Summary : Error-parsing rules confusion
;URL : http://lists.w3.org/Archives/Public/www-style/2011Jan/0068.html
;Response : http://lists.w3.org/Archives/Public/www-style/2011Jan/0092.html
;Proposal : No change. Improve explanations in CSS3.
;Status : Closed
==== Issue 253 ====
;Summary : Clarify end-of-line as end-of-line character (vs. end-of-file)
;URL : http://lists.w3.org/Archives/Public/www-style/2011Jan/0091.html
;Resolution : Define reaching end-of-line more clearly in "Unexpected end of string" in 4.2.
;Status : Closed.
==== Issue 254 ====
;Summary : Clarify "next block" when parsing invalid at-keywords
;URL : http://lists.w3.org/Archives/Public/www-style/2011Jan/0071.html
;Status : Open. =errata= Deferred to Errata. (This issue should be closed as invalid since it was withdrawn by the OP: http://lists.w3.org/Archives/Public/www-style/2011Apr/0086.html .)
==== Issue 255 ====
;Summary : Clarifications to HTML-related definitions
;URL : http://lists.w3.org/Archives/Public/www-style/2011Jan/0072.html issue 1
;Proposal : Include future versions of HTML in HTML UA definition (or remove definition, if possible).
;Status : Closed.
==== Issue 256 ====
;Summary : Clarify form controls and frames
;URL : http://lists.w3.org/Archives/Public/www-style/2011Jan/0072.html issue 2
;Status : Open. =errata= Deferred to Errata
==== Issue 257 ====
;Summary : Don't say that boxes have properties
;URL : http://lists.w3.org/Archives/Public/www-style/2011Jan/0073.html issues 1-3
;Proposal : No change. (issue 4 folded into issue 243)
;Status : Closed
==== Issue 258 ====
;Summary : Bad wording in url() comment notes
;URL : http://lists.w3.org/Archives/Public/www-style/2011Jan/0074.html
;Resolution : Revise note
;Status : Closed.
==== Issue 259 ====
;Summary : Assigning of values via inheritance unclear
;URL : http://lists.w3.org/Archives/Public/www-style/2011Jan/0075.html issue 1
;Proposal : http://lists.w3.org/Archives/Public/www-style/2011Mar/0507.html
;Status : Closed.
==== Issue 260 ====
;Summary : Note about anonymous box inheritance redundant
;URL : http://lists.w3.org/Archives/Public/www-style/2011Jan/0075.html issue 2
;Proposal : No change.
;Status : Closed
==== Issue 261 ====
;Summary : Clarify "other attributes" in specificity calculations
;URL : http://lists.w3.org/Archives/Public/www-style/2011Jan/0075.html issue 3
;Resolution : No change. Nobody's ever been confused on this point, clarification exists in Selectors L3.
;Status : Closed.
==== Issue 262 ====
;Summary : Editorial issues in Ch 8
;URL : http://lists.w3.org/Archives/Public/www-style/2011Jan/0076.html
;Proposal : Accept issue 1 proposed text, fix problem in issue 2 somehow, don't understand why 3 is an issue so no change
;Resolution : Assumed editorial.
;Status : Open. =errata= Deferred to Errata
==== Issue 263 ====
;Summary : Editorial simplification to 9.4.1 BFC root definition
;URL : http://lists.w3.org/Archives/Public/www-style/2011Jan/0077.html
;Resolution : Assumed editorial.
;Status : Open. =errata= Deferred to Errata
==== Issue 264 ====
;Summary : Clarify that float shortening note is wrt margin box
;URL : http://lists.w3.org/Archives/Public/www-style/2011Jan/0078.html issue 1
;Proposal : s/height/outer height/g;
;Resolution : Proposal (in wiki) accepted.
;Status : Closed.
==== Issue 265 ====
;Summary : Clarify which table box is affected by float overlap restriction
;URL : http://lists.w3.org/Archives/Public/www-style/2011Jan/0078.html issue 2
;Proposal : No change. Table wrapper box is a BFC, so sentence is maybe a little redundant but clear.
;Resolution : No change.
;Status : Closed.
==== Issue 266 ====
;Summary : Issue 120 follow-up
;URL : http://lists.w3.org/Archives/Public/www-style/2011Jan/0079.html
;Proposal :
* Accept proposals 1 & 2 with "block container element" instead of "block container"
* accept 3
* accept 4
* accept 5 with s/which/that/
* accept 7 (but beware second set of edits applies to second quoted sentence, not first)
;Resolution : Accept issue 6 edits, push rest to errata.
;Status : Closed. =errata=
==== Issue 267 ====
;Summary : Clarify that block-in-relpos'd-inline doesn't get position: relative z-index side-effects.
;URL : http://lists.w3.org/Archives/Public/www-style/2011Jan/0086.html
;Proposal : s/the relative positioning also/any resulting translation also/
;Resolution : Proposal accepted.
;Status : Closed.
==== Issue 268 ====
;Summary : Perceived error in text-indent example of first formatted line
;URL : http://lists.w3.org/Archives/Public/www-style/2011Jan/0085.html issue 1
;Proposal : No change. Text is correct -- in the case given, the first line should not be affected by text-indent.
;Resolution : No change.
;Status : Closed.
==== Issue 269 ====
;Summary : Justification should be wrt line box, not block container.
;URL : http://lists.w3.org/Archives/Public/www-style/2011Jan/0085.html issue 2
;Resolution : Make justification stretch to edges of line box, not block container.
;Status : Closed.
==== Issue 270 ====
;Summary : Make text-decoration propagation more clearly recursive.
;URL : http://lists.w3.org/Archives/Public/www-style/2011Jan/0085.html issue 3
;Resolution : No change for CSS 2.1, Fix in CSS3 Text.
;Status : Fixed in CSS3 Text.
==== Issue 271 ====
;Summary : Make list-item's additional boxes clause example rather than exhaustive.
;URL : http://lists.w3.org/Archives/Public/www-style/2011Jan/0087.html issue 1
;Proposal : insert "e.g." between colon and "'list-item' elements".
;Resolution : Assumed editorial.
;Status : Open. =errata= Deferred to Errata
==== Issue 272 ====
;Summary : Adopt CSS3 exit criteria for CSS2.1
;Resolution : Adopt CSS3 exit criteria for CSS2.1 minus 30-day waiting period
;Status : Closed.
http://lists.w3.org/Archives/Public/www-style/2010Dec/0312.html
http://lists.w3.org/Archives/Public/www-style/2010Dec/0419.html
==== Issue 273 ====
;Summary : Wording incorrect for RTL text next to floats
;URL : http://lists.w3.org/Archives/Public/www-style/2009Oct/0058.html
;Status : Open. =errata= Deferred to Errata
==== Issue 274 ====
;Summary : No shortening of line boxes next to later floats
;URL : http://lists.w3.org/Archives/Public/www-style/2010Sep/0131.html
(Issue 1)
http://lists.w3.org/Archives/Public/www-style/2010Sep/0148.html
(first half)
http://lists.w3.org/Archives/Public/www-style/2010Sep/0150.html
(first third)
;Test case : http://software.hixie.ch/utilities/js/live-dom-viewer/?%3C!DOCTYPE%20html%3E%0A%3Cdiv%20style%3D%22border%3A%20solid%20magenta%22%3E%0A%20%20%3Cdiv%20style%3D%27float%3A%20left%3B%20border%3A%20solid%20green%3B%20%27%3EA%3C%2Fdiv%3E%20aaaa%0A%3C%2Fdiv%3E%0A%3Cdiv%20style%3D%22border%3A%20solid%20blue%3B%20margin%3A%20-2em%22%3E%0A%20%20%3Civ%20style%3D%22float%3A%20left%3B%20border%3A%20solid%20yellow%3B%20%22%3EB%3C%2Fdiv%3E%20bbbbbbb%0A%3C%2Fdiv%3E
;Proposal : Specify that line boxes are not shortened by a float that occurs after them.
;Status : Closed.
==== Issue 275 ====
;Summary : vertical gap possible between line boxes in presence of floats
;URL : http://lists.w3.org/Archives/Public/www-style/2009Aug/0358.html
;Proposal : Add "(except as specified elsewhere)" to statement about stacking.
;Resolution : Proposal accepted.
;Status : Closed.
==== Issue 276 ====
;Summary : :first-line, :first-letter under defined
;URL : http://lists.w3.org/Archives/Public/www-style/2011Jan/0097.html
;Proposal : Note that the exact behavior :first-letter and :first-line is not defined, and may be defined in a future version.
;Resolution : Proposal accepted.
;Status : Closed.
==== Issue 277 ====
;Summary : usage of "rule" incorrect in many cases
;URL : http://lists.w3.org/Archives/Public/www-style/2011Jan/0101.html
;Proposal : Do a sweep of all usages of "rule" and determine if it should be "declaration"
;Resolution : Defer to errata (but do make this change).
; Status : Open. =errata= Deferred to Errata
==== Issue 278 ====
;Summary : floats and margin box
;URL : http://lists.w3.org/Archives/Public/www-style/2009Jan/0352.html
http://lists.w3.org/Archives/Public/www-style/2009Mar/0279.html
;Proposal : Could specify by changing “must not overlap any floats” to “must not overlap the margin box of any floats” in http://www.w3.org/TR/CSS21/visuren.html#bfc-next-to-float
;Resolution : Proposal accepted.
;Status : Closed.
==== Issue 279 ====
;Summary : new wording about "next to" floats
;URL : http://lists.w3.org/Archives/Public/www-style/2010Sep/0130.html
;Proposal : Add "as necessary" to sentence about shortening line boxes.
;Resolution : Proposal accepted.
;Status : Closed.
==== Issue 280 ====
;Summary : left float can be to the right of a right float
;URL : http://lists.w3.org/Archives/Public/www-style/2010Sep/0131.html
(Issue 2)
http://lists.w3.org/Archives/Public/www-style/2010Sep/0150.html
(second third)
;Proposal : Change "to the right of it" to "next to it"
;Resolution : Proposal accepted.
;Status : Closed.
==== Issue 281 ====
;Summary : 'line-height' is a property (and its values are 'quantities') not a
physical entity; nothing can "start" there.
;URL : http://lists.w3.org/Archives/Public/www-style/2009Mar/0004.html
(Issue 3b)
http://lists.w3.org/Archives/Public/www-style/2009May/0191.html
;Proposal : Replace "not the 'line-height" with "and has nothing to do with the 'line-height'"
;Resolution : Proposal accepted
;Status : Closed.
==== Issue 282 ====
;Summary : No passes for background-intrinsic-004 and background-intrinsic-005
;Resolution : The background position of background images with an intrinsic ratio and no intrinsic size is undefined in CSS2.1, see CSS3 Backgrounds and Borders.
;Status : Closed.
==== Issue 283 ====
;Summary : No passes for replaced-intrinsic-ratio-001
;Resolution : Undefine sizing of replaced elements with intrinsic ratio but no size.
;Proposal : http://lists.w3.org/Archives/Public/www-style/2011Mar/0519.html
;Proposal : http://lists.w3.org/Archives/Public/www-style/2011Mar/0623.html
;Status : Edited. =Bert= Missing edits to 10.6.2 (if first proposal is preferred)
==== Issue 284 ====
;Summary : CSS2.1 exit criteria differ from CSS3
;Resolution : Update CSS 2.1 exit criteria to the current (CSS3 standard) exit criteria, minus the 30-day implementation requirement.
;Status : Duplicate of [[#issue-272|issue 272.]]
==== Issue 285 ====
;Summary : Clearance moving things up (revisited)
;URI : http://lists.w3.org/Archives/Public/www-style/2010Dec/0474.html + http://lists.w3.org/Archives/Public/www-style/2011Mar/0427.html
;Testcases : margin-collapse-clear-005/011 and others
;Resolution : Have CSS2.1 allow two possible margin collapsing behaviors in the margin-collapse-clear case: the hypothetical position before clearance is applied may be calculated either with respect to the parent block (which prevents the second clearance calculation from ever being applied), or with respect to the containing block formatting context (which fulfills the intent of adding the second clearance calculation). The preferred behavior is the latter, since it doesn't mysteriously eat margins and make clear to make things move up. But because all browsers do the former, we need to evaluate web compat (which will take some experimentation and some time).
;Objection : http://lists.w3.org/Archives/Public/www-style/2011Mar/0470.html
;Response : http://lists.w3.org/Archives/Public/www-style/2011Mar/0511.html
;Verified : http://lists.w3.org/Archives/Public/www-style/2011Mar/0513.html
;Proposed Text : http://lists.w3.org/Archives/Public/www-style/2011Mar/0531.html
;Status : Closed.
==== Issue 286 ====
;Summary : CSS should not redefine standard units
;URL : http://lists.w3.org/Archives/Public/www-style/2010Dec/0204.html
;Resolution : No change. [[http://lists.w3.org/Archives/Public/www-style/2010Dec/0206.html|dsinger's answer]] is authoritative.
;Status : Open. =glazou= Send email.
==== Issue 287 ====
;Summary : Multiple clearance is underspecified
;URL : http://lists.w3.org/Archives/Public/www-style/2010Aug/0569.html
;Resolution : Deferred to errata or future version
;Status : =errata=
==== Issue 288 ====
;Summary : Clarify flowing line boxes next to floats
;URL : http://lists.w3.org/Archives/Public/www-style/2010Mar/0366.html
;Proposal : http://lists.w3.org/Archives/Public/www-style/2011Mar/0346.html (end)
;Status : Not changed. =errata=
===== 8 September 2009 CR Issues =====
The following are known problems in the [[http://www.w3.org/TR/2009/CR-CSS2-20090423/|8 September 2009 CSS2.1 Candidate Recommendation]]. Any resulting changes or corrections have been added to the [[http://www.w3.org/Style/css2-updates/CR-CSS2-20090908-errata.html|errata list]] and incorporated into the [[7 December 2010 Last Call Working Draft|http://www.w3.org/TR/2010/WD-CSS2-20101207/]].
==== Issue 53 ====
;URL : http://lists.w3.org/Archives/Public/www-style/2008Jun/0227.html
;Summary : Interaction of pre* and justification poorly defined.
;Proposal A : http://lists.w3.org/Archives/Public/www-style/2010Jun/0457.html
;Proposal B : http://lists.w3.org/Archives/Public/www-style/2010Jul/0055.html
;Test cases :
* http://test.csswg.org/source/contributors/microsoft/submitted/Chapter_16/text-align-white-space-001.xht - IE8: Pass, FF3.6: Pass, O10.5: Pass, S4: Fail, C4: Pass
* http://test.csswg.org/source/contributors/microsoft/submitted/Chapter_16/text-align-white-space-002.xht - IE: Pass, FF: Fail, O: Fail, S: Fail, C: Fail
* http://test.csswg.org/source/contributors/microsoft/submitted/Chapter_16/text-align-white-space-003.xht - IE: Pass, FF: Pass, O: Pass, S: Pass, C: Pass
* http://test.csswg.org/source/contributors/microsoft/submitted/Chapter_16/text-align-white-space-004.xht - IE: Pass, FF: Pass, O: Pass, S: Pass, C: Pass
;Resolution : Proposal A accepted. Add note that pre-wrap may allow justification in the future.
;Status : Closed.
;Testcases : text-align-white-space-001 through text-align-white-space-004
==== Issue 56 ====
;URL : http://lists.w3.org/Archives/Public/www-style/2008Apr/0460.html
;URL : http://lists.w3.org/Archives/Public/www-style/2008Aug/0155.html
;Summary : Should text-decoration propagate through internal table elements?
;Proposal : http://lists.w3.org/Archives/Public/www-style/2010Aug/0334.html
;Resolution : Proposal accepted.
;Status : Closed.
;Testcases : text-decoration-propagation-006 [could also use one for display: table]
==== Issue 60 ====
;URL : http://dev.moonhenge.net/css21/spec/z-index/
;See also : http://lists.w3.org/Archives/Public/www-style/2006Oct/0017.html
;Summary : Z-index and stacking behavior prose needs revision (See also Issue 60a)
;Testcases : http://lists.w3.org/Archives/Public/www-style/2008Oct/0263.html
;Proposal input : http://lists.w3.org/Archives/Public/www-style/2008Oct/0238.html and http://lists.w3.org/Archives/Public/www-style/2008Oct/0240.html
;Proposal : http://lists.w3.org/Archives/Public/www-style/2010Mar/0417.html
;Resolution : Exact text deferred to Sylvain, Bert to check that it is only editorial changes.
;Final Proposal : http://lists.w3.org/Archives/Public/www-style/2010Jun/0496.html http://lists.w3.org/Archives/Public/www-style/2010Jun/0515.html
;Bert's review : http://lists.w3.org/Archives/Public/www-style/2010Jul/0056.html
;Status : Open. =Sylvain= Review http://lists.w3.org/Archives/Public/www-style/2011Feb/0329.html
;Testcases : n/a (editorial)
==== Issue 69 ====
;URL : http://lists.w3.org/Archives/Public/www-style/2008Aug/0126.html
;Summary : fixed background images not defined for paged media
;Proposal : Add "In paged media where there is no viewport, a ‘fixed’ background is fixed with respect to the page box and is therefore replicated on every page." (Copied from css3-background)
;Resolution : Proposal accepted.
;Status : Closed.
;Testcases : background-attachment-010
==== Issue 86 ====
;URL : http://lists.w3.org/Archives/Public/www-style/2008Nov/0298.html
;Summary : Position of list-item marker in presence of floats, text-align
;Proposal : Add "The position of the list-item marker adjacent to floats is undefined in CSS2.1."
;Resolution : Proposal accepted.
;Status : Closed.
;Testcases : n/a (undefined)
==== Issue 109 ====
;URL : http://lists.w3.org/Archives/Public/www-style/2009Mar/0060.html http://lists.w3.org/Archives/Public/www-style/2009Mar/0077.html
;Summary : anonymous table objects and table rows (and white space)
;Proposal : http://lists.w3.org/Archives/Public/www-style/2010May/0071.html
;Resolution : Proposal accepted.
;Status : Closed.
==== Issue 110 ====
;URL : http://lists.w3.org/Archives/Public/www-style/2010Mar/0489.html
;Summary : anonymous table objects and abspos
;Proposal A (abspos ignored) : http://lists.w3.org/Archives/Public/www-style/2010Jul/0372.html
;Proposal B (abspos placeholders) : http://lists.w3.org/Archives/Public/www-style/2010Jul/0404.html
;Resolution : Proposal B accepted.
;Status : Closed.
;Testcases : table-anonymous-objects-*
==== Issue 111 ====
;URL : http://lists.w3.org/Archives/Public/www-style/2009Mar/0070.html
;Summary : synchronize font-weight: bolder/lighter changes with any accepted for css3-fonts
;Notes : See also issue 156
;Proposal 1 : http://lists.w3.org/Archives/Public/www-style/2009May/0145.html
;Proposal 2 : http://lists.w3.org/Archives/Public/www-style/2010Mar/0349.html
;Resolution : Proposal 1 accepted.
;Status : Closed. =jdaggett= update testcases
==== Issue 118 ====
;URL : http://lists.w3.org/Archives/Public/www-style/2009Mar/0004.html (Issue 7)
;Summary : Inline layout inappropriately defines line-height in terms of glyphs
;Proposal : http://lists.w3.org/Archives/Public/www-style/2010Jul/0073.html
;Resolution : Bert's proposal accepted with [[http://lists.w3.org/Archives/Public/www-style/2010Aug/0051.html|Steve's suggestions]] [[http://lists.w3.org/Archives/Public/www-style/2010Aug/0395.html|Final Text]]
;Status : Closed.
==== Issue 120 ====
;URL : http://lists.w3.org/Archives/Public/www-style/2009Mar/0004.html (Issue 8)
;Summary : Spec talks about blocks but leaves out table-caption etc.
;Proposal : Define table-caption etc. to format their contents exactly like blocks, and remove all explicit lists (and just talk about blocks) elsewhere so we don't keep getting out-of-sync. http://lists.w3.org/Archives/Public/www-style/2010Aug/0399.html
;Resolution : Proposal accepted.
;Follow-up 1 : There is probably an [[http://lists.w3.org/Archives/Public/www-style/2010Oct/0044.html|error]] in the replacement text for bullet 2 in 10.2. Note that this replacement text anyway needs to change again, because of [[#issue-142|issue 142.]]
;Status : Closed.
;Testcases : n/a (editorial)
==== Issue 121 ====
;URL : http://lists.w3.org/Archives/Public/www-style/2009Mar/0004.html (Issue 9)
;Summary : Rewrite paragraph about lines being exactly 'line-height' to be accurate and precise
;Resolution : Assumed editorial.
;Proposal : http://lists.w3.org/Archives/Public/www-style/2010Aug/0411.html
;Status : Closed.
;Testcases : n/a (editorial)
==== Issue 122 ====
;URL : http://lists.w3.org/Archives/Public/www-style/2009May/0080.html http://lists.w3.org/Archives/Public/www-style/2009May/0082.html
;Summary : spec should not define "sans-serif" to mean something different from what it means to font designers
;Proposal : http://lists.w3.org/Archives/Public/www-style/2009May/0081.html
;Resolution : dbaron's proposal accepted
;Status : Closed.
;Testcases : n/a (editorial)
==== Issue 128 ====
;Summary : display: run-in needs clarification
;URL : http://lists.w3.org/Archives/Public/www-style/2009Jul/0025.html
;Resolution : http://lists.w3.org/Archives/Public/www-style/2009Nov/0249.html
;Status : Closed.
==== Issue 129 ====
;Summary : Reduce backup in tokenizer
;URL : http://lists.w3.org/Archives/Public/www-style/2009Jun/0164.html
;Proposal : http://lists.w3.org/Archives/Public/www-style/2009Jun/0164.html
;Resolution : Proposal accepted.
;Proposal : http://lists.w3.org/Archives/Public/www-style/2009Aug/0104.html
;Resolution : Change grammar to avoid backup.
;Proposal : http://lists.w3.org/Archives/Public/www-style/2010Aug/0368.html
;Testcase : http://lists.w3.org/Archives/Public/www-style/2010Aug/0417.html
;Resolution : Bert's proposal accepted. (and look at http://lists.w3.org/Archives/Public/www-style/2010Aug/0577.html)
;Status : Closed. =arronei= or =fantasai= Ensure testcase for u\rl(...) being invalid exists.
==== Issue 137 ===
;URL : http://lists.w3.org/Archives/Public/www-style/2009Sep/0247.html
;Summary : Do anonymous blocks become the containing block for floats or inline-blocks?
;Proposal : Percentage calculations ignore anonymous blocks. http://lists.w3.org/Archives/Public/www-style/2010Jul/0226.html
;Resolution : Proposal accepted.
;Status : Closed.
;Testcase : anonymous-boxes-001
==== Issue 138 ===
;URL : http://lists.w3.org/Archives/Public/www-style/2009Sep/0068.html
;URL : http://lists.w3.org/Archives/Public/www-style/2009Sep/0295.html
;Summary : Does relatively positioning a float's parent also offset the float?
;Proposal : http://lists.w3.org/Archives/Public/www-style/2010Jul/0329.html
;Resolution : Proposal accepted with s/block/inline/ at the very end.
;Status : Closed.
;Testcases : block-in-inline-relpos-001 and block-in-inline-relpos-002
==== Issue 139 ====
;URL : http://lists.w3.org/Archives/Public/www-style/2009Oct/0206.html
;Summary : The url token allows a backslash both as the first character in an {escape} and on its own. It should never be on its own.
;Proposal : Change to ''([!#$%&*-\[\]-~]|{nonascii}|{escape})*'' (see the e-mail)
;Status : Closed.
==== Issue 140 ====
;URL : http://lists.w3.org/Archives/Public/www-style/2009Oct/0262.html
;Summary : Error in core grammar wrt garbage input inside brackets
;Resolution : Accept in principle to change the grammar for 140 and note that we won't use the additional capabilities (exact wording tbd).
;Proposal : http://lists.w3.org/Archives/Public/www-style/2010Aug/0435.html
;Status : Closed.
==== Issue 143 ====
;URL : http://lists.w3.org/Archives/Public/www-style/2009Nov/0022.html
;Summary : unclear whether default attributes can be matched
;Proposal : http://lists.w3.org/Archives/Public/www-style/2009Nov/0047.html
;Resolution : Proposal accepted.
;Status : Closed.
;Testcases : default-attribute-selector-001 through default-attribute-selector-008
==== Issue 144 ====
;URL : http://lists.w3.org/Archives/Public/www-style/2009Nov/0200.html
;Summary : text-decoration and visibility
;Testcases : http://test.csswg.org/suites/css2.1/20100727/html4/chapter-16.html#s16.3.1 text-decoration-visibility-*
;Resolved : Leave undefined for CSS2.1. (Add note to clarify, TBD in CSS3.)
;Status : Closed.
==== Issue 145 ====
;URL : http://lists.w3.org/Archives/Public/www-style/2009Nov/0300.html
;Summary : wrt BIDI forced line breaks should act like LS not CR/LF
;Resolution : No change. Forced breaks are paragraph separators. Need clarification to text that LS's bidi behavior is not overridden.
;Proposal : http://lists.w3.org/Archives/Public/www-style/2010Jun/0459.html
;Resolution : Proposal accepted.
;Status : Closed.
;Testcases : bidi-breaking-001 and bidi-breaking-002
==== Issue 146 ====
;URL : http://lists.w3.org/Archives/Public/www-style/2009Dec/0052.html
;Summary : marker boxes should not be optional
;Resolution : Proposal accepted.
;Status : Closed.
;Testcases : n/a (editorial)
==== Issue 147 ====
;URL : http://lists.w3.org/Archives/Public/www-style/2009Nov/0324.html
;Summary : scaling of width of replaced elements ambiguous
;Resolved : Remove sentence pointed out in http://lists.w3.org/Archives/Public/www-style/2009Dec/0322.html
;Status : Closed.
;Testcases : n/a (editorial)
==== Issue 148 ====
;URL : http://lists.w3.org/Archives/Public/www-style/2010Jan/0432.html
;Summary : Add 'unicode-bidi: embed' to all block-level elements in the sample HTML4 style sheet
;Resolved : Proposal accepted.
;Status : Closed.
;Testcases : n/a (informative)
==== Issue 149 ====
;URL : http://lists.w3.org/Archives/Public/www-style/2010Jan/0058.html
;Summary : pt:px ratios other than based on 96dpi breaks web
;Proposal : Fix 96px per inch. Whether inches fixed to reality or pixels fixed to screen res / viewing distance / something else may vary by UA. (Print would match real inches, screens tend to align with viewing distance and/or screen res.)
;Proposed text : http://fantasai.inkedblade.net/style/specs/css2.1/px-unit
;Proposed text : http://fantasai.inkedblade.net/style/specs/css2.1/pt-unit
;Resolution : px-unit proposal accepted.
;Status : Closed.
;Testcase : Delete c61-phys-len-000.xht ; 96dpi assumption is made in many testcases doesn't need its own at this point.
==== Issue 150 ====
;URL : http://lists.w3.org/Archives/Public/www-style/2010Feb/0041.html (Issue 6)
;Summary : Change "Every CSS2.1 property" to "Every CSS property" in 4.1.8
;Resolution : Assumed editorial.
;Status : Closed.
;Testcases : n/a (editorial)
==== Issue 151 ====
;URL : http://www.w3.org/2010/03/11-fx-irc#T20-47-31
;Summary : Make non-presentational hints section workable for SVG
;Proposal : http://lists.w3.org/Archives/Public/www-style/2010Jun/0487.html [note: 6.4.4 example would also need an update]
;Resolution : Proposal accepted.
;Status : Closed.
;Testcases : n/a (editorial)
==== Issue 152 ====
;URL : http://lists.w3.org/Archives/Public/www-style/2010Mar/0175.html
;Summary : Don't require quoting of commas in URL tokens
;Resolution : Update prose to not require quoting of commas in URL tokens
;Status : Closed.
;Testcases : uri-014
==== Issue 155 ====
;URL : http://lists.w3.org/Archives/Public/www-style/2009Jun/0285.html
;Summary : Encoding errors in bibliography
;Resolution : Assumed editorial.
;Status : Closed.
;Testcases : n/a (editorial)
==== Issue 160 ====
;URL : http://lists.w3.org/Archives/Public/www-style/2009Feb/0637.html
;Summary : Specify whether first page is :left or :right?
;Proposal : http://lists.w3.org/Archives/Public/www-style/2010Jun/0493.html
;Resolution : Proposal accepted.
;Status : Closed.
;Testcases : first-page-selectors-001 through first-page-selectors-004
==== Issue 161 ====
;URL : http://lists.w3.org/Archives/Public/www-style/2009Feb/0308.html
;Summary : Sentence about clipping descendants is confusing, remove or clarify?
;Proposal : http://lists.w3.org/Archives/Public/www-style/2009Mar/0001.html + Replace sentence with "Note that absolutely positioned descendant elements are not always clipped by the overflow property on their ancestors." ?
;Resolution : Accepted change http://lists.w3.org/Archives/Public/www-style/2010Apr/0389.html
;Status : Closed.
;Testcases : n/a (editorial)
==== Issue 167 ====
;URL : http://lists.w3.org/Archives/Public/www-style/2010Feb/0150.html
;URL : http://lists.w3.org/Archives/Public/www-style/2010Feb/0210.html
;Summary : Backslash escapes poorly defined
;Old proposal : http://lists.w3.org/Archives/Public/www-style/2010Feb/0221.html
;Response to old proposal : http://lists.w3.org/Archives/Public/www-style/2010Jun/0658.html
;New Proposal : http://lists.w3.org/Archives/Public/www-style/2010Jul/0289.html + http://lists.w3.org/Archives/Public/www-style/2010Aug/0052.html
;Resolution : New proposal accepted with Bert's changes.
;Status : Closed.
==== Issue 168 ====
;URL : http://lists.w3.org/Archives/Public/www-style/2009Feb/0455.html
;Summary : Specify case of Armenian numbering
;Status : Closed.
;Testcases : list-style-type-armenian-001 and list-style-type-armenian-002
==== Issue 170 ====
;Summary : min-height / max-height on table rows and cells poorly defined
;URI : http://lists.w3.org/Archives/Public/www-style/2010Jun/0049.html http://lists.w3.org/Archives/Public/www-style/2010Jun/0443.html
;Resolution : Make min-height / max-height on table rows, cells, and rowgroups undefined.
;Status : Closed.
;Testcases : n/a (undefined)
==== Issue 171 ====
;Summary : box ancestry of list-style-position: inside marker undefined
;URI : http://lists.w3.org/Archives/Public/www-style/2010Jun/0494.html
;Notes : See CSS3 Lists
;Status : Closed.
;Testcases : list-style-position-inside-002
==== Issue 172 ====
;Summary : table-caption content overflows
;URI : http://lists.w3.org/Archives/Public/www-style/2010Jun/0404.html
;Proposal : http://lists.w3.org/Archives/Public/www-style/2010Sep/0186.html
;Resolution : Proposal accepted.
;Status : Closed. =fantasai= Testcase has been created and submitted.
;Testcases
* Width of anonymous table box versus caption box in the automatic table layout: anonymous-table-box-width-001 : http://test.csswg.org/suites/css2.1/nightly-unstable/html4/anonymous-table-box-width-001.htm
* http://www.gtalbot.org/BrowserBugsSection/css21testsuite/horizontal-layout-table-vs-caption-boxes-1.html
==== Issue 173 ====
;Summary : handling of carriage returns underdefined
;URI : http://lists.w3.org/Archives/Public/www-style/2010May/0158.html