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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>White Space Processing Details - CSS Text Module Level 3 CR Test Suite</title>
<style type="text/css">
@import "http://www.w3.org/StyleSheets/TR/base.css";
@import "../indices.css";
</style>
</head>
<body>
<h1>CSS Text Module Level 3 CR Test Suite</h1>
<h2>White Space Processing Details (84 tests)</h2>
<table width="100%">
<col id="test-column"></col>
<col id="refs-column"></col>
<col id="flags-column"></col>
<col id="info-column"></col>
<thead>
<tr>
<th>Test</th>
<th><abbr title="Rendering References">Refs</abbr></th>
<th>Flags</th>
<th>Info</th>
</tr>
</thead>
<tbody id="s4">
<tr><th colspan="4" scope="rowgroup">
<a href="#s4">+</a>
<a href="https://www.w3.org/TR/css-text-3/#white-space-processing">4 White Space Processing Details</a></th></tr>
<!-- 0 tests -->
</tbody>
<tbody id="s4.#segment-break">
<!-- 0 tests -->
</tbody>
<tbody id="s4.#segment-normalization">
<!-- 0 tests -->
</tbody>
<tbody id="s4.1">
<tr><th colspan="4" scope="rowgroup">
<a href="#s4.1">+</a>
<a href="https://www.w3.org/TR/css-text-3/#white-space-rules">4.1 The White Space Processing Rules</a></th></tr>
<!-- 1 tests -->
<tr id="bidi-004-4.1" class="ahem may21">
<td>
<a href="bidi-004.xht">bidi-004</a></td>
<td><a href="reference/bidi-004-ref.xht">=</a> </td>
<td><abbr class="ahem" title="Requires Ahem font">Ahem</abbr><abbr class="may21" title="Behavior tested is preferred but optional">Optional</abbr></td>
<td>The bidi algorithm and inlines in CSS
</td>
</tr>
</tbody>
<tbody id="s4.1.1">
<tr><th colspan="4" scope="rowgroup">
<a href="#s4.1.1">+</a>
<a href="https://www.w3.org/TR/css-text-3/#white-space-phase-1">4.1.1 Phase I: Collapsing and Transformation</a></th></tr>
<!-- 0 tests -->
</tbody>
<tbody id="s4.1.1.#collapse">
<!-- 0 tests -->
</tbody>
<tbody id="s4.1.1.#collapsible">
<!-- 0 tests -->
</tbody>
<tbody id="s4.1.1.#egbidiwscollapse">
<!-- 0 tests -->
</tbody>
<tbody id="s4.1.2">
<tr><th colspan="4" scope="rowgroup">
<a href="#s4.1.2">+</a>
<a href="https://www.w3.org/TR/css-text-3/#line-break-transform">4.1.2 Segment Break Transformation Rules</a></th></tr>
<!-- 77 tests -->
<tr id="seg-break-transformation-000-4.1.2" class="primary script">
<td><strong>
<a href="seg-break-transformation-000.xht">seg-break-transformation-000</a></strong></td>
<td></td>
<td><abbr class="script" title="Executes tests in script">Script</abbr></td>
<td>Whitespace and line break transformation
<ul class="assert">
<li>All spaces and tabs immediately preceding or following a segment break are removed. If no F, H, W or ZWSP characters involved, the segment break is converted to a space.</li>
</ul>
</td>
</tr>
<tr id="seg-break-transformation-001-4.1.2" class="primary script">
<td><strong>
<a href="seg-break-transformation-001.xht">seg-break-transformation-001</a></strong></td>
<td></td>
<td><abbr class="script" title="Executes tests in script">Script</abbr></td>
<td>Wide characters around line break
<ul class="assert">
<li>If the East Asian Width property of both the character before and after the line feed is W and neither side is Hangul, then the segment break is removed.</li>
</ul>
</td>
</tr>
<tr id="seg-break-transformation-002-4.1.2" class="primary script">
<td><strong>
<a href="seg-break-transformation-002.xht">seg-break-transformation-002</a></strong></td>
<td></td>
<td><abbr class="script" title="Executes tests in script">Script</abbr></td>
<td>Fullwidth characters around line break
<ul class="assert">
<li>If the East Asian Width property of both the character before and after the line feed is F and neither side is Hangul, then the segment break is removed.</li>
</ul>
</td>
</tr>
<tr id="seg-break-transformation-003-4.1.2" class="primary script">
<td><strong>
<a href="seg-break-transformation-003.xht">seg-break-transformation-003</a></strong></td>
<td></td>
<td><abbr class="script" title="Executes tests in script">Script</abbr></td>
<td>Halfwidth characters around line break
<ul class="assert">
<li>If the East Asian Width property of both the character before and after the line feed is H and neither side is Hangul, then the segment break is removed.</li>
</ul>
</td>
</tr>
<tr id="seg-break-transformation-004-4.1.2" class="primary script">
<td><strong>
<a href="seg-break-transformation-004.xht">seg-break-transformation-004</a></strong></td>
<td></td>
<td><abbr class="script" title="Executes tests in script">Script</abbr></td>
<td>Won and halfwidth characters around line break
<ul class="assert">
<li>If the East Asian Width property of both the character before and after the line feed is F or H and neither side is Hangul, then the segment break is removed.</li>
</ul>
</td>
</tr>
<tr id="seg-break-transformation-005-4.1.2" class="primary script">
<td><strong>
<a href="seg-break-transformation-005.xht">seg-break-transformation-005</a></strong></td>
<td></td>
<td><abbr class="script" title="Executes tests in script">Script</abbr></td>
<td>Wide character and non-wide character around line break
<ul class="assert">
<li>If the East Asian Width property of only one character before and after the line feed is F, W or H and neither side is Hangul, then the segment break is converted to a space.</li>
</ul>
</td>
</tr>
<tr id="seg-break-transformation-006-4.1.2" class="primary script">
<td><strong>
<a href="seg-break-transformation-006.xht">seg-break-transformation-006</a></strong></td>
<td></td>
<td><abbr class="script" title="Executes tests in script">Script</abbr></td>
<td>Fullwidth character and non-fullwidth character around line break
<ul class="assert">
<li>If the East Asian Width property of only one character before and after the line feed is F, W or H and neither side is Hangul, then the segment break is converted to a space.</li>
</ul>
</td>
</tr>
<tr id="seg-break-transformation-007-4.1.2" class="primary script">
<td><strong>
<a href="seg-break-transformation-007.xht">seg-break-transformation-007</a></strong></td>
<td></td>
<td><abbr class="script" title="Executes tests in script">Script</abbr></td>
<td>Halfwidth character and non-halfwidth character around line break
<ul class="assert">
<li>If the East Asian Width property of only one character before and after the line feed is F, W or H and neither side is Hangul, then the segment break is converted to a space.</li>
</ul>
</td>
</tr>
<tr id="seg-break-transformation-008-4.1.2" class="primary script">
<td><strong>
<a href="seg-break-transformation-008.xht">seg-break-transformation-008</a></strong></td>
<td></td>
<td><abbr class="script" title="Executes tests in script">Script</abbr></td>
<td>Wide and fullwidth characters around line break
<ul class="assert">
<li>If the East Asian Width property of both the character before and after the line feed is F, W or H and neither side is Hangul, then the segment break is removed.</li>
</ul>
</td>
</tr>
<tr id="seg-break-transformation-009-4.1.2" class="primary script">
<td><strong>
<a href="seg-break-transformation-009.xht">seg-break-transformation-009</a></strong></td>
<td></td>
<td><abbr class="script" title="Executes tests in script">Script</abbr></td>
<td>Fullwidth and halfwidth characters around line break
<ul class="assert">
<li>If the East Asian Width property of both the character before and after the line feed is F, W or H and neither side is Hangul, then the segment break is removed.</li>
</ul>
</td>
</tr>
<tr id="seg-break-transformation-010-4.1.2" class="primary script">
<td><strong>
<a href="seg-break-transformation-010.xht">seg-break-transformation-010</a></strong></td>
<td></td>
<td><abbr class="script" title="Executes tests in script">Script</abbr></td>
<td>Hangul characters around line break
<ul class="assert">
<li>If the East Asian Width property of both the character before and after the line feed is F, W or H and neither side is Hangul, then the segment break is removed. Otherwise, the segment break is converted to a space.</li>
</ul>
</td>
</tr>
<tr id="seg-break-transformation-011-4.1.2" class="primary script">
<td><strong>
<a href="seg-break-transformation-011.xht">seg-break-transformation-011</a></strong></td>
<td></td>
<td><abbr class="script" title="Executes tests in script">Script</abbr></td>
<td>Hangul jamo characters around line break
<ul class="assert">
<li>If the East Asian Width property of both the character before and after the line feed is F, W or H and neither side is Hangul, then the segment break is removed. Otherwise, the segment break is converted to a space.</li>
</ul>
</td>
</tr>
<tr id="seg-break-transformation-012-4.1.2" class="primary script">
<td><strong>
<a href="seg-break-transformation-012.xht">seg-break-transformation-012</a></strong></td>
<td></td>
<td><abbr class="script" title="Executes tests in script">Script</abbr></td>
<td>Hangul halfwidth jamo characters around line break
<ul class="assert">
<li>If the East Asian Width property of both the character before and after the line feed is F, W or H and neither side is Hangul, then the segment break is removed. Otherwise, the segment break is converted to a space.</li>
</ul>
</td>
</tr>
<tr id="seg-break-transformation-014-4.1.2" class="primary script">
<td><strong>
<a href="seg-break-transformation-014.xht">seg-break-transformation-014</a></strong></td>
<td></td>
<td><abbr class="script" title="Executes tests in script">Script</abbr></td>
<td>Thai characters around line break
<ul class="assert">
<li>If the East Asian Width property of both the character before and after the line feed is F, W or H and neither side is Hangul, then the segment break is removed. Otherwise, the segment break is converted to a space.</li>
</ul>
</td>
</tr>
<tr id="seg-break-transformation-015-4.1.2" class="primary script">
<td><strong>
<a href="seg-break-transformation-015.xht">seg-break-transformation-015</a></strong></td>
<td></td>
<td><abbr class="script" title="Executes tests in script">Script</abbr></td>
<td>Thai and Latin characters around line break
<ul class="assert">
<li>If the East Asian Width property of both the character before and after the line feed is F, W or H and neither side is Hangul, then the segment break is removed. Otherwise, the segment break is converted to a space.</li>
</ul>
</td>
</tr>
<tr id="seg-break-transformation-016-4.1.2" class="primary script">
<td><strong>
<a href="seg-break-transformation-016.xht">seg-break-transformation-016</a></strong></td>
<td></td>
<td><abbr class="script" title="Executes tests in script">Script</abbr></td>
<td>Thai with ZWSP before line break
<ul class="assert">
<li>If the character immediately before or immediately after the segment break is the zero-width space character (U+200B), then the break is removed, leaving behind the zero-width space.</li>
</ul>
</td>
</tr>
<tr id="seg-break-transformation-017-4.1.2" class="primary script">
<td><strong>
<a href="seg-break-transformation-017.xht">seg-break-transformation-017</a></strong></td>
<td></td>
<td><abbr class="script" title="Executes tests in script">Script</abbr></td>
<td>Thai with ZWSP after line break
<ul class="assert">
<li>If the character immediately before or immediately after the segment break is the zero-width space character (U+200B), then the break is removed, leaving behind the zero-width space.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-removable-1-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-removable-1.xht">segment-break-transformation-removable-1</a></strong></td>
<td><a href="reference/segment-break-transformation-removable-ref.xht">=</a> </td>
<td></td>
<td>CSS Text 4.1.2. Segment Break Transformation Rules
<ul class="assert">
<li>Test checks that a collapsible segment break should be removed correctly, if the character immediately before/after the segment break is the zero-width space character (U+200B), or both the character before/after the segment break is F, W, or H (not A), and neither side is Hangul.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-removable-2-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-removable-2.xht">segment-break-transformation-removable-2</a></strong></td>
<td><a href="reference/segment-break-transformation-removable-ref.xht">=</a> </td>
<td></td>
<td>CSS Text 4.1.2. Segment Break Transformation Rules
<ul class="assert">
<li>Test checks that multiple segment breaks should be removed correctly, if the character immediately before/after the segment breaks is the zero-width space character (U+200B), or both the character before/after the segment breaks is F, W, or H (not A), and neither side is Hangul.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-removable-3-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-removable-3.xht">segment-break-transformation-removable-3</a></strong></td>
<td><a href="reference/segment-break-transformation-removable-ref.xht">=</a> </td>
<td></td>
<td>CSS Text 4.1.2. Segment Break Transformation Rules
<ul class="assert">
<li>Test checks that a sequence which consists of a collapsible segment break surrounded by multiple white spaces should be removed correctly, if the character immediately before/after the sequence is the zero-width space character (U+200B), or both the character before/after the sequence is F, W, or H (not A), and neither side is Hangul.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-removable-4-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-removable-4.xht">segment-break-transformation-removable-4</a></strong></td>
<td><a href="reference/segment-break-transformation-removable-ref.xht">=</a> </td>
<td></td>
<td>CSS Text 4.1.2. Segment Break Transformation Rules
<ul class="assert">
<li>Test checks that a sequence which consists of multiple collapsible segment breaks mixed with multiple white spaces should be removed correctly, if the character immediately before/after the sequence is the zero-width space character (U+200B), or both the character before/after the sequence is F, W, or H (not A), and neither side is Hangul.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-001-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-001.xht">segment-break-transformation-rules-001</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-001-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Full-width (F)/East Asian Full-width (F) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-002-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-002.xht">segment-break-transformation-rules-002</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-002-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Full-width (F)/East Asian Half-width (H) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-003-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-003.xht">segment-break-transformation-rules-003</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-003-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Full-width (F)/East Asian Wide (W) except Hangul in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-004-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-004.xht">segment-break-transformation-rules-004</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-004-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Full-width (F)/East Asian Narrow (Na) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-005-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-005.xht">segment-break-transformation-rules-005</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-005-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Full-width (F)/East Asian Ambiguous (A) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-006-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-006.xht">segment-break-transformation-rules-006</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-006-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Full-width (F)/Not East Asian (Neutral) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-007-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-007.xht">segment-break-transformation-rules-007</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-007-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Full-width (F)/Hangul in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-008-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-008.xht">segment-break-transformation-rules-008</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-008-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Half-width (H)/East Asian Full-width (F) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-009-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-009.xht">segment-break-transformation-rules-009</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-009-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Half-width (H)/East Asian Half-width (H) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-010-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-010.xht">segment-break-transformation-rules-010</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-010-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Half-width (H)/East Asian Wide (W) except Hangul in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-011-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-011.xht">segment-break-transformation-rules-011</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-011-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Half-width (H)/East Asian Narrow (Na) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-012-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-012.xht">segment-break-transformation-rules-012</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-012-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Half-width (H)/East Asian Ambiguous (A) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-013-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-013.xht">segment-break-transformation-rules-013</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-013-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Half-width (H)/Not East Asian (Neutral) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-014-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-014.xht">segment-break-transformation-rules-014</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-014-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Half-width (H)/Hangul in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-015-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-015.xht">segment-break-transformation-rules-015</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-015-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Wide (W) except Hangul/East Asian Full-width (F) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-016-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-016.xht">segment-break-transformation-rules-016</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-016-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Wide (W) except Hangul/East Asian Half-width (H) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-017-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-017.xht">segment-break-transformation-rules-017</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-017-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Wide (W) except Hangul/East Asian Wide (W) except Hangul in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-018-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-018.xht">segment-break-transformation-rules-018</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-018-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Wide (W) except Hangul/East Asian Narrow (Na) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-019-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-019.xht">segment-break-transformation-rules-019</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-019-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Wide (W) except Hangul/East Asian Ambiguous (A) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-020-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-020.xht">segment-break-transformation-rules-020</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-020-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Wide (W) except Hangul/Not East Asian (Neutral) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-021-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-021.xht">segment-break-transformation-rules-021</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-021-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Wide (W) except Hangul/Hangul in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-022-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-022.xht">segment-break-transformation-rules-022</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-022-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Narrow (Na)/East Asian Full-width (F) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-023-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-023.xht">segment-break-transformation-rules-023</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-023-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Narrow (Na)/East Asian Half-width (H) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-024-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-024.xht">segment-break-transformation-rules-024</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-024-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Narrow (Na)/East Asian Wide (W) except Hangul in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-025-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-025.xht">segment-break-transformation-rules-025</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-025-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Narrow (Na)/East Asian Narrow (Na) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-026-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-026.xht">segment-break-transformation-rules-026</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-026-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Narrow (Na)/East Asian Ambiguous (A) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-027-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-027.xht">segment-break-transformation-rules-027</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-027-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Narrow (Na)/Not East Asian (Neutral) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-028-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-028.xht">segment-break-transformation-rules-028</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-028-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Narrow (Na)/Hangul in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-029-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-029.xht">segment-break-transformation-rules-029</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-029-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Ambiguous (A)/East Asian Full-width (F) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-030-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-030.xht">segment-break-transformation-rules-030</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-030-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Ambiguous (A)/East Asian Half-width (H) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-031-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-031.xht">segment-break-transformation-rules-031</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-031-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Ambiguous (A)/East Asian Wide (W) except Hangul in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-032-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-032.xht">segment-break-transformation-rules-032</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-032-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Ambiguous (A)/East Asian Narrow (Na) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-033-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-033.xht">segment-break-transformation-rules-033</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-033-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Ambiguous (A)/East Asian Ambiguous (A) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-034-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-034.xht">segment-break-transformation-rules-034</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-034-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Ambiguous (A)/Not East Asian (Neutral) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-035-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-035.xht">segment-break-transformation-rules-035</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-035-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with East Asian Ambiguous (A)/Hangul in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-036-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-036.xht">segment-break-transformation-rules-036</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-036-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with Not East Asian (Neutral)/East Asian Full-width (F) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-037-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-037.xht">segment-break-transformation-rules-037</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-037-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with Not East Asian (Neutral)/East Asian Half-width (H) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-038-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-038.xht">segment-break-transformation-rules-038</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-038-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with Not East Asian (Neutral)/East Asian Wide (W) except Hangul in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-039-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-039.xht">segment-break-transformation-rules-039</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-039-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with Not East Asian (Neutral)/East Asian Narrow (Na) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-040-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-040.xht">segment-break-transformation-rules-040</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-040-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with Not East Asian (Neutral)/East Asian Ambiguous (A) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-041-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-041.xht">segment-break-transformation-rules-041</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-041-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with Not East Asian (Neutral)/Not East Asian (Neutral) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-042-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-042.xht">segment-break-transformation-rules-042</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-042-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with Not East Asian (Neutral)/Hangul in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-043-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-043.xht">segment-break-transformation-rules-043</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-043-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with Hangul/East Asian Full-width (F) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-044-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-044.xht">segment-break-transformation-rules-044</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-044-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with Hangul/East Asian Half-width (H) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-045-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-045.xht">segment-break-transformation-rules-045</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-045-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with Hangul/East Asian Wide (W) except Hangul in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-046-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-046.xht">segment-break-transformation-rules-046</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-046-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with Hangul/East Asian Narrow (Na) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-047-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-047.xht">segment-break-transformation-rules-047</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-047-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with Hangul/East Asian Ambiguous (A) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-048-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-048.xht">segment-break-transformation-rules-048</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-048-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with Hangul/Not East Asian (Neutral) in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-rules-049-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-rules-049.xht">segment-break-transformation-rules-049</a></strong></td>
<td><a href="reference/segment-break-transformation-rules-049-ref.xht">=</a> </td>
<td></td>
<td>Segment Break Transformation Rules
<ul class="assert">
<li>'segment-break-transformation-rules: with Hangul/Hangul in front/back of the semgment break.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-unremovable-1-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-unremovable-1.xht">segment-break-transformation-unremovable-1</a></strong></td>
<td><a href="reference/segment-break-transformation-unremovable-ref.xht">=</a> </td>
<td></td>
<td>CSS Text 4.1.2. Segment Break Transformation Rules
<ul class="assert">
<li>Test checks that a collapsible segment break should be converted to a white space (U+0020), if both the character before/after the segment break is Hangul.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-unremovable-2-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-unremovable-2.xht">segment-break-transformation-unremovable-2</a></strong></td>
<td><a href="reference/segment-break-transformation-unremovable-ref.xht">=</a> </td>
<td></td>
<td>CSS Text 4.1.2. Segment Break Transformation Rules
<ul class="assert">
<li>Test checks that multiple segment breaks should be converted to a white space (U+0020), if both the character before/after the segment breaks is Hangul.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-unremovable-3-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-unremovable-3.xht">segment-break-transformation-unremovable-3</a></strong></td>
<td><a href="reference/segment-break-transformation-unremovable-ref.xht">=</a> </td>
<td></td>
<td>CSS Text 4.1.2. Segment Break Transformation Rules
<ul class="assert">
<li>Test checks that a sequence which consists of a collapsible segment break surrounded by multiple white spaces should be converted to a white space (U+0020), if both the character before/after the sequence is Hangul.</li>
</ul>
</td>
</tr>
<tr id="segment-break-transformation-unremovable-4-4.1.2" class="primary">
<td><strong>
<a href="segment-break-transformation-unremovable-4.xht">segment-break-transformation-unremovable-4</a></strong></td>
<td><a href="reference/segment-break-transformation-unremovable-ref.xht">=</a> </td>
<td></td>
<td>CSS Text 4.1.2. Segment Break Transformation Rules
<ul class="assert">
<li>Test checks that a sequence which consists of multiple collapsible segment breaks mixed with multiple white spaces should be converted to a white space (U+0020), if both the character before/after the sequence is Hangul.</li>
</ul>
</td>
</tr>
<tr id="white-space-collapse-000-4.1.2" class="primary script">
<td><strong>
<a href="white-space-collapse-000.xht">white-space-collapse-000</a></strong></td>
<td></td>
<td><abbr class="script" title="Executes tests in script">Script</abbr></td>
<td>White space collapse
<ul class="assert">
<li>Every tab is converted to a space. Any space immediately following another collapsible space is collapsed to have zero advance width.</li>
</ul>
</td>
</tr>
<tr id="white-space-collapse-001-4.1.2" class="primary script">
<td><strong>
<a href="white-space-collapse-001.xht">white-space-collapse-001</a></strong></td>
<td></td>
<td><abbr class="script" title="Executes tests in script">Script</abbr></td>
<td>White space and non-ASCII spaces
<ul class="assert">
<li>Any space immediately following another collapsible space is collapsed to have zero advance width. Only refers to U+0020, not other Unicode spaces.</li>
</ul>
</td>
</tr>
<tr id="white-space-collapse-002-4.1.2" class="primary script">
<td><strong>
<a href="white-space-collapse-002.xht">white-space-collapse-002</a></strong></td>
<td></td>
<td><abbr class="script" title="Executes tests in script">Script</abbr></td>
<td>Whitespace and bidi control characters
<ul class="assert">
<li>All spaces and tabs immediately preceding or following a segment break are removed, ignoring bidi formatting characters as if they were not there.</li>
</ul>
</td>
</tr>
</tbody>
<tbody id="s4.1.3">
<tr><th colspan="4" scope="rowgroup">
<a href="#s4.1.3">+</a>
<a href="https://www.w3.org/TR/css-text-3/#white-space-phase-2">4.1.3 Phase II: Trimming and Positioning</a></th></tr>
<!-- 0 tests -->
</tbody>
<tbody id="s4.1.3.#preserved">
<!-- 0 tests -->
</tbody>
<tbody id="s4.1.3.#tab-stops">
<!-- 0 tests -->
</tbody>
<tbody id="s4.2">
<tr><th colspan="4" scope="rowgroup">
<a href="#s4.2">+</a>
<a href="https://www.w3.org/TR/css-text-3/#tab-size-property">4.2 Tab Character Size: the ‘tab-size’ property</a></th></tr>
<!-- 0 tests -->
</tbody>
<tbody id="s4.2.#tab-size">
<!-- 6 tests -->
<tr id="tab-size-integer-001-4.2.#tab-size" class="">
<td>
<a href="tab-size-integer-001.xht">tab-size-integer-001</a></td>
<td><a href="reference/tab-size-integer-001-ref.xht">=</a> </td>
<td></td>
<td>tab-size: 4
<ul class="assert">
<li>Tab should be rendered as 4 times the space character&#8217;s advance width (U+0020)</li>
</ul>
</td>
</tr>
<tr id="tab-size-integer-002-4.2.#tab-size" class="">
<td>
<a href="tab-size-integer-002.xht">tab-size-integer-002</a></td>
<td><a href="reference/tab-size-integer-001-ref.xht">=</a> </td>
<td></td>
<td>tab-size: -4
<ul class="assert">
<li>Tab-size negative values are not allowed</li>
</ul>
</td>
</tr>
<tr id="tab-size-integer-003-4.2.#tab-size" class="">
<td>
<a href="tab-size-integer-003.xht">tab-size-integer-003</a></td>
<td><a href="reference/tab-size-integer-001-ref.xht">=</a> </td>
<td></td>
<td>tab-size: 0
<ul class="assert">
<li>Tab should be rendered as 0 times the space character&#8217;s advance width (U+0020)</li>
</ul>
</td>
</tr>
<tr id="tab-size-length-001-4.2.#tab-size" class="">
<td>
<a href="tab-size-length-001.xht">tab-size-length-001</a></td>
<td><a href="reference/tab-size-length-001-ref.xht">=</a> </td>
<td></td>
<td>tab-size: 1em
<ul class="assert">
<li>Tab should be rendered as 1em (20px)</li>
</ul>
</td>
</tr>
<tr id="tab-size-length-002-4.2.#tab-size" class="">
<td>
<a href="tab-size-length-002.xht">tab-size-length-002</a></td>
<td><a href="reference/tab-size-length-001-ref.xht">=</a> </td>
<td></td>
<td>tab-size: -1em
<ul class="assert">
<li>Tab-size negative length values are not allowed</li>
</ul>
</td>
</tr>
<tr id="tab-size-percent-001-4.2.#tab-size" class="">
<td>
<a href="tab-size-percent-001.xht">tab-size-percent-001</a></td>
<td><a href="reference/tab-size-length-001-ref.xht">=</a> </td>
<td></td>
<td>tab-size: 100%
<ul class="assert">
<li>Tab-size percentage values are not allowed</li>
</ul>
</td>
</tr>
</tbody>
</table>
</body>
</html>
|