forked from w3c/csswg-drafts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathissues-lc-2013.txt
1804 lines (1799 loc) · 72.8 KB
/
issues-lc-2013.txt
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
Draft: http://www.w3.org/TR/2013/WD-css-text-3-20131010/
Title: CSS Text Level 3
https://lists.w3.org/Archives/Public/www-style/2015Mar/0187.html
Open//Accepted/OutOfScope/Invalid/Rejected/Retracted
Verify with i18nWG:
54 - http://lists.w3.org/Archives/Public/www-style/2014Jun/0245.html
----
Issue 1.
Summary: Rename 'each-line' of 'text-indent' to 'after-break' or 'each-paragraph'?
From: Kenny
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0154.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Nov/0373.html
Closed: Rejected
Verified: Commenter present at F2F decision
Resolved: http://lists.w3.org/Archives/Public/www-style/2013Nov/0373.html
----
Issue 2.
Summary: 'text-indent' treats "as a margin applied to the start edge of the line box" is not correct because a line box does not have margins
From: Kenny
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0154.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Nov/0186.html
Closed: Invalid
Resolved: Editor discretion
----
Issue 3.
Summary: 'text-indent' should clarify how the 'width' of a line box is determined
From: Kenny
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0154.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Nov/0186.html
Closed: OutOfScope
Resolved: Editor discretion
----
Issue 4.
Summary: Required UAX14 line breaking behavior for GL+CB is Web-incompatible
From: Kenny
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0136.html
Response: http://lists.w3.org/Archives/Public/www-style/2014May/0069.html
Closed: Accepted
Resolved: http://lists.w3.org/Archives/Public/www-style/2014Aug/0321.html
----
Issue 5.
Summary: Clusters for letter spacing in Thai and other complex scripts
From: James Clark
Comment: http://lists.w3.org/Archives/Public/www-style/2013Sep/0542.html
Comment: http://lists.w3.org/Archives/Public/www-style/2013Sep/0649.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Sep/0563.html
Closed: Accepted
Comment: http://lists.w3.org/Archives/Public/www-style/2013Sep/0632.html
Follow-up in Issue 48.
Resolved: Editor discretion
----
Issue 6.
Summary: 'hanging-punctuation: first' should apply to after forced-break
From: Kenny
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0177.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Nov/0198.html
Closed: Rejected
Verified: https://www.w3.org/mid/5281F02D.30305@opera.com
Resolved: Editor discretion
----
Issue 6.
Summary: 'hanging-punctuation: force-end' description is incorrect
From: Kenny
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0177.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Nov/0202.html
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0181.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Nov/0178.html
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0214.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Nov/0224.html
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0225.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Nov/0232.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Nov/0224.html
Closed: Invalid
Resolved: Editor discretion
----
Issue 7.
Summary: 'text-transform: full-width' description editorial change request
From: CE Whitehead
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0089.html
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0090.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Nov/0250.html
Closed: Accepted
Verified: http://lists.w3.org/Archives/Public/www-style/2013Nov/0106.html
Resolved: Editorial
----
Issue 8.
Summary: White Space Processing Details editorial changes
From: CE Whitehead
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0089.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Nov/0252.html
Closed: Accepted
Response: http://lists.w3.org/Archives/Public/www-style/2014May/0097.html
Closed: Rejected
Verified: http://lists.w3.org/Archives/Public/www-style/2014May/0109.html
Resolved: Editorial
----
Issue 9.
Summary: White Space Processing Details Phase I Example editorial changes
From: CE Whitehead
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0089.html
Response: http://lists.w3.org/Archives/Public/www-style/2014May/0098.html
Closed: Accepted
Resolved: Editorial
----
Issue 10.
Summary: Line Breaking Details editorial change
From: CE Whitehead
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0107.html
Response: http://lists.w3.org/Archives/Public/www-style/2014May/0101.html
Closed: Rejected
Resolved: Editorial
----
Issue 11.
Summary: 'line-break' property editorial change
From: CE Whitehead
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0107.html
Response: http://lists.w3.org/Archives/Public/www-style/2014May/0101.html
Closed: Accepted
Resolved: Editorial
----
Issue 12.
Summary: Expanding and Compressing Text editorial change
From: CE Whitehead
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0107.html
Response: http://lists.w3.org/Archives/Public/www-style/2014May/0101.html
Closed: Accepted
Resolved: Editorial
----
Issue 13.
Summary: Handling Symbols and Punctuation editorial change
From: CE Whitehead
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0107.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Nov/0259.html
Closed: Accepted
Resolved: Editorial
----
Issue 14.
Summary: Differences in white-space:pre-wrap behavior
From: Christopher Palmer
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0061.html
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0067.html
Closed: Answered
Resolved: Editor Discretion
----
Issue 15.
Summary: text-overflow and ellipsis, some in rtl
From: Alan Gresley
Comment: http://lists.w3.org/Archives/Public/www-style/2013Oct/0161.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Jul/0353.html
Closed: OutOfScope
Resolved: Editor Discretion
----
Issue 16.
Summary: #1 timeline to drop 'hanging-punctuation' if no impl
From: DPub IG
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0116.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Nov/0188.html
Closed: Answered
Resolved: Editor Discretion
----
Issue 17.
Summary: #2 Unicode properties for grapheme clusters
From: DPub IG
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0116.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Nov/0188.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Apr/0258.html
Closed: Accepted
Resolved: Editor discretion
----
Issue 18.
Summary: #3 Clarify text-transform affects line breaks
From: DPub IG
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0116.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Nov/0188.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Apr/0259.html
Closed: Accepted
Resolved: Editorial
----
Issue 19.
Summary: #4 Ruby line break rules should refer to CSS Ruby
From: DPub IG
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0116.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Nov/0188.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Apr/0262.html
Closed: Accepted
Resolved: Bugfix
----
Issue 20.
Summary: #5 it's not clear what the 'otherwise' applies to in 'but otherwise forbid'
From: DPub IG
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0116.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Nov/0188.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Apr/0263.html
Closed: Accepted
Resolved: Editorial
----
Issue 21.
Summary: #6 Soft-hyphens should disable automatic hyphenation points
From: DPub IG
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0116.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Nov/0188.html
Closed: Accepted
Resolved: http://lists.w3.org/Archives/Public/www-style/2014Aug/0321.html
----
Issue 22.
Summary: #7 Editorial consistency in word-wrap/overflow-wrap
From: DPub IG
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0116.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Nov/0188.html
Closed: Accepted
Resolved: Editorial
----
Issue 23.
Summary: #8 Typo in Overflow Wrapping
From: DPub IG
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0116.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Nov/0188.html
Closed: Accepted
Resolved: Editorial
----
Issue 24.
Summary: #9 Add the text-align-first property
From: DPub IG
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0116.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Jul/0354.html
Closed: Deferred/Accepted
Note: Accepted to make text-align a shortand. Deferred text-align-first.
Resolved: http://lists.w3.org/Archives/Public/www-style/2014Jun/0167.html
----
Issue 25.
Summary: #10 What impact do zero-width letters and zero-width word-separators have on the inter-word and distribute text-justify values?
From: DPub IG
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0116.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Nov/0188.html
Closed: Answered
----
Issue 26.
Summary: #11 Editorial suggestion for Possible Algorithms for text-justify
From: DPub IG
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0116.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Nov/0188.html
Closed: Accepted
Resolved: Editorial
----
Issue 27.
Summary: #12 Negative percentage for word-spacing should be allowed
From: DPub IG
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0116.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Nov/0188.html
Closed: Accepted
Resolved: Bugfix
----
Issue 28.
Summary: #13 Should word-spacing prohibit applying to start/end of a line?
From: DPub IG
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0116.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Nov/0188.html
Closed: Invalid
Resolved: Editor discretion
----
Issue 29.
Summary: #14 Is the list of word separator characters exhaustive?
From: DPub IG
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0116.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Nov/0188.html
Closed: Accepted
Resolved: Bugfix
----
Issue 30.
Summary: #15 Typo in Tracking, just after example 14: "element element" should be "element"
From: DPub IG
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0116.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Nov/0188.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Nov/0189.html
Comment: http://lists.w3.org/Archives/Public/www-style/2014Apr/0266.html
Closed: Accepted
Resolved: Editorial
----
Issue 31.
Summary: #16 What are the definition of zero-width characters in letter-spacing
From: DPub IG
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0116.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Nov/0188.html
Closed: Accepted
Resolved: Editorial
----
Issue 32.
Summary: #17 Clarify the behavior of text-indent: each-line
From: DPub IG
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0116.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Nov/0188.html
Closed: Accepted
Resolved: Editorial
----
Issue 33.
Summary: #18 Typo (spurious '>') in Animatable table entry for hanging-punctuation
From: DPub IG
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0116.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Nov/0188.html
Closed: Accepted
Resolved: Editorial
----
Issue 34.
Summary: #19 Text Processing Order of Operations should select font/glyph before letter-/word-spacing
From: DPub IG
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0116.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Nov/0188.html
Closed: Accepted
Resolved: Bugfix
----
Issue 35.
Summary: #20 Typo (missing an article) in Default UA Stylesheet
From: DPub IG
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0116.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Nov/0188.html
Closed: Accepted
Resolved: Editorial
----
Issue 36.
Summary: Differences in white-space:pre-wrap behavior
From: Christopher Palmer
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0061.html
Response: http://lists.w3.org/Archives/Public/www-style/2013Nov/0067.html
Closed: Question
----
Issue 37.
Summary: Confused about the White Space Processing Details in CSS Text Module Level 3
From: Jon Ronnenberg
Comment: http://lists.w3.org/Archives/Public/www-style/2013Dec/0057.html
Response: http://lists.w3.org/Archives/Public/www-style/2014May/0070.html
Closed: Question
----
Issue 38.
Summary: anonymous inline of collapsible white space are *not* always removed
From: Jon Ronnenberg
Comment: http://lists.w3.org/Archives/Public/www-style/2013Dec/0104.html
Response: http://lists.w3.org/Archives/Public/www-style/2014May/0071.html
Closed: Accepted
Resolved: Bugfix
----
Issue 39.
Summary: The secret behind word-wrap/overflow-wrap?
From: Jens O. Meiert
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jan/0258.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Jan/0263.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Jan/0264.html
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jan/0267.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Jul/0366.html
Closed: Question
----
Issue 41.
Summary: font-side-bearings: normal | trimmed
From: François REMY
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jan/0242.html
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jan/0252.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Apr/0267.html
Closed: OutOfScope
Resolved: Editor discretion
----
Issue 43.
Summary: I18N-ISSUE-308: Definition of 'grapheme cluster'
From: Phillips, Addison
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jan/0417.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Jun/0340.html
Closed: Rejected
Verified: http://lists.w3.org/Archives/Public/www-style/2014Jul/0320.html
Resolved: Editor discretion
----
Issue 44.
Summary: I18N-ISSUE-309: Haphazard use of term 'character'
From: Phillips, Addison
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jan/0418.html
Closed: Accepted
Verified: http://lists.w3.org/Archives/Public/www-style/2014Jul/0321.html
Resolved: Editor discretion
----
Issue 45.
Summary: I18N-ISSUE-310: (editorial) consistency in refering to Unicode web site
From: Phillips, Addison
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jan/0419.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Apr/0269.html
Closed: Accepted
Verified: http://lists.w3.org/Archives/Public/www-style/2014May/0423.html
Resolved: Editorial
----
Issue 46.
Summary: I18N-ISSUE-311: Clarity of Arabic hyphenation example
From: Phillips, Addison
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jan/0420.html
Response: http://lists.w3.org/Archives/Public/www-style/2014May/0099.html
Closed: Accepted
Verified: http://lists.w3.org/Archives/Public/www-style/2014May/0424.html
Resolved: Editorial
----
Issue 47.
Summary: I18N-ISSUE-312: (editorial) distribute keyword description
From: Phillips, Addison
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jan/0421.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Apr/0270.html
Closed: Accepted
Verified: http://lists.w3.org/Archives/Public/www-style/2014May/0425.html
Resolved: Editorial
----
Issue 48.
Summary: I18N-ISSUE-313: Definition of grapheme clusters
From: Phillips, Addison
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jan/0422.html
Comment: http://lists.w3.org/Archives/Public/www-style/2014May/0279.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Jun/0365.html
Closed: Accepted
Verified: http://lists.w3.org/Archives/Public/www-style/2014Aug/0078.html
----
Issue 49.
Summary: I18N-ISSUE-314: Line breaking and ruby
From: Phillips, Addison
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jan/0423.html
Response: http://lists.w3.org/Archives/Public/www-style/2014May/0079.html
Closed: Accepted
Verified: http://lists.w3.org/Archives/Public/www-style/2014May/0200.html
Verified: http://lists.w3.org/Archives/Public/www-style/2014May/0426.html
Resolved: Editor discretion
----
Issue 50.
Summary: I18N-ISSUE-315: Reference to line breaking in KLREQ
From: Phillips, Addison
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jan/0424.html
Response: http://lists.w3.org/Archives/Public/www-style/2014May/0072.html
Closed: Invalid
Verified: http://lists.w3.org/Archives/Public/www-style/2014May/0427.html
Resolved: Editorial
----
Issue 51.
Summary: I18N-ISSUE-316: Line breaking should default to UAX#14
From: Phillips, Addison
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jan/0425.html
Response: http://lists.w3.org/Archives/Public/www-style/2014May/0339.html
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jul/0498.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Jul/0500.html
Closed: Rejected
Resolved: http://lists.w3.org/Archives/Public/www-style/2014Aug/0321.html
----
Issue 52.
Summary: I18N-ISSUE-317: Line breaking property and value names
From: Phillips, Addison
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jan/0426.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Apr/0272.html
Response: http://lists.w3.org/Archives/Public/www-style/2014May/0126.html
Closed: Rejected
Verified: http://lists.w3.org/Archives/Public/www-style/2014May/0428.html
Resolved: Editor discretion
----
Issue 53.
Summary: I18N-ISSUE-318: Tibetan line breaking & justification background info
From: Phillips, Addison
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jan/0427.html
Response: http://lists.w3.org/Archives/Public/www-style/2014May/0091.html
Closed: Invalid
Verified: http://lists.w3.org/Archives/Public/www-style/2014May/0429.html
Resolved: Editorial
----
Issue 54.
Summary: I18N-ISSUE-319: word-break 'according to usual rules'
From: Phillips, Addison
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jan/0428.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Apr/0273.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Jun/0245.html
Closed: Accepted
Verified: http://lists.w3.org/Archives/Public/www-style/2014May/0430.html
Resolved: Editorial
----
Issue 55.
Summary: I18N-ISSUE-320: Example 6
From: Phillips, Addison
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jan/0429.html
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jan/0444.html
Response: http://lists.w3.org/Archives/Public/www-style/2014May/0073.html
Closed: Accepted
Verified: http://lists.w3.org/Archives/Public/www-style/2014May/0431.html
Resolved: Editorial
----
Issue 56.
Summary: I18N-ISSUE-321: Naming of "start end"
From: Phillips, Addison
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jan/0430.html
Response: http://lists.w3.org/Archives/Public/www-style/2014May/0074.html
Closed: Rejected
Verified: http://lists.w3.org/Archives/Public/www-style/2014Jul/0322.html
Resolved: http://lists.w3.org/Archives/Public/www-style/2014Jun/0167.html
----
Issue 57.
Summary: I18N-ISSUE-322: text-justify: auto should recommend international typographic accuracy
From: Phillips, Addison
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jan/0431.html
Response: http://lists.w3.org/Archives/Public/www-style/2014May/0100.html
Comment: http://lists.w3.org/Archives/Public/www-style/2014May/0307.html
Closed: Accepted
Verified: http://lists.w3.org/Archives/Public/www-style/2014Jul/0356.html
Resolved: Editorial
----
Issue 58.
Summary: I18N-ISSUE-323: Figures 3 to 5
From: Phillips, Addison
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jan/0432.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Jun/0353.html
Closed: Accepted
Verified: http://lists.w3.org/Archives/Public/www-style/2014Jul/0323.html
Resolved: Editorial
----
Issue 59.
Summary: I18N-ISSUE-324: distribute -> inter-character
From: Phillips, Addison
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jan/0433.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Apr/0275.html
Closed: Rejected
Verified: http://lists.w3.org/Archives/Public/www-style/2014May/0432.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Oct/0294.html
Closed: Accepted
----
Issue 60.
Summary: I18N-ISSUE-325: expansion opportunity -> justification opportunity
From: Phillips, Addison
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jan/0442.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Apr/0276.html
Closed: Accepted
Verified: http://lists.w3.org/Archives/Public/www-style/2014May/0433.html
Resolved: Editorial
----
Issue 61.
Summary: I18N-ISSUE-330: Tasmeem example not clear
From: Phillips, Addison
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jan/0434.html
Response: http://lists.w3.org/Archives/Public/www-style/2014May/0422.html
Closed: Rejected
Verified: http://lists.w3.org/Archives/Public/www-style/2014Jul/0355.html
Resolved: Editorial
----
Issue 62.
Summary: I18N-ISSUE-331: No kashida style or relationship to styles 'distribute' and 'inter-word'
From: Phillips, Addison
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jan/0435.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Apr/0277.html
Response: http://lists.w3.org/Archives/Public/www-style/2014May/0076.html
Comment: http://lists.w3.org/Archives/Public/www-style/2014May/0366.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Jun/0390.html
Closed: Invalid
Verified: http://lists.w3.org/Archives/Public/www-style/2014Oct/0398.html
Resolved: Editor discretion
----
Issue 63.
Summary: I18N-ISSUE-332: Lack of complete kashida description
From: Phillips, Addison
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jan/0436.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Apr/0278.html
Response: http://lists.w3.org/Archives/Public/www-style/2014May/0078.html
Closed: OutOfScope
Resolved: Editor discretion
Verified: http://lists.w3.org/Archives/Public/www-style/2014Aug/0079.html
----
Issue 64.
Summary: I18N-ISSUE-333: 'letter-spacing' and Arabic
From: Phillips, Addison
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jan/0437.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Jun/0214.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Jun/0355.html
Closed: Accepted
Verified: http://lists.w3.org/Archives/Public/www-style/2014Oct/0399.html
Resolved: Editorial
----
Issue 65.
Summary: I18N-ISSUE-334: 'letter-spacing' and Indic
From: Phillips, Addison
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jan/0438.html
Response: http://lists.w3.org/Archives/Public/www-style/2014May/0065.html
Closed: Rejected
Resolved: http://lists.w3.org/Archives/Public/www-style/2014Aug/0321.html
Verified: https://www.w3.org/mid/5448D25D.8020309@w3.org
----
Issue 66.
Summary: I18N-ISSUE-335: health warnings for when language not known
From: Phillips, Addison
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jan/0443.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Jun/0391.html
Closed: Accepted
Resolved: Editorial
Verified: http://lists.w3.org/Archives/Public/www-style/2014Aug/0080.html
----
Issue 67.
Summary: I18N-ISSUE-336: no local definition of "anonymous inline" (editorial)
From: Phillips, Addison
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jan/0439.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Apr/0330.html
Closed: Accepted
Resolved: Editorial
Verified: http://lists.w3.org/Archives/Public/www-style/2014Aug/0081.html
----
Issue 68.
Summary: I18N-ISSUE-337: line terminator handling
From: Phillips, Addison
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jan/0440.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Apr/0335.html
Closed: Invalid
Response: http://lists.w3.org/Archives/Public/www-style/2014Aug/0023.html
Comment: http://lists.w3.org/Archives/Public/www-style/2014Aug/0082.html
Verified: http://lists.w3.org/Archives/Public/www-style/2014Aug/0083.html
----
Issue 69.
Summary: I18N-ISSUE-338: UAX14 reference (editorial)
From: Phillips, Addison
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jan/0441.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Apr/0351.html
Closed: Accepted
Resolved: Editorial
Verified: http://lists.w3.org/Archives/Public/www-style/2014Aug/0084.html
----
Issue 70.
Summary: Arabic letters connecting between elements with display: inline
From: fantasai
Comment: http://lists.w3.org/Archives/Public/www-style/2014Feb/0302.html
Comment: http://lists.w3.org/Archives/Public/www-style/2014May/0260.html
Comment: http://lists.w3.org/Archives/Public/www-style/2014May/0398.html
Comment: http://lists.w3.org/Archives/Public/www-style/2014May/0409.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Aug/0217.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Aug/0295.html
Closed: Accepted
Resolved: https://lists.w3.org/Archives/Public/www-style/2014Oct/0259.html
----
Issue 71.
Summary: add more hyphenation controls
From: Håkan Save Hanssoni
Comment: http://lists.w3.org/Archives/Public/www-style/2014Feb/0555.html
Response: http://lists.w3.org/Archives/Public/www-style/2014May/0080.html
Closed: Deferred
Resolved: [past WG decisions]
----
Issue 72.
Summary: Control characters
From: James Clark
Comment: http://lists.w3.org/Archives/Public/www-style/2014Mar/0475.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Jun/0431.html
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jun/0439.html
Response:
Closed: Accepted
Resolved: http://lists.w3.org/Archives/Public/www-style/2014Oct/0259.html
----
Issue 73.
Summary: example 16 named entity
From: Philippe Wittenbergh
Comment: http://lists.w3.org/Archives/Public/www-style/2014Mar/0583.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Apr/0355.html
Closed: Accepted
Resolved: Editorial
----
Issue 74.
Summary: What line-break loose allow (but otherwise forbid) means when the base rules forbid?
From: Koji Ishii
Comment: http://lists.w3.org/Archives/Public/www-style/2014Apr/0110.html
Response: http://lists.w3.org/Archives/Public/www-style/2014May/0128.html
Closed: Accepted
Resolved: Editorial
----
Issue 75.
Summary: Characters per line
From: Mustafa
Comment: http://lists.w3.org/Archives/Public/www-style/2014Apr/0279.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Apr/0289.html
Closed: Retracted
Verified: http://lists.w3.org/Archives/Public/www-style/2014Apr/0375.html
----
Issue 76.
Summary: Justifying pre-wrap text
From: Tab Atkins Jr.
Comment: http://lists.w3.org/Archives/Public/www-style/2014Apr/0469.html
Comment: http://lists.w3.org/Archives/Public/www-style/2014Apr/0481.html
Closed: Question
----
Issue 77.
Summary: [css-text] i18n-ISSUE-345: Arabic doesn't hyphenate / add Uyghur example
From: Richard Ishida
Comment: http://lists.w3.org/Archives/Public/www-style/2014May/0368.html
Response: http://lists.w3.org/Archives/Public/www-style/2014May/0372.html
Comment: http://lists.w3.org/Archives/Public/www-style/2014May/0388.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Jun/0356.html
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jun/0394.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Jun/0395.html
Closed: Accepted
Resolved: Editorial
Verified: http://lists.w3.org/Archives/Public/www-style/2014Aug/0087.html
----
Issue 78.
Summary: [css-text] Typos
From: MURAKAMI Shinyu
Comment: http://lists.w3.org/Archives/Public/www-style/2014May/0461.html
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jun/0007.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Jun/0215.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Jun/0216.html
Closed: Accepted
Resolved: Editorial
----
Issue 79.
Summary: Clarify joining behavior across element boundaries
From: Matitiahu Allouche
Comment: http://lists.w3.org/Archives/Public/www-style/2014May/0261.html
Comment: http://lists.w3.org/Archives/Public/www-style/2014May/0397.html
Comment: http://lists.w3.org/Archives/Public/www-style/2014May/0398.html
Comment: http://lists.w3.org/Archives/Public/www-style/2014May/0409.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Aug/0217.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Aug/0295.html
Closed: Accepted
Resolved: https://lists.w3.org/Archives/Public/www-style/2014Oct/0259.html
----
Issue 80.
Summary: I18N-ISSUE-344: Wording of section 7.4.4 Cursive Scripts
From: Richard Ishida
Comment: http://www.w3.org/International/track/issues/344
Closed: Accepted
Verified: http://lists.w3.org/Archives/Public/www-style/2014Aug/0086.html
----
Issue 81.
Summary: Hanging punctuation should be blocked by margins in addition to padding.
From: Kang-Hao Lu
Comment: http://lists.w3.org/Archives/Public/www-style/2013Nov/0178.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Jul/0424.html
From: Dave Hyatt
Comment: https://lists.w3.org/Archives/Public/www-style/2016Mar/0073.html
Response: https://lists.w3.org/Archives/Public/www-style/2016Sep/0097.html
Closed: Rejected
----
Issue 82.
Summary: More editorial trivialities
Comment: http://lists.w3.org/Archives/Public/www-style/2014May/0176.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Jul/0351.html
Comment: http://lists.w3.org/Archives/Public/www-style/2014May/0416.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Jul/0352.html
Closed: Accepted
Resolved: Editorial
----
Issue 83.
Summary: Ambiguous hyphenation cases
From: Håkon Save Hansson
Comment: http://lists.w3.org/Archives/Public/www-style/2014May/0116.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Jul/0371.html
Closed: OutOfScope
Resolved: Editor discretion
----
Issue 84.
Summary: Hyphenation Concerns
From: Liam Quin
Comment: http://lists.w3.org/Archives/Public/www-style/2014May/0319.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Jul/0370.html
Closed: Invalid
Resolved: Editor discretion
----
Issue 85.
Summary: Forbid breaks before half-width currency
From: Koji Ishii
Comment: http://lists.w3.org/Archives/Public/www-style/2014May/0128.html
Closed: Accepted
Resolved: Editor discretion
----
Issue 86.
Summary: Need more normative requirements for 'text-justify: auto'
From: David Baron
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jun/0167.html
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jul/0423.html
Closed: Accepted
Resolved: https://lists.w3.org/Archives/Public/www-style/2014Jun/0167.html
Resolved: https://lists.w3.org/Archives/Public/www-style/2015Jan/0009.html
----
Issue 87.
Summary: [css-text] i18n-ISSUE-354: Questions about letter-spacing for Arabic script
From: Richard Ishida
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jul/0501.html
Response: http://lists.w3.org/Archives/Public/www-style/2014Aug/0024.html
Comment: http://lists.w3.org/Archives/Public/www-style/2014Oct/0401.html
Closed: Accepted
Resolved: Editorial
----
Issue 88.
Summary: [css-text] Add text-justify: inter-ideograph back for Korean?
From: Koji Ishii and Shinyu Murakami
Comment: https://www.w3.org/mid/CAG0S3+hDGUUY2E0CKHObkU5Ejfp97f=yHHSU1YY3o_c2BFGaxg@mail.gmail.com
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jul/0513.html
Comment: http://lists.w3.org/Archives/Public/www-style/2014Aug/0025.html
Comment: http://lists.w3.org/Archives/Public/www-style/2014Aug/0027.html
Closed: Accepted
Note: Resolved on option #2, using inter-character for ancient Korean.
Resolved: https://lists.w3.org/Archives/Public/www-style/2014Oct/0294.html
----
Issue 89.
Summary: [css-text] How to define lang-specific justification behavior?
From: Koji Ishii
Comment: http://lists.w3.org/Archives/Public/www-style/2014Aug/0030.html
Closed: Accepted
Resolved: Editor discretion
Verified: Reporter is editor
----
Issue 90.
Summary: Syncrhonize definition of white space across Web Platform
From: David Baron
Comment: https://lists.w3.org/Archives/Public/www-style/2015Aug/0237.html
Response: https://lists.w3.org/Archives/Public/www-style/2015Sep/0103.html
Closed: Accepted
Resolved: https://lists.w3.org/Archives/Public/www-style/2015Sep/0165.html
----
Issue 91.
Summary: Better definition for 'pre-wrap' trailing spaces that don't fit
From: Florian Rivoal
Closed: Accepted
Resolved: https://lists.w3.org/Archives/Public/www-style/2016Mar/0352.html
----
Issue 92.
Summary: break-all should break spaces
From: Florian Rivoal
Comment: https://lists.w3.org/Archives/Public/www-style/2015Mar/0386.html
Closed: Invalid
Note: Invalidated by issue 91.
Resolved: Editor's discretion
----
Issue 93.
Summary: overflow-wrap: break-word should define whether spaces can be broken
Comment: https://lists.w3.org/Archives/Public/www-style/2015Mar/0386.html
Closed: Invalid
Note: Invalidated by issue 91.
Resolved: Editor's discretion
----
Issue 94.
Summary: Add 'word-break: break-word' to spec
Comment: https://www.w3.org/mid/BLUPR03MB5524D8C851835C9CB3D1046AFCF0@BLUPR03MB552.namprd03.prod.outlook.com
Comment: https://code.google.com/p/chromium/issues/detail?id=492202
Comment: https://lists.w3.org/Archives/Public/www-style/2016Aug/0047.html
Comment: https://github.com/w3c/csswg-drafts/issues/2390
Comment: https://lists.w3.org/Archives/Public/www-style/2016Mar/0352.html
Comment: https://github.com/w3c/csswg-drafts/issues/2390#issuecomment-466736750
Closed: Accepted
Resolved: https://github.com/w3c/csswg-drafts/issues/2390#issuecomment-467685010
----
Issue 95.
Summary: Legacy line-breaking rules for replaced elements
Comment: https://lists.w3.org/Archives/Public/www-style/2015Mar/0187.html
Comment: https://www.w3.org/mid/op.xuj9rfwfidj3kv@simons-mbp
From: zcorpan
Closed: Accepted
Resolved: https://lists.w3.org/Archives/Public/www-style/2015Mar/0187.html
----
Issue 96.
Summary: Use language context for dropping spaces around A.
Comment: https://github.com/w3c/csswg-drafts/issues/337
From: He Shi-Jun
Closed: Accepted =i18n= Review. =xidorn= Review. =koji= Review.
Notes: http://www.w3.org/mid/CADhPm3td07AODYZD5EEx2k7_N=ph4Vd4Z48t1j++moK-bimYsg@mail.gmail.com
Resolved: https://www.w3.org/mid/CADhPm3u95z0_xB8eRsmv=EGgb8+8yXDEnw-EAVp3eqrGjs9ykQ@mail.gmail.com
----
Issue 97.
Summary: Add 'none' value to line-break for traditional Chinese
Comment: ??? Trad Chinese doesn't care about kinsoku
Closed: Accepted
Resolved: https://lists.w3.org/Archives/Public/www-style/2017Jun/0028.html
Resolved: https://lists.w3.org/Archives/Public/www-style/2017Sep/0001.html
----
Issue 98.
Summary: Add break-spaces value to overflow-wrap
From: Florian Rivoal
Closed: Accepted
Resolved: https://www.w3.org/mid/CADhPm3tfRrvULf_-SKVLFxvtybC505RRrVY_ip0GVUui8K=2xw@mail.gmail.com
Resolved: https://www.w3.org/mid/CADhPm3sX2v8x5jWbx_VpTnXyG5AKF2DtJY=QCNy6hBNwYC27zg@mail.gmail.com
Verified: Reporter submitted PR
----
Issue 99.
Summary: Handle Western hanging-punctuation
From: Jon Lee
Comment: https://www.w3.org/mid/F11CBFDD-A2BA-4302-B664-4B985F4E252D@apple.com
Response: https://www.w3.org/mid/5705A5FC.4060504@inkedblade.net
Closed: Deferred
Verified: https://www.w3.org/mid/01a901d190fc$c3278340$497689c0$@tosovsky@email.cz
----
Issue 100.
Summary: shaping at break-all
From: Koji Ishii
Comment: https://www.w3.org/mid/CAN9ydbX6vhOb9+ePyp99Tx=19=Arun3tFAPYGbYeOyqw_5yWag@mail.gmail.com
Response: https://lists.w3.org/Archives/Public/www-style/2018Mar/0041.html
Closed: Accepted =behdad= Review =myles= Review
Resolved: Editorial
----
Issue 101.
Summary: Control mix of inter-word and inter-character justification
From: Jacob Parker
Comment: https://www.w3.org/mid/D41D6C79-EFB3-4508-9525-E54CC9FE8FDA@gmail.com
Response: http://www.w3.org/mid/1f804053-5d40-d7a3-d59d-072a7b0c217f@inkedblade.net
Closed: Deferred
Resolved: Editor discretion
----
Issue 102.
Summary: Animating tab-size
From: David Baron
Comment: https://www.w3.org/mid/20151022224025.GA28022@pescadero.dbaron.org
Response: https://www.w3.org/mid/CAAWBYDB02tSgh4CgXO1HOQLMc9vU2k8bKQ6XhKXtD9agRbo=sQ@mail.gmail.com
From: Xidorn Quan
Comment: https://github.com/w3c/csswg-drafts/issues/463
Closed: Accepted
Resolved: https://www.w3.org/mid/CADhPm3u95z0_xB8eRsmv=EGgb8+8yXDEnw-EAVp3eqrGjs9ykQ@mail.gmail.com
----
Issue 103.
Summary: Corrections to word-break characters affected
From: CSSWG
Comment: https://lists.w3.org/Archives/Public/www-style/2015Oct/0199.html
Closed: Accepted
Verified: Reporter is editor
----
Issue 104.
Summary: Computed Value for word-spacing is wrong
From: Cameron McCormack
Comment: https://www.w3.org/mid/20151022032416.GA25650@wok.mcc.id.au
Response: https://www.w3.org/mid/7453ba3e-b32d-993d-522a-53c446dd832b@inkedblade.net
Closed: Accepted
Resolved: Bugfix
----
Issue 105.
Summary: Modifications to punctuation breaking for break-all
From: Koji Ishii
Comment: https://www.w3.org/mid/CAN9ydbU-=qKnxD+fQxrOi-VvjgpJED3-QeUDUB7JG24DyMD8-w@mail.gmail.com
Closed: Accepted
Note: Seems to be covered by resolution to 103.
Verified: Reporter is editor
----
Issue 106.
Summary: Space before preserved break is preserved
From: Tab Atkins
Comment: https://www.w3.org/mid/CAAWBYDC1jhbukKueCZfRy-hqO2ejH0hkWzw2fCEWfAbBvqzxqA@mail.gmail.com
Response: https://lists.w3.org/Archives/Public/www-style/2016Aug/0057.html
Response: https://lists.w3.org/Archives/Public/www-style/2017Jan/0021.html
Testcase: http://software.hixie.ch/utilities/js/live-dom-viewer/?%3C!DOCTYPE%20html%3E%0A%3Cdiv%20style%3D%22font-family%3A%20monospace%3B%20width%3A%20-moz-min-content%3B%20width%3A%20min-content%3B%20border%3A%20solid%20silver%3B%20white-space%3A%20pre-line%22%3Ea%20%0Ab%20c
Closed: Rejected
Verified: via IRC
----
Issue 107.
Summary: unbreakable “word” underdefined
From: Florian Rivoal
Comment: https://www.w3.org/mid/0EE5D148-39F4-4AF7-AB7E-08583AD971D5@rivoal.net
Response: https://lists.w3.org/Archives/Public/www-style/2015Jun/0101.html
Changes: https://github.com/w3c/csswg-drafts/commit/f159579704de914a3ad6c28fea4ee554acf5a20a
Closed: Accepted
Resolved: Bugfix
----
Issue 108.
Summary: Define effect of text-transform (and white-space?) on copy/paste
From: fantasai
Comment: https://www.w3.org/mid/551CAC73.8090306@inkedblade.net
Comment: public-editing-tf 7 April 2016
Comment: https://lists.w3.org/Archives/Public/www-style/2016Oct/0124.html
Comment: https://www.w3.org/mid/CADhPm3ui2FQPhyS4+1ZQ6=iLLVx9VtCUw+B8x9EFr9gNtjOSSA@mail.gmail.com
Comment: https://github.com/w3c/csswg-drafts/issues/627
Changes: https://hg.csswg.org/drafts/rev/5243e591cb96
Changes: https://hg.csswg.org/drafts/rev/26a9c76a6770
Closed: Accepted
Resolved: https://lists.w3.org/Archives/Public/www-style/2016Oct/0115.html
Resolved: https://lists.w3.org/Archives/Public/www-style/2018May/0032.html
----
Issue 109.
Summary: Hang colons in 'hanging-punctuation: last'
From: Brad Kemper
Comment: https://www.w3.org/mid/E23C3B69-A568-4B5F-9DAD-3D077F4C8364@gmail.com
Comment: https://github.com/w3c/csswg-drafts/issues/2392
Response: https://github.com/w3c/csswg-drafts/issues/2392#issuecomment-380447007
Closed: Deferred
Resolved: https://lists.w3.org/Archives/Public/www-style/2018May/0032.html
----
Issue 110.
Summary: capitalizing enclosed alphanumerics
From: Jonathan Kew
Comment: https://www.w3.org/mid/54FF0DDC.6000408@w3.org
Response: https://lists.w3.org/Archives/Public/www-style/2016Sep/0095.html
Closed: Accepted
Resolved: https://www.w3.org/mid/CADhPm3u95z0_xB8eRsmv=EGgb8+8yXDEnw-EAVp3eqrGjs9ykQ@mail.gmail.com
----
Issue 111.
Summary: titlecasing digraphs
From: Jonathan Kew
Comment: https://www.w3.org/mid/5505D490.4070507@gmail.com
Response: https://lists.w3.org/Archives/Public/www-style/2018Mar/0003.html
Changes: https://hg.csswg.org/drafts/rev/11e8aa074031
Closed: Accepted
Resolved: https://www.w3.org/mid/CADhPm3u95z0_xB8eRsmv=EGgb8+8yXDEnw-EAVp3eqrGjs9ykQ@mail.gmail.com
----
Issue 112.
Summary: Link Appendix A from Writing Modes and fonts
From: Hiroshi Sakakibara
Comment: https://www.w3.org/mid/54DC3379.60603@bpsinc.jp
Response: https://lists.w3.org/Archives/Public/www-style/2018Mar/0004.html
Changes: https://github.com/w3c/csswg-drafts/commit/78a99ed700032030cdec9de57b3fa70a2420c9b4
Closed: Accepted
Resolved: Editorial
----
Issue 113.
Summary: Percentages on text-indent expose anonymous block tree
From: L. David Baron