forked from w3c/csswg-drafts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathissues-2012-2015.html
990 lines (960 loc) · 65.2 KB
/
issues-2012-2015.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
985
986
987
988
989
990
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Basic User Interface Module Level 3 (CSS3 UI) Disposition of Comments for 2015-05-19 WD</title>
<style type="text/css">
.a { background: lightgreen }
.d { background: lightblue }
.r { background: orange }
.fo { background: red }
.open { border: solid red; padding: 0.2em; }
:target { box-shadow: 0.25em 0.25em 0.25em; }
</style>
<h1>CSS Basic User Interface Module Level 3 (CSS3 UI) Disposition of Comments for 2015-05-19 WD</h1>
<p>Last call document: <a href="http://www.w3.org/TR/2015/WD-css3-ui-20150519/">http://www.w3.org/TR/2015/WD-css3-ui-20150519/</a>
<p>Editor's draft: <a href="http://dev.w3.org/csswg/css3-ui/">http://dev.w3.org/csswg/css3-ui/</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'>
Issue 1. <a href='#issue-1'>#</a>
Summary: css3-ui should have a test suite
From: Tantek Çelik
Resolved: LCWD has link to Test suite
Closed: Accepted</pre>
<pre class='a' id='issue-2'>
Issue 2. <a href='#issue-2'>#</a>
Summary: Change name/title of spec to be consistent with other CSS3 modules
From: Tantek Çelik
Resolved: Editorial
Closed: Accepted</pre>
<pre class='a' id='issue-3'>
Issue 3. <a href='#issue-3'>#</a>
Summary: ::value needs to specify which properties are allowed on that pseudo-element
From: Tab Atkins
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2010Mar/0158.html'>http://lists.w3.org/Archives/Public/www-style/2010Mar/0158.html</a>
Resolved: Specify the same properties that apply to ::first-line
Closed: Accepted
Note: Later made irrelevant since ::value was dropped</pre>
<pre class='d' id='issue-4'>
Issue 4. <a href='#issue-4'>#</a>
Summary: computed value of 'pointer-events' vs initial value vs SVG vs CSS3-UI conflict.
A quick test shows that IE9 and Opera return 'visiblePainted', while WebKit and Firefox return 'auto'.
From: Erik Dahlstrom
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2010Sep/0818.html'>http://lists.w3.org/Archives/Public/www-style/2010Sep/0818.html</a>
Closed: Deferred
Note: Pertains to a feature that was removed from css-ui level 3, potentially to be included in level 4</pre>
<pre class='d' id='issue-5'>
Issue 5. <a href='#issue-5'>#</a>
Summary: In SVG 1.1 the 'pointer-events' property only applies to 'graphics elements',
but in css3-ui it applies to all elements. Why?
From: Erik Dahlstrom, Kevin Ar18
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2010Sep/0818.html'>http://lists.w3.org/Archives/Public/www-style/2010Sep/0818.html</a>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2010Nov/0268.html'>http://lists.w3.org/Archives/Public/www-style/2010Nov/0268.html</a>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2010Nov/0304.html'>http://lists.w3.org/Archives/Public/www-style/2010Nov/0304.html</a>
Comment: <a href='http://www.w3.org/2010/09/27-fx-minutes.html#item03'>http://www.w3.org/2010/09/27-fx-minutes.html#item03</a>
Closed: Deferred
Note: Pertains to a feature that was removed from css-ui level 3, potentially to be included in level 4</pre>
<pre class='d' id='issue-6'>
Issue 6. <a href='#issue-6'>#</a>
Summary: Normatively reference SVG 1.1 for 'fill' and 'stroke' property definitions.
From: Erik Dahlstrom
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2010Sep/0818.html'>http://lists.w3.org/Archives/Public/www-style/2010Sep/0818.html</a>
Closed: Deferred
Note: Pertains to a feature that was removed from css-ui level 3, potentially to be included in level 4</pre>
<pre class='d' id='issue-7'>
Issue 7. <a href='#issue-7'>#</a>
Summary: The note about how 'fill' and 'stroke' don't affect the result for 'all' is missing
Compare with the SVG 1.1 pointer-events definition:
<a href='http://www.w3.org/TR/SVG11/interact.html#PointerEventsProperty'>http://www.w3.org/TR/SVG11/interact.html#PointerEventsProperty</a>
From: Erik Dahlstrom
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2010Sep/0818.html'>http://lists.w3.org/Archives/Public/www-style/2010Sep/0818.html</a>
Closed: Deferred
Note: Pertains to a feature that was removed from css-ui level 3, potentially to be included in level 4</pre>
<pre class='d' id='issue-8'>
Issue 8. <a href='#issue-8'>#</a>
Summary: pointer-events definition lacks many of the details from the SVG 1.1 specification
<a href='http://www.w3.org/TR/SVG11/interact.html#PointerEventsProperty,'>http://www.w3.org/TR/SVG11/interact.html#PointerEventsProperty,</a>
e.g how 'clip-path' and 'mask' affects pointer-events, how text elements are handled etc.
From: Erik Dahlstrom
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2010Sep/0818.html'>http://lists.w3.org/Archives/Public/www-style/2010Sep/0818.html</a>
Closed: Deferred
Note: Pertains to a feature that was removed from css-ui level 3, potentially to be included in level 4</pre>
<pre class='d' id='issue-9'>
Issue 9. <a href='#issue-9'>#</a>
Summary: How opacity (and other forms of alpha, e.g rgba, fill-opacity, stroke-opacity etc) affects 'pointer-events' is undefined.
From: Erik Dahlstrom
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2010Sep/0818.html'>http://lists.w3.org/Archives/Public/www-style/2010Sep/0818.html</a>
Closed: Deferred
Note: Pertains to a feature that was removed from css-ui level 3, potentially to be included in level 4</pre>
<pre class='d' id='issue-10'>
Issue 10. <a href='#issue-10'>#</a>
Summary: How 'clip-path', 'mask' and 'filter' affect 'pointer-events' is undefined.
From: Erik Dahlstrom
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2010Sep/0818.html'>http://lists.w3.org/Archives/Public/www-style/2010Sep/0818.html</a>
Closed: Deferred
Note: Pertains to a feature that was removed from css-ui level 3, potentially to be included in level 4</pre>
<pre class='d' id='issue-11'>
Issue 11. <a href='#issue-11'>#</a>
Summary: multiple issues from Kevin Ar18 2010-11-17
From: Kevin Ar18
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2010Nov/0257.html'>http://lists.w3.org/Archives/Public/www-style/2010Nov/0257.html</a>
Closed: Deferred
Note: Pertains to a feature that was removed from css-ui level 3, potentially to be included in level 4</pre>
<pre class='d' id='issue-12'>
Issue 12. <a href='#issue-12'>#</a>
Summary: what are effects of 'pointer-events' with regards to keyboard navigation?
From: Doug Schepers
Comment: <a href='http://lists.w3.org/Archives/Public/public-fx/2010OctDec/0106.html'>http://lists.w3.org/Archives/Public/public-fx/2010OctDec/0106.html</a>
Closed: Deferred
Note: Pertains to a feature that was removed from css-ui level 3, potentially to be included in level 4</pre>
<pre class='a' id='issue-13'>
Issue 13. <a href='#issue-13'>#</a>
Summary: should CSS3 UI (or some future version) incorporate a 'focusable' property (like in SVG)
From: Tantek Çelik
Closed: Deferred
Note: To be specified in CSS UI Level 4
Verified: Reporter is spec editor</pre>
<pre class='d' id='issue-14'>
Issue 14. <a href='#issue-14'>#</a>
Summary: example for 'appearance' values 'pop-up-menu' and 'radio-group' and 'list-menu'
should use same content to illustrate different visualizations for same semantics.
From: Charles Belov
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2010Nov/0189.html'>http://lists.w3.org/Archives/Public/www-style/2010Nov/0189.html</a>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2011Jan/0224.html'>http://lists.w3.org/Archives/Public/www-style/2011Jan/0224.html</a>
Closed: Deferred
Note: Pertains to a feature that was removed from css-ui level 3, potentially to be included in level 4</pre>
<pre class='d' id='issue-15'>
Issue 15. <a href='#issue-15'>#</a>
Summary: add second 'list-menu' example that shows multiselect behavior and use same content as 'checkbox-group'
From: Charles Belov
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2010Nov/0189.html'>http://lists.w3.org/Archives/Public/www-style/2010Nov/0189.html</a>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2011Jan/0224.html'>http://lists.w3.org/Archives/Public/www-style/2011Jan/0224.html</a>
Closed: Deferred
Note: Pertains to a feature that was removed from css-ui level 3, potentially to be included in level 4</pre>
<pre class='d' id='issue-16'>
Issue 16. <a href='#issue-16'>#</a>
Summary: What happens if a semantic single-select element is styled as appearance 'checkbox-group'?
From: Charles Belov
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2010Nov/0189.html'>http://lists.w3.org/Archives/Public/www-style/2010Nov/0189.html</a>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2011Jan/0224.html'>http://lists.w3.org/Archives/Public/www-style/2011Jan/0224.html</a>
Closed: Deferred
Note: Pertains to a feature that was removed from css-ui level 3, potentially to be included in level 4</pre>
<pre class='d' id='issue-17'>
Issue 17. <a href='#issue-17'>#</a>
Summary: What happens if a semantic multi-select element is styled as appearance 'radio-group' or 'pop-up-menu'?
From: Charles Belov
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2010Nov/0189.html'>http://lists.w3.org/Archives/Public/www-style/2010Nov/0189.html</a>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2011Jan/0224.html'>http://lists.w3.org/Archives/Public/www-style/2011Jan/0224.html</a>
Closed: Deferred
Note: Pertains to a feature that was removed from css-ui level 3, potentially to be included in level 4</pre>
<pre class='oi' id='issue-18'>
Issue 18. <a href='#issue-18'>#</a>
Summary: How does text-overflow:ellipsis work with overflow-style: marquee-line?
From: Andrew Fedoniouk
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2008Dec/0109.html'>http://lists.w3.org/Archives/Public/www-style/2008Dec/0109.html</a>
Comment: <a href='http://www.w3.org/TR/2008/CR-css3-marquee-20081205/#overflow-style'>http://www.w3.org/TR/2008/CR-css3-marquee-20081205/#overflow-style</a>
Closed: OutOfScope
Note: CSS3 Marquee has been retired, as nobody implemented it
and the WG does not encourage anyone to.
This clarification is therefore not longer needed,
and has been removed from the draft, along with all references to CSS3 Marquee</pre>
<pre class='d' id='issue-19'>
Issue 19. <a href='#issue-19'>#</a>
Summary: CSS3-UI should define 'overflow-x' and 'overflow-y' properties
From: David Hyatt / Tantek Çelik
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2010Nov/0049.html'>http://lists.w3.org/Archives/Public/www-style/2010Nov/0049.html</a>
Resolved: Defer to <a href='http://dev.w3.org/csswg/css-overflow/'>http://dev.w3.org/csswg/css-overflow/</a>
Closed: Deferred</pre>
<pre class='a' id='issue-20'>
Issue 20. <a href='#issue-20'>#</a>
Summary: text-overflow definition is ambiguous as to whether it applies to vertical overflow of text
From: Alan Hogan in private email to Tantek Çelik
; URL : <a href='http://dev.w3.org/csswg/css3-ui/#text-overflow0'>http://dev.w3.org/csswg/css3-ui/#text-overflow0</a>
; URL : <a href='http://dl.dropbox.com/u/105727/web/text-wrap-ellipsis.html'>http://dl.dropbox.com/u/105727/web/text-wrap-ellipsis.html</a>
Resolved: Bugfix
Closed: Accepted
Note: No one has implemented text-overflow
for anything other than inline progress.
Therefore we explicitly clarify this deatil.</pre>
<pre class='a' id='issue-21'>
Issue 21. <a href='#issue-21'>#</a>
Summary: text-overflow definition must include <string> value and 2 values option,
but with both explicitly at-risk.
From: CSS WG
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2011Jun/0329.html'>http://lists.w3.org/Archives/Public/www-style/2011Jun/0329.html</a>
Resolved: <a href='http://lists.w3.org/Archives/Public/www-style/2011Jun/0329.html'>http://lists.w3.org/Archives/Public/www-style/2011Jun/0329.html</a>
Closed: Accepted</pre>
<pre class='a' id='issue-22'>
Issue 22. <a href='#issue-22'>#</a>
Summary: How should text selection behave in the presence of a text-overflow ellipsis?
From: Tantek Çelik
Comment: <a href='http://www.w3.org/Style/CSS/Tracker/issues/279'>http://www.w3.org/Style/CSS/Tracker/issues/279</a>
Resolved: <a href='http://lists.w3.org/Archives/Public/www-style/2012Nov/0263.html'>http://lists.w3.org/Archives/Public/www-style/2012Nov/0263.html</a>
Closed: Accepted</pre>
<pre class='a' id='issue-23'>
Issue 23. <a href='#issue-23'>#</a>
Summary: Update CSS IS AWESOME example to show non-ellipsed last line.
From: Rossen
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2012Nov/0263.html'>http://lists.w3.org/Archives/Public/www-style/2012Nov/0263.html</a>
Resolved : Editorial (RESOLVED at 2012-10-30 TPAC CSSWG f2f meeting)
Closed: Accepted</pre>
<pre class='a' id='issue-24'>
Issue 24. <a href='#issue-24'>#</a>
Summary: Provide horizontal scrolling text-overflow example revealing more text that is elided
From: Tantek Çelik
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2009Nov/0219.html'>http://lists.w3.org/Archives/Public/www-style/2009Nov/0219.html</a>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Nov/0321.html'>http://lists.w3.org/Archives/Public/www-style/2014Nov/0321.html</a>
Resolved: Editorial
Closed: Accepted
Note: Was blocked by ambiguity in the spec, tracked as Issue 59, now resolved.</pre>
<pre class='a' id='issue-25'>
Issue 25. <a href='#issue-25'>#</a>
Summary: nav-index property is not well implemented, nor expected to be.
Also, is problematic (per similar issues on tabindex in HTML).
From: Tantek Çelik
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2012Oct/thread.html#msg468'>http://lists.w3.org/Archives/Public/www-style/2012Oct/thread.html#msg468</a>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2011Nov/0712.html'>http://lists.w3.org/Archives/Public/www-style/2011Nov/0712.html</a>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2011Nov/thread.html#msg440'>http://lists.w3.org/Archives/Public/www-style/2011Nov/thread.html#msg440</a> (continues following month)
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2011Nov/thread.html#msg441'>http://lists.w3.org/Archives/Public/www-style/2011Nov/thread.html#msg441</a> (continues following month)
Response: <a href='http://lists.w3.org/Archives/Public/www-style/2014Nov/0295.html'>http://lists.w3.org/Archives/Public/www-style/2014Nov/0295.html</a>
Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2014Nov/0401.html'>https://lists.w3.org/Archives/Public/www-style/2014Nov/0401.html</a>
Closed: Deferred
Verified: Reporter is spec editor</pre>
<pre class='a' id='issue-26'>
Issue 26. <a href='#issue-26'>#</a>
Summary: add 'cursor' values 'grab' and 'grabbing' per existing interop
support by Gecko and -webkit- prefixed in WebKit
From: Frank Yan / Tantek Çelik
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2013Apr/0058.html'>http://lists.w3.org/Archives/Public/www-style/2013Apr/0058.html</a>
Resolved: <a href='http://lists.w3.org/Archives/Public/www-style/2013Apr/0428.html'>http://lists.w3.org/Archives/Public/www-style/2013Apr/0428.html</a>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Nov/0319.html'>http://lists.w3.org/Archives/Public/www-style/2014Nov/0319.html</a>
Comment: <a href='https://bugzilla.mozilla.org/show_bug.cgi?id=880672'>https://bugzilla.mozilla.org/show_bug.cgi?id=880672</a>
Closed: Accepted</pre>
<pre class='a' id='issue-27'>
Issue 27. <a href='#issue-27'>#</a>
Summary: Specify that 'cursor' propagates from the root to the viewport
From: Tab Atkins
Comment: <a href='http://krijnhoetmer.nl/irc-logs/whatwg/20130523#l-684'>http://krijnhoetmer.nl/irc-logs/whatwg/20130523#l-684</a>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2013May/0301.html'>http://lists.w3.org/Archives/Public/www-style/2013May/0301.html</a>
Response: <a href='http://lists.w3.org/Archives/Public/www-style/2014Nov/0300.html'>http://lists.w3.org/Archives/Public/www-style/2014Nov/0300.html</a>
Resolved: Propagates from the root element to the viewport
Closed: Accepted</pre>
<pre class='a' id='issue-28'>
Issue 28. <a href='#issue-28'>#</a>
Summary: link to nav-* directional navigation tests from nav-* section, and in tests section in header
From: Tantek Çelik
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2013Nov/0271.html'>http://lists.w3.org/Archives/Public/www-style/2013Nov/0271.html</a>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Nov/0299.html'>http://lists.w3.org/Archives/Public/www-style/2014Nov/0299.html</a>
Comment: <a href='https://github.com/w3c/csswg-test/pull/372'>https://github.com/w3c/csswg-test/pull/372</a>
Resolved: Tests have been added to the test suite already,
which is linked from the spec.
Closed: Accepted</pre>
<pre class='a' id='issue-29'>
Issue 29. <a href='#issue-29'>#</a>
Summary: nav-* directional navigation properties definition prose fixes
From: Simon Sapin
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2013Oct/0102.html'>http://lists.w3.org/Archives/Public/www-style/2013Oct/0102.html</a>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Nov/0298.html'>http://lists.w3.org/Archives/Public/www-style/2014Nov/0298.html</a>
Reslolved: Editorial
Closed: Accepted</pre>
<pre class='a' id='issue-30'>
Issue 30. <a href='#issue-30'>#</a>
Summary: Re-add ::selection, define according to existing impl interop of ::selection
From: Tantek Çelik
Comment: <a href='http://www.w3.org/2013/12/11-css-irc#T18-01-59'>http://www.w3.org/2013/12/11-css-irc#T18-01-59</a>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2008Oct/0268.html'>http://lists.w3.org/Archives/Public/www-style/2008Oct/0268.html</a>
(list of questions/issues with ::selection)
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2013Dec/0240.html'>http://lists.w3.org/Archives/Public/www-style/2013Dec/0240.html</a>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Nov/thread.html#msg188'>http://lists.w3.org/Archives/Public/www-style/2014Nov/thread.html#msg188</a>
Resolved: <a href='http://www.w3.org/mid/CADhPm3vmeGC6ALFor-98+E8sa2EufvgcNGvGO0WAxjx7r75GzA@mail.gmail.com'>http://www.w3.org/mid/CADhPm3vmeGC6ALFor-98+E8sa2EufvgcNGvGO0WAxjx7r75GzA@mail.gmail.com</a>
Closed: Deferred
Verified: <a href='http://www.w3.org/mid/CADhPm3s4ZmQJVgJu3pAnnHH6Q0SU3B+t5MBkLhggfD7-J=xuqg@mail.gmail.com'>http://www.w3.org/mid/CADhPm3s4ZmQJVgJu3pAnnHH6Q0SU3B+t5MBkLhggfD7-J=xuqg@mail.gmail.com</a></pre>
<pre class='a' id='issue-31'>
Issue 31. <a href='#issue-31'>#</a>
Summary: add 'caret-color' property at risk to css3-ui
From: Andrey Rybka (Bloomberg) <arybka@bloomberg.net>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2011Nov/0772.html'>http://lists.w3.org/Archives/Public/www-style/2011Nov/0772.html</a> (Initial proposal)
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Aug/0236.html'>http://lists.w3.org/Archives/Public/www-style/2014Aug/0236.html</a>
Comment: <a href='https://bugzilla.mozilla.org/show_bug.cgi?id=1063162'>https://bugzilla.mozilla.org/show_bug.cgi?id=1063162</a> (Gecko intent)
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Sep/0172.html'>http://lists.w3.org/Archives/Public/www-style/2014Sep/0172.html</a>
Resolved: <a href='http://lists.w3.org/Archives/Public/www-style/2014Oct/0260.html'>http://lists.w3.org/Archives/Public/www-style/2014Oct/0260.html</a>
Closed: Accepted</pre>
<pre class='a' id='issue-32'>
Issue 32. <a href='#issue-32'>#</a>
Summary: use line box edge instead of block container edge for the purpose of determining text-overflow
From: David Baron
Comment: <a href='https://bugzilla.mozilla.org/show_bug.cgi?id=944200#c3'>https://bugzilla.mozilla.org/show_bug.cgi?id=944200#c3</a>
Response: <a href='http://lists.w3.org/Archives/Public/www-style/2014Feb/0140.html'>http://lists.w3.org/Archives/Public/www-style/2014Feb/0140.html</a>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Feb/0141.html'>http://lists.w3.org/Archives/Public/www-style/2014Feb/0141.html</a> (Tab says reasonable)
Comment: <a href='https://bugs.webkit.org/show_bug.cgi?id=115746'>https://bugs.webkit.org/show_bug.cgi?id=115746</a>
Resolved: Change the opening sentence of text-overflow section
from "overflows its block container element" to "overflows its line box edge",
and any other similar references to block container edge to line box edge.
Closed: Accepted
Note: Effective consensus from Webkit (per their fix of 115746),
Chrome (Tab's email), and Gecko (per 944200 discussion).</pre>
<pre class='a' id='issue-33'>
Issue 33. <a href='#issue-33'>#</a>
Summary: In the description of the <target-name> parameter of the nav-*
properties, the word string should be replaced by <string>
From: Kang-Hao (Kenny) Lu <kennyluck@csail.mit.edu>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2012Feb/0708.html'>http://lists.w3.org/Archives/Public/www-style/2012Feb/0708.html</a>
Response: <a href='http://lists.w3.org/Archives/Public/www-style/2014Nov/0442.html'>http://lists.w3.org/Archives/Public/www-style/2014Nov/0442.html</a>
Resolved: Editorial
Closed: Accepted</pre>
<pre class='a' id='issue-34'>
Issue 34. <a href='#issue-34'>#</a>
Summary: The text-overflow property definition uses () for grouping, but we should use []
From: Kang-Hao (Kenny) Lu <kennyluck@csail.mit.edu>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2012Feb/0808.html'>http://lists.w3.org/Archives/Public/www-style/2012Feb/0808.html</a>
Resolved: Editorial
Closed: Accepted</pre>
<pre class='oi' id='issue-35'>
Issue 35. <a href='#issue-35'>#</a>
Summary: Editorial: distinguishing public web sites from web applications is non obvious
From: Kang-Hao (Kenny) Lu <kennyluck@csail.mit.edu>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2012Feb/0808.html'>http://lists.w3.org/Archives/Public/www-style/2012Feb/0808.html</a>
Response: <a href='http://lists.w3.org/Archives/Public/www-style/2014Dec/0072.html'>http://lists.w3.org/Archives/Public/www-style/2014Dec/0072.html</a>
Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2015Jan/0581.html'>https://lists.w3.org/Archives/Public/www-style/2015Jan/0581.html</a>
Resolved: The entire feature is being dropped, comment no longer relevant
Closed: OutOfScope</pre>
<pre class='a' id='issue-36'>
Issue 36. <a href='#issue-36'>#</a>
Summary: "Content" properties for several input elements are locale specific
From: Kang-Hao (Kenny) Lu <kennyluck@csail.mit.edu>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2012Feb/0808.html'>http://lists.w3.org/Archives/Public/www-style/2012Feb/0808.html</a>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Nov/0444.html'>http://lists.w3.org/Archives/Public/www-style/2014Nov/0444.html</a>
Resolved: Editorial
Closed: Accepted</pre>
<pre class='a' id='issue-37'>
Issue 37. <a href='#issue-37'>#</a>
Summary: spec differs from implementations
regarding whether resize only applies in 1 dimension
if overflow-x or -y is visible in one of the dimensions.
From: Kang-Hao (Kenny) Lu <kennyluck@csail.mit.edu>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2012Feb/0713.html'>http://lists.w3.org/Archives/Public/www-style/2012Feb/0713.html</a>
Response: <a href='http://lists.w3.org/Archives/Public/www-style/2014Nov/0445.html'>http://lists.w3.org/Archives/Public/www-style/2014Nov/0445.html</a>
Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2014Nov/0553.html'>https://lists.w3.org/Archives/Public/www-style/2014Nov/0553.html</a>
Closed: Accepted</pre>
<pre class='a' id='issue-38'>
Issue 38. <a href='#issue-38'>#</a>
Summary: what to do if outline-offset is negative, especially to the point
that the offset is more than half the element size or similar values that make
it impossible to draw?
From: Kang-Hao (Kenny) Lu <kennyluck@csail.mit.edu>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2012Feb/0601.html'>http://lists.w3.org/Archives/Public/www-style/2012Feb/0601.html</a>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Nov/0449.html'>http://lists.w3.org/Archives/Public/www-style/2014Nov/0449.html</a>
Response: <a href='http://lists.w3.org/Archives/Public/www-style/2014Dec/0033.html'>http://lists.w3.org/Archives/Public/www-style/2014Dec/0033.html</a>
Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2015Jan/0581.html'>https://lists.w3.org/Archives/Public/www-style/2015Jan/0581.html</a>
Closed: Accepted</pre>
<pre class='oi' id='issue-39'>
Issue 39. <a href='#issue-39'>#</a>
Summary: Various issues with ime-mode
From: Kang-Hao (Kenny) Lu <kennyluck@csail.mit.edu>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2012Feb/0759.html'>http://lists.w3.org/Archives/Public/www-style/2012Feb/0759.html</a>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Dec/0072.html'>http://lists.w3.org/Archives/Public/www-style/2014Dec/0072.html</a>
Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2015Jan/0581.html'>https://lists.w3.org/Archives/Public/www-style/2015Jan/0581.html</a>
Resolved: The entire feature is being dropped, comments no longer relevant
Closed: OutOfScope</pre>
<pre class='a' id='issue-40'>
Issue 40. <a href='#issue-40'>#</a>
Summary: ime-mode is windows specific and bad design, and should not be
standardized. (has replacement suggestion)
From: Masayuki Nakano <masayuki@d-toybox.com> and James Craig <jcraig@apple.com>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2012Feb/0959.html'>http://lists.w3.org/Archives/Public/www-style/2012Feb/0959.html</a>
(Gecko ime-mode implementer saying should not be standardized)
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2013May/0075.html'>http://lists.w3.org/Archives/Public/www-style/2013May/0075.html</a>
Response: <a href='http://lists.w3.org/Archives/Public/www-style/2014Dec/0072.html'>http://lists.w3.org/Archives/Public/www-style/2014Dec/0072.html</a>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Dec/0090.html'>http://lists.w3.org/Archives/Public/www-style/2014Dec/0090.html</a>
Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2015Jan/0581.html'>https://lists.w3.org/Archives/Public/www-style/2015Jan/0581.html</a>
Closed: Accepted</pre>
<pre class='a' id='issue-41'>
Issue 41. <a href='#issue-41'>#</a>
Summary: The 'inherit' value is globally defined for all properties,
and the preferred style appears to be to omit it in property definitions.
From: Tab Atkins
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2011Jul/0202.html'>http://lists.w3.org/Archives/Public/www-style/2011Jul/0202.html</a>
Resolved: Editorial
Closed: Accepted</pre>
<pre class='a' id='issue-42'>
Issue 42. <a href='#issue-42'>#</a>
Summary: drop “inverted” from outline-color, webkit and gecko don’t do it
From: Tab Atkins
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2011Jul/0202.html'>http://lists.w3.org/Archives/Public/www-style/2011Jul/0202.html</a>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Nov/0493.html'>http://lists.w3.org/Archives/Public/www-style/2014Nov/0493.html</a>
Resolved: <a href='http://lists.w3.org/Archives/Public/www-style/2014Dec/0067.html'>http://lists.w3.org/Archives/Public/www-style/2014Dec/0067.html</a>
Closed: Rejected
Note: Kept normative text the same as the behavior is optional,
but made editorial improvements clarifying what non-supporting UAs should do.
Verified: Reporter is CSSWG member present when resolving</pre>
<pre class='a' id='issue-43'>
Issue 43. <a href='#issue-43'>#</a>
Summary: Add note or author conformance requirement
to not make outlines invisible on focusable elements,
for accessibility reasons
From: Michael Cooper <cooper@w3.org>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2012Feb/1213.html'>http://lists.w3.org/Archives/Public/www-style/2012Feb/1213.html</a>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Nov/0494.html'>http://lists.w3.org/Archives/Public/www-style/2014Nov/0494.html</a>
Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2014Dec/0067.html'>https://lists.w3.org/Archives/Public/www-style/2014Dec/0067.html</a>
Closed: Accepted</pre>
<pre class='a' id='issue-44'>
Issue 44. <a href='#issue-44'>#</a>
Summary: use <image> instead <uri> in the cursor property,
like <a href='http://www.w3.org/TR/css3-background/#value-types.'>http://www.w3.org/TR/css3-background/#value-types.</a>
Allows high res images with image-set, gradients…
From: Fantasai (responding to Tab Atkins) and Rick Byers
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2011Jul/0202.html'>http://lists.w3.org/Archives/Public/www-style/2011Jul/0202.html</a>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2012Jul/0140.html'>http://lists.w3.org/Archives/Public/www-style/2012Jul/0140.html</a>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Nov/0496.html'>http://lists.w3.org/Archives/Public/www-style/2014Nov/0496.html</a>
Resolved: <a href='http://lists.w3.org/Archives/Public/www-style/2014Dec/0067.html'>http://lists.w3.org/Archives/Public/www-style/2014Dec/0067.html</a>
Closed: Accepted</pre>
<pre class='a' id='issue-45'>
Issue 45. <a href='#issue-45'>#</a>
Summary: include an example highlighting the <target> part of the nav-* syntax. Suggestion: nav-up: #foo "bar"
From: Yves Lafon
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2012Oct/0499.html'>http://lists.w3.org/Archives/Public/www-style/2012Oct/0499.html</a>
Resolved: Editorial
Closed: Accepted</pre>
<pre class='a' id='issue-46'>
Issue 46. <a href='#issue-46'>#</a>
Summary: what happens if <x> and <y> are out of bounds for the cursor property
From: Kang-Hao (Kenny) Lu and Tab Atkins
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2012Feb/0712.html'>http://lists.w3.org/Archives/Public/www-style/2012Feb/0712.html</a>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2012Nov/0331.html'>http://lists.w3.org/Archives/Public/www-style/2012Nov/0331.html</a>
Response: <a href='http://lists.w3.org/Archives/Public/www-style/2014Nov/0501.html'>http://lists.w3.org/Archives/Public/www-style/2014Nov/0501.html</a>
Resolved: Clamp, independently.
Closed: Accepted</pre>
<pre class='a' id='issue-47'>
Issue 47. <a href='#issue-47'>#</a>
Summary: The specced 'resize' property's behavior is *completely* different
from the behavior implemented in browsers supporting the property
From: François Remy
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2012Dec/0221.html'>http://lists.w3.org/Archives/Public/www-style/2012Dec/0221.html</a>
Response: <a href='http://lists.w3.org/Archives/Public/www-style/2014Dec/0063.html'>http://lists.w3.org/Archives/Public/www-style/2014Dec/0063.html</a>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Dec/0177.html'>http://lists.w3.org/Archives/Public/www-style/2014Dec/0177.html</a>
Response: <a href='https://lists.w3.org/Archives/Public/www-style/2015Feb/0149.html'>https://lists.w3.org/Archives/Public/www-style/2015Feb/0149.html</a>
Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2015Mar/0314.html'>https://lists.w3.org/Archives/Public/www-style/2015Mar/0314.html</a>
Closed: Accepted</pre>
<pre class='a' id='issue-48'>
Issue 48. <a href='#issue-48'>#</a>
Summary: description of cursor: auto insufficient and not interoperable
From: David Baron
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2013Jan/0275.html'>http://lists.w3.org/Archives/Public/www-style/2013Jan/0275.html</a>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Nov/0531.html'>http://lists.w3.org/Archives/Public/www-style/2014Nov/0531.html</a>
Response: <a href='https://lists.w3.org/Archives/Public/www-style/2015Feb/0039.html'>https://lists.w3.org/Archives/Public/www-style/2015Feb/0039.html</a>
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Feb/0182.html'>https://lists.w3.org/Archives/Public/www-style/2015Feb/0182.html</a>
(issues, and previous in this thread too)
Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2015Mar/0314.html'>https://lists.w3.org/Archives/Public/www-style/2015Mar/0314.html</a>
Closed: Accepted</pre>
<pre class='r' id='issue-49'>
Issue 49. <a href='#issue-49'>#</a>
Summary: there is no interop between UAs about showing tooltips of the ellipsed text
From: Philip Walton
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2013Apr/0013.html'>http://lists.w3.org/Archives/Public/www-style/2013Apr/0013.html</a>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Nov/0532.html'>http://lists.w3.org/Archives/Public/www-style/2014Nov/0532.html</a>
Resolved: <a href='http://www.w3.org/mid/CADhPm3vR=hZWgbq8xrCsxR4YhKnFzi0gEzR-3pa7s_tToY62ig@mail.gmail.com'>http://www.w3.org/mid/CADhPm3vR=hZWgbq8xrCsxR4YhKnFzi0gEzR-3pa7s_tToY62ig@mail.gmail.com</a>
Response: <a href='http://lists.w3.org/Archives/Public/www-style/2014Dec/0061.html'>http://lists.w3.org/Archives/Public/www-style/2014Dec/0061.html</a>
Closed: Rejected</pre>
<pre class='a' id='issue-50'>
Issue 50. <a href='#issue-50'>#</a>
Summary: Add user-select back to css-ui, it has 3 implementations
From: Tab Atkins and Theresa O'Connor
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2013Apr/0537.html'>http://lists.w3.org/Archives/Public/www-style/2013Apr/0537.html</a>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2012Jul/0541.html'>http://lists.w3.org/Archives/Public/www-style/2012Jul/0541.html</a>
Response: <a href='http://lists.w3.org/Archives/Public/www-style/2014Nov/0536.html'>http://lists.w3.org/Archives/Public/www-style/2014Nov/0536.html</a>
Response: <a href='http://www.w3.org/mid/C05EA97A-11FE-42A4-85CC-0D69566E21DF@rivoal.net'>http://www.w3.org/mid/C05EA97A-11FE-42A4-85CC-0D69566E21DF@rivoal.net</a>
Resolved: <a href='http://www.w3.org/mid/CAEV2_WbUW=Et8PZreXbi1oNruE3ekF8=yETbkogXtvojvUa_=A@mail.gmail.com'>http://www.w3.org/mid/CAEV2_WbUW=Et8PZreXbi1oNruE3ekF8=yETbkogXtvojvUa_=A@mail.gmail.com</a>
Closed: Deferred
Verified: <a href='http://www.w3.org/mid/CAAWBYDBMdN5fjvuCeYY+q-jg4dh2Rubmcnu7Ucj=mGOozVp6+A@mail.gmail.com'>http://www.w3.org/mid/CAAWBYDBMdN5fjvuCeYY+q-jg4dh2Rubmcnu7Ucj=mGOozVp6+A@mail.gmail.com</a>
Note: Added to level 4 <a href='http://dev.w3.org/csswg/css-ui-4/#content-selection'>http://dev.w3.org/csswg/css-ui-4/#content-selection</a></pre>
<pre class='a' id='issue-51'>
Issue 51. <a href='#issue-51'>#</a>
Summary: applying transforms to the outline is weird, especially in 3d.
From: Florian Rivoal
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2013Aug/0423.html'>http://lists.w3.org/Archives/Public/www-style/2013Aug/0423.html</a>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Dec/0134.html'>http://lists.w3.org/Archives/Public/www-style/2014Dec/0134.html</a>
Comment: <a href='http://florian.rivoal.net/csswg/outline.html'>http://florian.rivoal.net/csswg/outline.html</a>
(test case that demonstrates applying transforms to outlines behaving strangely)
Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2015Mar/0314.html'>https://lists.w3.org/Archives/Public/www-style/2015Mar/0314.html</a>
Closed: Deferred
Verified: Reporter is spec editor</pre>
<pre class='a' id='issue-52'>
Issue 52. <a href='#issue-52'>#</a>
Summary: behavior of resize on pseudo-elements buggy and ambiguously defined
From: Lea Verou
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Jul/0477.html'>http://lists.w3.org/Archives/Public/www-style/2014Jul/0477.html</a>
Comment: <a href='http://dabblet.com/gist/ab432c3f6a8f672cd077'>http://dabblet.com/gist/ab432c3f6a8f672cd077</a>
(test case demonstrating non-interop / buggy behavior)
Resolved: <a href='http://www.w3.org/mid/CADhPm3vN8CwXDRM1N=9Pf8f1f906xwp2t6CfTjBYu=y_oV+v8Q@mail.gmail.com'>http://www.w3.org/mid/CADhPm3vN8CwXDRM1N=9Pf8f1f906xwp2t6CfTjBYu=y_oV+v8Q@mail.gmail.com</a>
Closed: Accepted</pre>
<pre class='a' id='issue-53'>
Issue 53. <a href='#issue-53'>#</a>
Summary: resize factor behaviour is weird when width / height are later dynamically modified
From: Lea Verou
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Jul/0517.html'>http://lists.w3.org/Archives/Public/www-style/2014Jul/0517.html</a>
; URL : <a href='http://lists.w3.org/Archives/Public/www-style/2014Dec/0063.html'>http://lists.w3.org/Archives/Public/www-style/2014Dec/0063.html</a>
Resolved: Add proposed text from 0063.html, "allows the user to
resize the element with no other constraints than what is imposed by min-width
and max-width" - note at risk since FF only, link to 0063.html email with
analysis.
Closed: Accepted</pre>
<pre class='a' id='issue-54'>
Issue 54. <a href='#issue-54'>#</a>
Summary: Can text-overflow ellipsis not break in the middle of a word?
From: Stuart Langridge
Comment: <a href='https://twitter.com/sil/status/537627213789949952'>https://twitter.com/sil/status/537627213789949952</a>
Closed: Accepted
Resolved: Add to spec "Implementations may ellipse at a text wrap opportunity instead of a character boundary."
Note: Later overturned, per issue 76.</pre>
<pre class='a' id='issue-55'>
Issue 55. <a href='#issue-55'>#</a>
Summary: Outline has a very loose definition, and significant interop problems. Should we tighten it up?
From: Florian Rivoal
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Dec/0134.html'>http://lists.w3.org/Archives/Public/www-style/2014Dec/0134.html</a>
Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2015Mar/0314.html'>https://lists.w3.org/Archives/Public/www-style/2015Mar/0314.html</a>
Closed: Deferred
Verified: Reporter is spec editor</pre>
<pre class='a' id='issue-56'>
Issue 56. <a href='#issue-56'>#</a>
Summary: WG resolved to make outline corners rounded to match borders,
but it was only lightly discussed, and not obvious how that should work
From: Florian Rivoal
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Dec/0145.html'>http://lists.w3.org/Archives/Public/www-style/2014Dec/0145.html</a>
Resolved: "To the extent that the outline follows the border edge,
it should follow the border-radius curve"
Closed: Accepted</pre>
<pre class='a' id='issue-57'>
Issue 57. <a href='#issue-57'>#</a>
Summary: the default object size for cursors is defined in CSS2.1,
but not in CSS3-UI, which replaces it
From: Tab Atkins
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2010Dec/0080.html'>http://lists.w3.org/Archives/Public/www-style/2010Dec/0080.html</a>
Resolved: Bugfix
Closed: Accepted</pre>
<pre class='a' id='issue-58'>
Issue 58. <a href='#issue-58'>#</a>
Summary: border box is a well defined term. Let's use it.
From: Fantasai
Comment: <a href='http://www.w3.org/mid/4BF38810.2060005@inkedblade.net'>http://www.w3.org/mid/4BF38810.2060005@inkedblade.net</a>
Resolved: Bugfix
Closed: Accepted</pre>
<pre class='a' id='issue-59'>
Issue 59. <a href='#issue-59'>#</a>
Summary: Spec is ambiguous as to what happens
when the start of the line overflows
with a single value used on text-overflow
From: Florian Rivoal
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Nov/0321.html'>http://lists.w3.org/Archives/Public/www-style/2014Nov/0321.html</a> (see point #2)
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2011Sep/0504.html'>http://lists.w3.org/Archives/Public/www-style/2011Sep/0504.html</a> (webcompat single value end only)
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Nov/0342.html'>http://lists.w3.org/Archives/Public/www-style/2014Nov/0342.html</a> (Gecko preference in agreement)
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Nov/0346.html'>http://lists.w3.org/Archives/Public/www-style/2014Nov/0346.html</a> (Google pref in agreement)
Resolved: clear ambiguity to say that single value only causes ellipsis at the end line edge.
Closed: Accepted</pre>
<pre class='a' id='issue-60'>
Issue 60. <a href='#issue-60'>#</a>
Summary: Information about when the resize factor gets reset is not sufficiently specific
From: Boris Zbarsky
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2004May/0222.html'>http://lists.w3.org/Archives/Public/www-style/2004May/0222.html</a>
Resolved: Bugfix
Closed: Accepted</pre>
<pre class='a' id='issue-61'>
Issue 61. <a href='#issue-61'>#</a>
Summary: Cross reference should be updated to css3-background instead of css2.1
From: Florian Rivoal
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Nov/0263.html'>http://lists.w3.org/Archives/Public/www-style/2014Nov/0263.html</a>
Resolved: Editorial
Closed: Accepted</pre>
<pre class='a' id='issue-62'>
Issue 62. <a href='#issue-62'>#</a>
Summary: Overview is redundant with Introduction, and introduction contains out of date sentence.
From: Florian
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Nov/0434.html'>http://lists.w3.org/Archives/Public/www-style/2014Nov/0434.html</a>
Resloved: Editorial
Closed: Accepted</pre>
<pre class='a' id='issue-63'>
Issue 63. <a href='#issue-63'>#</a>
Summary: Section "Dependencies on other modules" is redundant with bibliography,
but normative "Module interactions" section defining what the spec replaces is missing
From: Florian
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Nov/0433.html'>http://lists.w3.org/Archives/Public/www-style/2014Nov/0433.html</a>
Resolved: Editorial
Closed: Accepted</pre>
<pre class='a' id='issue-64'>
Issue 64. <a href='#issue-64'>#</a>
Summary: Drop the icon property and the icon value of the content property,
they are not implemented.
From: Florian Rivoal
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Nov/0230.html'>http://lists.w3.org/Archives/Public/www-style/2014Nov/0230.html</a>
Closed: Accepted</pre>
<pre class='a' id='issue-65'>
Issue 65. <a href='#issue-65'>#</a>
Summary: Drop the XForms related pseudo-elements
From: Florian Rivoal
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Nov/0229.html'>http://lists.w3.org/Archives/Public/www-style/2014Nov/0229.html</a>
Closed: Accepted
Note: kept ::value and ::choices because they apply to HTML (especially HTML5),
and <a href='https://bugzilla.mozilla.org/show_bug.cgi?id=648643'>https://bugzilla.mozilla.org/show_bug.cgi?id=648643</a> Mozilla has an open bug
to implement them. Later removed by Issue 71. <a href='#issue-71'>#</a></pre>
<pre class='a' id='issue-66'>
Issue 66. <a href='#issue-66'>#</a>
Summary: Drop the pseudo-classes, they have a more up to date definition in selectors 4
From: Florian Rivoal
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Nov/0228.html'>http://lists.w3.org/Archives/Public/www-style/2014Nov/0228.html</a>
Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2014Nov/0401.html'>https://lists.w3.org/Archives/Public/www-style/2014Nov/0401.html</a>
Closed: Accepted</pre>
<pre class='a' id='issue-67'>
Issue 67. <a href='#issue-67'>#</a>
Summary: Editorial improvement to clarify where the outline is
From: Axel Dahmen
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Dec/0104.html'>http://lists.w3.org/Archives/Public/www-style/2014Dec/0104.html</a>
Resolved: Editorial
Closed: Accepted</pre>
<pre class='a' id='issue-68'>
Issue 68. <a href='#issue-68'>#</a>
Summary: apply text-overflow even when overflow is visible?
From: Mats Palmgren, Florian Rivoal
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Nov/0425.html'>http://lists.w3.org/Archives/Public/www-style/2014Nov/0425.html</a>
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2015Jan/0048.html'>http://lists.w3.org/Archives/Public/www-style/2015Jan/0048.html</a>
Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2015Mar/0314.html'>https://lists.w3.org/Archives/Public/www-style/2015Mar/0314.html</a>
Closed: Rejected
Verified: Florian is spec Editor, Mats is from Mozilla who was represented during discussion</pre>
<pre class='a' id='issue-69'>
Issue 69. <a href='#issue-69'>#</a>
Summary: box-sizing insufficiently specified for replaced elements
From: Boris Zbarsky
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2011Jul/0232.html'>http://lists.w3.org/Archives/Public/www-style/2011Jul/0232.html</a>
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2011Jul/att-0232/test.html'>https://lists.w3.org/Archives/Public/www-style/2011Jul/att-0232/test.html</a>
(test case from Boris, 100px intrinsic size, max-height 100, borders 40 + 40)
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Feb/0243.html'>https://lists.w3.org/Archives/Public/www-style/2015Feb/0243.html</a>
(two test pages, 3 tests each with/without box-sizing of SVG embedded images with intrinsic width and/or ratio.)
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Feb/0245.html'>https://lists.w3.org/Archives/Public/www-style/2015Feb/0245.html</a>
(box-sizing test with different border-width and max-height values)
Response: <a href='https://lists.w3.org/Archives/Public/www-style/2015Feb/0445.html'>https://lists.w3.org/Archives/Public/www-style/2015Feb/0445.html</a>
Resolution: <a href='https://lists.w3.org/Archives/Public/www-style/2015Apr/0144.html'>https://lists.w3.org/Archives/Public/www-style/2015Apr/0144.html</a>
Closed: Accepted</pre>
<pre class='a' id='issue-70'>
Issue 70. <a href='#issue-70'>#</a>
Summary: CSS3-UI defines the 'default object size' for cursors,
but not the 'concrete object size'
From: Tab Atkins
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2015Jan/0163.html'>http://lists.w3.org/Archives/Public/www-style/2015Jan/0163.html</a>
Resolved: Bugfix
Closed: Accepted</pre>
<pre class='a' id='issue-71'>
Issue 71. <a href='#issue-71'>#</a>
Summary: WG resolved to drop all XForms related pseudo elements from CSS-UI,
but ::value and ::choices were retained,
as they apply to HTML in addition to XForms as they were initially specified for.
However, they are not implemented anywhere,
and it is not clear that they effectively solve the problem they were introduced for.
From: Florian Rivoal
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2014Nov/0401.html'>https://lists.w3.org/Archives/Public/www-style/2014Nov/0401.html</a>
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Jan/0046.html'>https://lists.w3.org/Archives/Public/www-style/2015Jan/0046.html</a>
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Jan/0280.html'>https://lists.w3.org/Archives/Public/www-style/2015Jan/0280.html</a>
Closed: Accepted</pre>
<pre class='a' id='issue-72'>
Issue 72. <a href='#issue-72'>#</a>
Summary: All browsers should be treated equally with regards to obsoleting the 'ime-mode' property,
instead of saying "must not add support" for those that don't have it
but "should drop support" for those that do.
From: David Baron (in telcon)
Comment: <a href='http://www.w3.org/mid/CADhPm3uJkugzOcz-vaKXkFMGik=R2AXwxLmXaFtUj3E_HRnsyA@mail.gmail.com'>http://www.w3.org/mid/CADhPm3uJkugzOcz-vaKXkFMGik=R2AXwxLmXaFtUj3E_HRnsyA@mail.gmail.com</a>
Comment: <a href='http://krijnhoetmer.nl/irc-logs/css/20150128#l-605'>http://krijnhoetmer.nl/irc-logs/css/20150128#l-605</a>
Resolved: Bugfix
Closed: Accepted</pre>
<pre class='a' id='issue-73'>
Issue 73. <a href='#issue-73'>#</a>
Summary: Support for negative outline-offset is marked as optional and at-risk.
However, all browsers that support outline-offset support negative values.
The only issue was the lack of interop for large negative values.
The new spec prose introduced to define interoperable behavior is fine.
From: Florian Rivoal
Comment: <a href='http://www.w3.org/mid/CADhPm3uJkugzOcz-vaKXkFMGik=R2AXwxLmXaFtUj3E_HRnsyA@mail.gmail.com'>http://www.w3.org/mid/CADhPm3uJkugzOcz-vaKXkFMGik=R2AXwxLmXaFtUj3E_HRnsyA@mail.gmail.com</a>
Resolved: Reduce scope of "at-risk"
Closed: Accepted</pre>
<pre class='a' id='issue-74'>
Issue 74. <a href='#issue-74'>#</a>
Summary: The phrasing of what happens with large negative values
in the outline-offset property is unclear,
and makes it sound like we should keep a blank space
of outline-width * 2 inside the outline at minimum.
From: Fantasai
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Jan/0581.html'>https://lists.w3.org/Archives/Public/www-style/2015Jan/0581.html</a>
Resolved: Clarify that outline-width * 2 is the outside dimension of the shape, wording up to editor.
Closed: Accepted</pre>
<pre class='a' id='issue-75'>
Issue 75. <a href='#issue-75'>#</a>
Summary: As we mark ime-mode as obsolete, we should point readers of the
spec to the alternative ways to address the issue that ime-mode was attempting
to solve.
From: Florian Rivoal
Comment: <a href='http://logs.csswg.org/irc.w3.org/css/2015-01-28/#e513809'>http://logs.csswg.org/irc.w3.org/css/2015-01-28/#e513809</a>
Resolved: Editorial
Closed: Accepted</pre>
<pre class='a' id='issue-76'>
Issue 76. <a href='#issue-76'>#</a>
Summary: the change introduced to address [[#Issue 54]] causes problems with bidi,
scrolling, and is not necessarily an improvement anyway
From: Florian Rivoal
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Feb/0007.html'>https://lists.w3.org/Archives/Public/www-style/2015Feb/0007.html</a>
Resolved: <a href='http://www.w3.org/mid/CADhPm3vN8CwXDRM1N=9Pf8f1f906xwp2t6CfTjBYu=y_oV+v8Q@mail.gmail.com'>http://www.w3.org/mid/CADhPm3vN8CwXDRM1N=9Pf8f1f906xwp2t6CfTjBYu=y_oV+v8Q@mail.gmail.com</a>
Closed: Accepted
Note: Reverts resolution Issue 54. <a href='#issue-54'>#</a></pre>
<pre class='a' id='issue-77'>
Issue 77. <a href='#issue-77'>#</a>
Summary: text-overflow: clip should not clip at the end of the line box
From: Florian Rivoal
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Feb/0342.html'>https://lists.w3.org/Archives/Public/www-style/2015Feb/0342.html</a>
Resolved: Bugfix
Closed: Accepted</pre>
<pre class='a' id='issue-78'>
Issue 78. <a href='#issue-78'>#</a>
Summary: Clarify that the :focus pseudo class matches
when the focus is move to an element using the directional navigation properties,
even if that element cannot otherwise be focused.
From: Florian Rivoal
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Feb/0344.html'>https://lists.w3.org/Archives/Public/www-style/2015Feb/0344.html</a>
Resolved: <a href='http://www.w3.org/mid/CADhPm3s8NnMe1v6f4GY02xoBbTs9f_oo133knvn94tEZVx_oWw@mail.gmail.com'>http://www.w3.org/mid/CADhPm3s8NnMe1v6f4GY02xoBbTs9f_oo133knvn94tEZVx_oWw@mail.gmail.com</a>
Closed: Accepted</pre>
<pre class='a' id='issue-79'>
Issue 79. <a href='#issue-79'>#</a>
Summary: CSS3-UI "does not define" stacking behavior of outlines,
but CSS2.1 and css-position do. Clarify.
From: Florian Rivoal
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Feb/0357.html'>https://lists.w3.org/Archives/Public/www-style/2015Feb/0357.html</a>
Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2015Feb/0494.html'>https://lists.w3.org/Archives/Public/www-style/2015Feb/0494.html</a>
Closed: Accepted</pre>
<pre class='a' id='issue-80'>
Issue 80. <a href='#issue-80'>#</a>
Summary: "Should drop ime-mode ASAP" is too strong as long as a better alternative has not been standardised
From: Masayuki Nakano
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Feb/0530.html'>https://lists.w3.org/Archives/Public/www-style/2015Feb/0530.html</a>
Closed: Accepted
Note: Duplicate. Group already resolved to drop "should drop" as part of issue 72 (and issue 40 updated) resolution.</pre>
<pre class='a' id='issue-81'>
Issue 81. <a href='#issue-81'>#</a>
Summary: A few (mostly editorial) tweaks to the definition of the resize property
From: Florian Rivoal
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Mar/0051.html'>https://lists.w3.org/Archives/Public/www-style/2015Mar/0051.html</a>
Closed: Accepted
Resolved: Editorial
Note: Part of this issue split into Issue 101. <a href='#issue-101'>#</a></pre>
<pre class='a' id='issue-82'>
Issue 82. <a href='#issue-82'>#</a>
Summary: Drop the note and the at-risk mention about the "block container" aspect of the clip value,
since it is the historic behavior implemented by everybody
From: Florian Rivoal
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Mar/0053.html'>https://lists.w3.org/Archives/Public/www-style/2015Mar/0053.html</a>
Resolved: Bugfix
Closed: Accepted</pre>
<pre class='a' id='issue-83'>
Issue 83. <a href='#issue-83'>#</a>
Summary: A couple of editorial tweaks to the definition of the resize property
From: Florian Rivoal
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Mar/0053.html'>https://lists.w3.org/Archives/Public/www-style/2015Mar/0053.html</a>
Resolved: Editorial
Closed: Accepted</pre>
<pre class='a' id='issue-84'>
Issue 84. <a href='#issue-84'>#</a>
Summary: no file format required by the spec for cursor
From: Florian Rivoal
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Mar/0199.html'>https://lists.w3.org/Archives/Public/www-style/2015Mar/0199.html</a>
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Mar/0217.html'>https://lists.w3.org/Archives/Public/www-style/2015Mar/0217.html</a>
Resolved: <a href='http://www.w3.org/mid/CADhPm3urfwvGe0-h0pbE6GtB5isYGsMNnrC36zh-j8xUrL=hmQ@mail.gmail.com'>http://www.w3.org/mid/CADhPm3urfwvGe0-h0pbE6GtB5isYGsMNnrC36zh-j8xUrL=hmQ@mail.gmail.com</a>
Closed: Accepted</pre>
<pre class='a' id='issue-85'>
Issue 85. <a href='#issue-85'>#</a>
Summary: Tiny leftover of nav-index removal should be erased
From: Florian Rivoal
Comment: <a href='http://www.w3.org/mid/D34E1BE4-AAF8-4229-B137-3D156BE9DA0C@rivoal.net'>http://www.w3.org/mid/D34E1BE4-AAF8-4229-B137-3D156BE9DA0C@rivoal.net</a>
Resolved: Editorial
Closed: Accepted</pre>
<pre class='a' id='issue-86'>
Issue 86. <a href='#issue-86'>#</a>
Summary: caret-color should be inherited, and auto should compute to auto
From: Florian Rivoal
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Apr/0197.html'>https://lists.w3.org/Archives/Public/www-style/2015Apr/0197.html</a>
Resolved: Bugfix
Closed: Accepted</pre>
<pre class='a' id='issue-87'>
Issue 87. <a href='#issue-87'>#</a>
Summary: define what happens if a target-name starting with an "_" is
provided
From: Florian Rivoal
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Apr/0196.html'>https://lists.w3.org/Archives/Public/www-style/2015Apr/0196.html</a>
Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2015Apr/0320.html'>https://lists.w3.org/Archives/Public/www-style/2015Apr/0320.html</a>
Closed: Accepted</pre>
<pre class='a' id='issue-88'>
Issue 88. <a href='#issue-88'>#</a>
Summary: incorrect prose (rtl issue) in in text-overflow
From: Florian Rivoal
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Apr/0195.html'>https://lists.w3.org/Archives/Public/www-style/2015Apr/0195.html</a>
Resloved: Bugfix
Closed: Accepted</pre>
<pre class='a' id='issue-89'>
Issue 89. <a href='#issue-89'>#</a>
Summary: The precise direction of resizing is *not* left to the UA
From: Florian Rivoal
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Apr/0194.html'>https://lists.w3.org/Archives/Public/www-style/2015Apr/0194.html</a>
Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2015Apr/0332.html'>https://lists.w3.org/Archives/Public/www-style/2015Apr/0332.html</a>
Closed: Accepted</pre>
<pre class='a' id='issue-90'>
Issue 90. <a href='#issue-90'>#</a>
Summary: "the cursor’s coordinate system" is insufficiently defined for various <image> values
From: Florian Rivoal
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Apr/0193.html'>https://lists.w3.org/Archives/Public/www-style/2015Apr/0193.html</a>
Resolved: <a href='http://www.w3.org/mid/CADhPm3vodAs3xAZrT4Of1s6GX6GfkaYdjLY-teYTN4iw=G8jmw@mail.gmail.com'>http://www.w3.org/mid/CADhPm3vodAs3xAZrT4Of1s6GX6GfkaYdjLY-teYTN4iw=G8jmw@mail.gmail.com</a>
Closed: Accepted
Note: The substantive edits are deferred to css-images</pre>
<pre class='a' id='issue-91'>
Issue 91. <a href='#issue-91'>#</a>
Summary: A few minor tweaks (editorial) to css-ui
From: Florian Rivoal
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Apr/0192.html'>https://lists.w3.org/Archives/Public/www-style/2015Apr/0192.html</a>
Resolved: Editorial
Closed: Accepted</pre>
<pre class='a' id='issue-92'>
Issue 92. <a href='#issue-92'>#</a>
Summary: In vertical text with text-orientation upright,
U+2026 does not seem to be the best character for the ellipsis
From: Xidorn Xuan
Comment: <a href='http://www.w3.org/mid/CAMdq69_N1aGTswQM7807xoZSK4berTsqq5H-cg07AmbgBPjUFA@mail.gmail.com'>http://www.w3.org/mid/CAMdq69_N1aGTswQM7807xoZSK4berTsqq5H-cg07AmbgBPjUFA@mail.gmail.com</a>
Response: <a href='http://www.w3.org/mid/465B66C2-E8B1-4ED4-9020-79B16DB40E43@rivoal.net'>http://www.w3.org/mid/465B66C2-E8B1-4ED4-9020-79B16DB40E43@rivoal.net</a>
Resolved: <a href='http://www.w3.org/mid/CADhPm3vodAs3xAZrT4Of1s6GX6GfkaYdjLY-teYTN4iw=G8jmw@mail.gmail.com'>http://www.w3.org/mid/CADhPm3vodAs3xAZrT4Of1s6GX6GfkaYdjLY-teYTN4iw=G8jmw@mail.gmail.com</a>
Closed: Accepted</pre>
<pre class='a' id='issue-93'>
Issue 93. <a href='#issue-93'>#</a>
Summary: "cursor: default" collides with the css-wide "default" value defined in css-cascade-4
From: Florian Rivoal
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Apr/0329.html'>https://lists.w3.org/Archives/Public/www-style/2015Apr/0329.html</a>
Resolved: <a href='http://www.w3.org/mid/CADhPm3sAMNBxd2+EzebRA10Ow23YXL34MdKH3KRP_1wO3uBwAQ@mail.gmail.com'>http://www.w3.org/mid/CADhPm3sAMNBxd2+EzebRA10Ow23YXL34MdKH3KRP_1wO3uBwAQ@mail.gmail.com</a>
Closed: Accepted
Note: naming conflic to be resolved by changing css-cascade-4</pre>
<pre class='a' id='issue-94'>
Issue 94. <a href='#issue-94'>#</a>
Summary: The default stylesheet for HTML should have "resize: both" for <textarea>
From: Timeless
Comment: <a href='http://www.w3.org/mid/CACsW8eGS3kZQ8a3jPAgrDaXW1WVmUQLo5vYzYty991JZzxMVdw@mail.gmail.com'>http://www.w3.org/mid/CACsW8eGS3kZQ8a3jPAgrDaXW1WVmUQLo5vYzYty991JZzxMVdw@mail.gmail.com</a>
Resolved: <a href='http://www.w3.org/mid/CADhPm3u6uDnhLZa3157EUi1GKKMFx-wF9GVOe7zAktbAGX5E7Q@mail.gmail.com'>http://www.w3.org/mid/CADhPm3u6uDnhLZa3157EUi1GKKMFx-wF9GVOe7zAktbAGX5E7Q@mail.gmail.com</a>
Closed: Accepted</pre>
<pre class='a' id='issue-95'>
Issue 95. <a href='#issue-95'>#</a>
Summary: "Ellipsed" isn't in the dictionary, use "Ellipsized" instead
From: Timeless
Comment: <a href='http://www.w3.org/mid/CACsW8eGS3kZQ8a3jPAgrDaXW1WVmUQLo5vYzYty991JZzxMVdw@mail.gmail.com'>http://www.w3.org/mid/CACsW8eGS3kZQ8a3jPAgrDaXW1WVmUQLo5vYzYty991JZzxMVdw@mail.gmail.com</a>
Response: <a href='https://lists.w3.org/Archives/Public/www-style/2015Jun/0111.html'>https://lists.w3.org/Archives/Public/www-style/2015Jun/0111.html</a>
Resolved: Editors' discretion
Closed: Rejected
Verified: <a href='https://lists.w3.org/Archives/Public/www-style/2015Jun/0366.html'>https://lists.w3.org/Archives/Public/www-style/2015Jun/0366.html</a>
Note: 2015-06-10 WG telcon resolved to reject. Such editorial wording is up to editors.</pre>
<pre class='a' id='issue-96'>
Issue 96. <a href='#issue-96'>#</a>
Summary: Clarify the at-risk section
From: timeless
Comment: <a href='http://www.w3.org/mid/CACsW8eEQVD9K48FMt0UR7=c7S1=3LmX=itcnfc8UNE6WPRsBGg@mail.gmail.com'>http://www.w3.org/mid/CACsW8eEQVD9K48FMt0UR7=c7S1=3LmX=itcnfc8UNE6WPRsBGg@mail.gmail.com</a>
Resolved: Editorial
Closed: Accepted</pre>
<pre class='a' id='issue-97'>
Issue 97. <a href='#issue-97'>#</a>
Summary: Make stronger statement regarding authors disabling the outline on :focus
From: timeless
Comment: <a href='http://www.w3.org/mid/CACsW8eEQVD9K48FMt0UR7=c7S1=3LmX=itcnfc8UNE6WPRsBGg@mail.gmail.com'>http://www.w3.org/mid/CACsW8eEQVD9K48FMt0UR7=c7S1=3LmX=itcnfc8UNE6WPRsBGg@mail.gmail.com</a>
Response: <a href='https://lists.w3.org/Archives/Public/www-style/2015Jun/0111.html'>https://lists.w3.org/Archives/Public/www-style/2015Jun/0111.html</a>
Resolved: Editorial
Closed: Accepted
Note: Part of this issue split into Issue 102. <a href='#issue-102'>#</a></pre>
<pre class='a' id='issue-98'>
Issue 98. <a href='#issue-98'>#</a>
Summary: Add note saying the outline-color may be ignored if outline-style is auto
From: Timeless
Comment: <a href='http://www.w3.org/mid/CACsW8eEQVD9K48FMt0UR7=c7S1=3LmX=itcnfc8UNE6WPRsBGg@mail.gmail.com'>http://www.w3.org/mid/CACsW8eEQVD9K48FMt0UR7=c7S1=3LmX=itcnfc8UNE6WPRsBGg@mail.gmail.com</a>
Response: <a href='https://lists.w3.org/Archives/Public/www-style/2015Jun/0111.html'>https://lists.w3.org/Archives/Public/www-style/2015Jun/0111.html</a>
Closed: Rejected
Resolved: Editors' discression
Verified: <a href='https://lists.w3.org/Archives/Public/www-style/2015Jun/0366.html'>https://lists.w3.org/Archives/Public/www-style/2015Jun/0366.html</a>
Note: Reject, this is already stated 2 lines above.</pre>
<pre class='a' id='issue-99'>
Issue 99. <a href='#issue-99'>#</a>
Summary: spec unclear as to what the limits of the area where the cursor should apply are when using border-radius
From: Florian Rivoal
Comment: <a href='http://www.w3.org/mid/020131AE-4EBD-4504-82A6-6C14C44A2DD8@rivoal.net'>http://www.w3.org/mid/020131AE-4EBD-4504-82A6-6C14C44A2DD8@rivoal.net</a>
Response: <a href='http://www.w3.org/mid/558196B1.8070007@inkedblade.net'>http://www.w3.org/mid/558196B1.8070007@inkedblade.net</a>
Resolve: Bugfix
Closed: Accepted</pre>
<pre class='a' id='issue-100'>
Issue 100. <a href='#issue-100'>#</a>
Summary: Non standard error handling for unsupported cursor value considered harmful
From: Florian Rivoal
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Jun/0195.html'>https://lists.w3.org/Archives/Public/www-style/2015Jun/0195.html</a>
Comment: <a href='http://www.w3.org/mid/CADhPm3uC4djOME_7i60YmHW5f0eCddU91eJhk96+wzdoYanDNA@mail.gmail.com'>http://www.w3.org/mid/CADhPm3uC4djOME_7i60YmHW5f0eCddU91eJhk96+wzdoYanDNA@mail.gmail.com</a>
Resolved: <a href='http://www.w3.org/mid/791CA58E-34E8-4396-A726-04CF6CD3AF8E@rivoal.net'>http://www.w3.org/mid/791CA58E-34E8-4396-A726-04CF6CD3AF8E@rivoal.net</a>
Closed: Accepted</pre>
<pre class='a' id='issue-101'>
Issue 101. <a href='#issue-101'>#</a>
Summary: Drop "should not apply" text, make it apply when UAs implement the CSSPseudoElement Interface
From: Florian Rivoal
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Mar/0051.html'>https://lists.w3.org/Archives/Public/www-style/2015Mar/0051.html</a>
Closed: Deferred
Verified: reporter is spec editor
Note: Previously registered as part of issue 81</pre>
<pre class='a' id='issue-102'>
Issue 102. <a href='#issue-102'>#</a>
Summary: Warn about what third parties may do in case of non conformance with acessibility requirement
From: timeless
Comment: <a href='http://www.w3.org/mid/CACsW8eEQVD9K48FMt0UR7=c7S1=3LmX=itcnfc8UNE6WPRsBGg@mail.gmail.com'>http://www.w3.org/mid/CACsW8eEQVD9K48FMt0UR7=c7S1=3LmX=itcnfc8UNE6WPRsBGg@mail.gmail.com</a>
Response: <a href='https://lists.w3.org/Archives/Public/www-style/2015Jun/0111.html'>https://lists.w3.org/Archives/Public/www-style/2015Jun/0111.html</a>
Closed: OutOfScope
Verified: <a href='https://lists.w3.org/Archives/Public/www-style/2015Jun/0366.html'>https://lists.w3.org/Archives/Public/www-style/2015Jun/0366.html</a>
Note: 2015-06-10 WG telcon resolved to reject threat request, as out of scope for a W3C spec.
Note: Previously part of Issue 97. <a href='#issue-97'>#</a></pre>
<pre class='a' id='issue-103'>
Issue 103. <a href='#issue-103'>#</a>
Summary: Consider not dropping the padding-box value of the box-sizing property
From: Florian Rivoal, Jonathan Kingston
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Jun/0123.html'>https://lists.w3.org/Archives/Public/www-style/2015Jun/0123.html</a>
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Jun/0269.html'>https://lists.w3.org/Archives/Public/www-style/2015Jun/0269.html</a>
Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2015Jun/0241.html'>https://lists.w3.org/Archives/Public/www-style/2015Jun/0241.html</a>
Response: <a href='https://lists.w3.org/Archives/Public/www-style/2015Jun/0323.html'>https://lists.w3.org/Archives/Public/www-style/2015Jun/0323.html</a>
Verified: <a href='https://lists.w3.org/Archives/Public/www-style/2015Jun/0327.html'>https://lists.w3.org/Archives/Public/www-style/2015Jun/0327.html</a>
Closed: Rejected
Note: All browser vendors agree on not implementing this feature.</pre>
<script>
(function () {
var sheet = document.styleSheets[0];
function addCheckbox(className) {
var element = document.querySelector('*.' + className);
var label = document.createElement('label');
label.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(label);
label.insertBefore(check, label.firstChild);
}
['a', 'd', 'fo', 'oi', 'r', 'open'].forEach(addCheckbox);
}());
</script>