-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathawami_tests.xml
3463 lines (3461 loc) · 139 KB
/
awami_tests.xml
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
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="Testing.xsl"?>
<ftml version="1.0">
<head>
<columns comment="30%" label="25%" string="45%" />
<fontsrc>url(..\results\AwamiNastaliq-Dev.ttf)</fontsrc>
<styles>
<style feats="=0 agca=3 dbsp=0 hehk=1 olap=2" name="fset10" />
<style feats="dbsp=1 wdsp=4" name="fset13" />
<style feats="hehk=0 olap=2" name="fset2" />
<style feats="hamz=1" name="fset22" />
<style feats="snuq=1" name="fset28" />
<style feats="agca=3 cv78=1 hamz=0 hedo=0 hehk=1 invs=0 lamv=0 shrt=3 snuq=0 wdsp=2" name="fset29" />
<style feats="hehk=1 olap=2" name="fset3" />
<style feats="shrt=3" name="fset30" />
<style feats="agca=3 cv78=1 hamz=0 hedo=0 hehk=1 invs=0 lamv=0 shrt=0 snuq=0 wdsp=2" name="fset31" />
<style feats="invs=1" name="fset32" />
<style feats="wdsp=4" name="fset33" />
<style feats="invs=1 wdsp=1" name="fset34" />
<style feats="cv85=1" name="fset35" />
<style feats="agca=3 cv78=1 cv85=0 hamz=0 hedo=0 hehk=1 invs=0 lamv=0 shrt=0 snuq=0 wdsp=2" name="fset37" />
<style feats="invs=1 wdsp=4" name="fset38" />
<style feats="wdsp=1" name="fset39" />
<style feats="shrt=2" name="fset40" />
<style feats="shrt=1" name="fset41" />
<style feats="hamz=1 shrt=3" name="fset42" />
<style feats="olap=2" name="fset5" />
<style feats="agca=3 hehk=1 olap=2" name="fset7" />
<style feats="lamv=1" name="fset7164" />
<style feats="agca=3 dbsp=0 hehk=1 wdsp=2" name="fset7425" />
<style feats="agca=3 dbgf=1 hedo=0 hehk=1 invs=0 wdsp=2" name="fset7426" />
<style feats="hedo=0 =0 agca=3 cv78=1 dbgf=1 hehk=1 invs=0 wdsp=2" name="fset7427" />
<style feats="agca=3 cv78=1 cv85=0 hamz=0 hedo=0 hehk=1 invs=0 lamv=0 punc=0 shrt=0 snuq=0 wdsp=2" name="fset7428" />
<style feats="hedo=0 hehk=1 invs=0 wdsp=2 agca=3 cv78=1 dbgf=1" name="fset7429" />
<style feats="hedo=0 hehk=1 invs=0 wdsp=2 agca=3 cv78=1 hamz=0" name="fset7430" />
<style feats="hehk=1 agca=3 cv78=1 hamz=0 hedo=0 invs=0 sfin=1 wdsp=2" name="fset7431" />
<style feats="=0 agca=3 hehk=1 olap=2" name="fset7432" />
<style feats="agca=3 dbsp=0 hehk=1 olap=2" name="fset7433" />
<style feats="agca=3 dbgf=1 dbsp=0 hedo=0 hehk=1 wdsp=2" name="fset7434" />
<style feats="hamz=0 wdsp=2 shrt=0 snuq=0 agca=3 invs=0 hehk=1 hedo=0 lamv=0 cv85=0 punc=0 cv78=1" name="fset7435" />
<style feats="hedo=0 agca=3 cv78=1 dbgf=1 hamz=0 hehk=1 invs=0 wdsp=2" name="fset7436" />
<style feats="dbsp=0 hedo=0 hehk=1 wdsp=2 =0 agca=3 dbgf=1" name="fset7437" />
<style feats="hedo=0 hehk=1 invs=0 wdsp=2 =0 agca=3 dbgf=1" name="fset7438" />
<style feats="agca=3 invs=0 hehk=1 hedo=0 lamv=0 cv85=0 punc=0 cv78=1 hamz=0 wdsp=2 shrt=0 snuq=0" name="fset7439" />
</styles>
</head>
<testgroup label="main">
<test background="#ffff7f" class="fset30" label="analyze" rtl="True">
<comment>This test is mainly for figuring out what characters are in the data.</comment>
<string>ہرکفلس</string>
</test>
<test label="kafI & seenM" rtl="True">
<string>کسس</string>
</test>
<test label="noon & beh" rtl="True">
<string>نبہ | ببہ</string>
</test>
<test label="sad/seenI & behM" rtl="True">
<string>سبو | صبص | سبع</string>
</test>
<test label="sad/seenI & laamM" rtl="True">
<string>صلج |صلھ | صلو</string>
</test>
<test label="sad/seenI & noonM" rtl="True">
<string>صنب | صنع | سنص | سنق</string>
</test>
<test label="sad/seenI & farsiyehM" rtl="True">
<string>سےصُحبت</string>
</test>
<test label="kafI & toaM" rtl="True">
<string>خبِیثوں</string>
</test>
<test label="laam & alif" rtl="True">
<string>لا | بلا | جبصلاکب |لا</string>
</test>
<test label="laam & alifmad" rtl="True">
<string>لآ | کجلآ</string>
</test>
<test label="laam & alifhamza" rtl="True">
<string>لأ | کجلأص</string>
</test>
<test label="alifmadd & ghaf">
<string>آگ</string>
</test>
<test label="nukta attrs" rtl="True">
<string>بپٹث</string>
</test>
<test label="yay (jeh)" rtl="True">
<string>پژ | پر</string>
</test>
<test label="kaf + ghaf" rtl="True">
<string>ککر | کگر | گگر | ککڑ</string>
</test>
<test label="ghaf + jeem + kaf" rtl="True">
<string>گجک</string>
</test>
<test label="early att, no late att" rtl="True">
<string>صلہصیہ</string>
</test>
<test label="central kaf" rtl="True">
<string>بیکسا | کہکشا | گجگجا | میگنٹ</string>
</test>
<test label="central kaf 2" rtl="True">
<string>ملکیت | بلکھڑ | کلکٹر</string>
</test>
<test label="medial beh sequence" rtl="True">
<comment>These test situations where we need to back up in pass 5 in order to handle a sequence of behs.</comment>
<string>کلینر | جینیر | مستتر | گھبیر</string>
</test>
<test label="initial + meem + laam" rtl="True">
<string>کاٞنۡنی حاٞ</string>
</test>
<test label="meem + final alef" rtl="True">
<string>جھلما | لعلما</string>
</test>
<test label="kaf + beh + final alef" rtl="True">
<string>چٹکتا | مہکتا</string>
</test>
<test label="hamzayay NFD" rtl="True">
<string>بھجئے | ئینچو</string>
</test>
<test label="hamzayay NFC" rtl="True">
<string>بھجئے | ئینچو</string>
</test>
<test label="hamzayay NFD - final" rtl="True">
<string>پستئ | غلئ</string>
</test>
<test label="hamzayay NFC - final" rtl="True">
<string>پستئ | غلئ</string>
</test>
<test label="hamzayay NFD reorder" rtl="True">
<string>بَخشِتئَگا | ائینئَگ | تَئَگیں</string>
</test>
<test label="hamzabariyay" rtl="True">
<string>جسۓ</string>
</test>
<test label="heh-hamza" rtl="True">
<string>غنچۂ | غنچۂ</string>
</test>
<test label="blog post example" rtl="True">
<string>ھبگجس</string>
</test>
<test label="jeem seen suad" rtl="True">
<string>جسجصل</string>
</test>
<test label="noon-ghunna" rtl="True">
<string>ں | ںسج | سںع | طعں</string>
</test>
<test label="xxx" rtl="True">
<string>پَیدائش</string>
</test>
<test label="WP bug" rtl="True">
<string>آخرخَیل بخشَݨہار</string>
</test>
<test label="200E - LRM" rtl="True">
<string>بچبچا | بخشَݨہار</string>
</test>
<test label="zwj" rtl="True">
<string>ب قس ظمش</string>
</test>
<test label="0768 noon w/ small toa" rtl="True">
<string>آئݨدݨمݨشݨ | آئندنمنشن</string>
</test>
<test label="dal w/ two dots and toa" rtl="True">
<string>ݙتݙجشݙ</string>
</test>
<test label="goal hay" rtl="True">
<string>ہلہب</string>
</test>
<test background="#ff0000" label="Allah" rtl="True">
<string>اللہ</string>
</test>
<test background="#ff0000" label="Muhammad" rtl="True">
<string>اِڷ</string>
</test>
<test label="jesus1" rtl="True">
<string>یِسُوؔعۜ</string>
</test>
<test class="fset10" label="jesus2" rtl="True">
<string>عِیسٰی سلامه علینا</string>
</test>
<test class="fset10" label="jesus3" rtl="True">
<string>آپۜ</string>
</test>
<test class="fset28" label="bug" rtl="True">
<string>ڳخ</string>
</test>
<test label="bug" rtl="True">
<string>اقوامِ متحدہ</string>
</test>
<test class="fset7425" label="reh/zain nuqta positions" rtl="True">
<string>مږ عز فڑ ظژ سژ صڑ ہز بہژ لز لژ جز خژ گڑ</string>
</test>
<test class="fset7425" label="kaf + lower diacs" rtl="True">
<string>ودھارے</string>
</test>
<test class="fset7426" label="new heh doachashmee" rtl="True">
<string>ودھارے پڑھ اہتھ رکھڋ سمجھ جتھاں</string>
</test>
<test class="fset7427" label="meem problems" rtl="True">
<string>جاٞوالاں سلوک کٞر دہ۔ </string>
</test>
<test class="fset7428" label="varying initial heights" rtl="True">
<string>لبف لتف</string>
</test>
<test label="into alef-final" rtl="True">
<string>سبا صبا فبا .</string>
</test>
</testgroup>
<testgroup label="LTR stuff">
<test class="fset7429" label="Arabic numbers">
<string>١٢٣٤٥٦٧٨٩٠</string>
</test>
<test class="fset7430" label="Eastern digits">
<string>۱۲۳۴۵۶۷۸۹۰</string>
</test>
<test class="fset7429" label="Latin numbers">
<string>1234</string>
</test>
<test class="fset7427" label="Eastern number combinations">
<string>۵۴۵۳۵۶۷۸۵۸۵</string>
</test>
<test class="fset7427" label="year sign (sanah) - digits">
<string>5 ٥٦ 123 1973</string>
</test>
<test class="fset7429" label="year sign - three digits">
<string>123</string>
</test>
<test class="fset7427" label="number sign">
<string>1 23 346 9876 </string>
</test>
<test class="fset7427" label="page sign">
<string>1 45 345 4567 ۵۷۰</string>
</test>
<test class="fset7427" label="footnote sign">
<string>1 12 ٣٤</string>
</test>
<test class="fset7428" label="samvat">
<string>1973</string>
</test>
<test class="fset7427" label="end of ayah - Latin">
<string>8 88 888 56 482</string>
</test>
<test class="fset7427" label="end of ayah - std Arabic">
<string>٦ ٣٥ ٤٠٧ ٤١٨</string>
</test>
<test class="fset7427" label="end of ayah - Eastern">
<string>۱ ۴۶ ۴۳۷ ۴۵۸</string>
</test>
<test class="fset7429" label="Latin NFD">
<comment>Only combinations in CP 1252 are supported!!!</comment>
<string>ábĉ̃</string>
</test>
<test class="fset7429" label="Latin spacing">
<string>The quick brown fox jumps over the lazy dog.</string>
</test>
<test background="#55aaff" class="fset7429" label="RIGHT-TO-LEFT VERSIONS" rtl="True">
<string />
</test>
<test background="#55aaff" class="fset7429" label="as needed for buggy apps" rtl="True">
<string />
</test>
<test class="fset7429" label="page sign - RTL" rtl="True">
<string>5432</string>
</test>
<test class="fset7429" label="end of ayah - RTL" rtl="True">
<string>321</string>
</test>
<test class="fset7429" label="year sign in context" rtl="True">
<comment>Note that no app should pass data like this, because it mixes RTL and LTR data.</comment>
<string>نے ڋہ دسمبر 8491 کوں انسانی حقوق</string>
</test>
<test class="fset7428" label="samvat - RTL" rtl="True">
<string>٥٤٩١</string>
</test>
</testgroup>
<testgroup label="Shaping rules">
<test background="#55aaff" class="fset7430" label="FINALS" rtl="True">
<string />
</test>
<test class="fset7430" label="gBehFin - default" rtl="True">
<string>ملت سب عټ</string>
</test>
<test class="fset7430" label="gBehFin_bfkl" rtl="True">
<string>فب کٹ یت</string>
</test>
<test class="fset7430" label="gChotiyehFin - default" rtl="True">
<string>لسی ڄئ</string>
</test>
<test class="fset7430" label="gChotiyehFin_bfkl" rtl="True">
<string>سگی کھلی ڥئ ڵی</string>
</test>
<test class="fset7430" label="gQaf/WawFin - default" rtl="True">
<string>عو فبق لمو</string>
</test>
<test class="fset7430" label="gQaf/WawFin_stfh" rtl="True">
<string>سق لفو ڇھق</string>
</test>
<test class="fset7430" label="gRehFin - default" rtl="True">
<string>عر لھز سظݱ سنڙ</string>
</test>
<test class="fset7430" label="gRehFin_sshg" rtl="True">
<string>ہر جسڑ بنر سضڙ لبر مز</string>
</test>
<test class="fset7430" label="gRehFin_hgM" rtl="True">
<string>صہر بہړِ</string>
</test>
<test class="fset7430" label="gRehFin_jkl" rtl="True">
<string>جر کڗ بگڗ لژ بر</string>
</test>
<test background="#55aaff" class="fset7430" label="MEEM" rtl="True">
<string />
</test>
<test class="fset7430" label="Standard meem" rtl="True">
<string>قلمل کمبن فمس کمگ ممک</string>
</test>
<test class="fset7430" label="Alternate meem" rtl="True">
<string>عما سکمل جمد ظملا فمل ممݪ</string>
</test>
<test class="fset7430" label="gBehIniMmM - OBSOLETE" rtl="True">
<comment>This form is no longer used.</comment>
<string>اِنمی یمبو</string>
</test>
<test class="fset7430" label="gMeemMedBeNn_alt" rtl="True">
<string>عمبن لجمنݨ</string>
</test>
<test class="fset7428" label="meem w/ lower diac" rtl="True">
<string>هم سمِ مدام علومِ نام کئوم </string>
</test>
<test background="#55aaff" class="fset7430" label="BEH" rtl="True">
<string />
</test>
<test class="fset7430" label="gBehMedXX_ss" rtl="True">
<string>ستب ضبط کشنف فصیق</string>
</test>
<test class="fset7430" label="gBehMedNn_hgbm" rtl="True">
<string>سنببن متن کَتَنُن</string>
</test>
<test class="fset7430" label="gBehMedHgF_be" rtl="True">
<string>ببہ اینہ</string>
</test>
<test class="fset7430" label="gBehIniMmM" rtl="True">
<string>بمک</string>
</test>
<test class="fset7430" label="initial behs" rtl="True">
<string>تسج بق بے بعل</string>
</test>
<test class="fset29" label="low tooth" rtl="True">
<string>جبہ جنبر عببہ لبہ</string>
</test>
<test background="#55aaff" class="fset7430" label="LAM" rtl="True">
<string />
</test>
<test class="fset7430" label="lam+alef" rtl="True">
<string>لا بلا سلامُهُ اعلان</string>
</test>
<test background="#55aaff" class="fset7430" label="KAF / GAF" rtl="True">
<string />
</test>
<test class="fset7430" label="Default - uses sad interface" rtl="True">
<string>لکا عکل قکا نکݪئی مُشکِل</string>
</test>
<test class="fset7430" label="gKaf/GafIniLm" rtl="True">
<string>کل ڳݪ</string>
</test>
<test class="fset7430" label="gKaf/GafIniDk, gKaf/GafMedDk" rtl="True">
<string>گد سکد مکگ</string>
</test>
<test class="fset7430" label="gKaf/GafIniKf" rtl="True">
<string>گڱ گگ ګڳ ککس</string>
</test>
<test class="fset7430" label="gKafIniBeM2 + beh" rtl="True">
<string>کبل گبد گبک</string>
</test>
<test class="fset7430" label="gGafMed_short" rtl="True">
<string>کُنگَکہ تِخِنگِک</string>
</test>
<test background="#55aaff" class="fset7430" label="PRE-KAF" rtl="True">
<string />
</test>
<test class="fset7430" label="tah + kaf" rtl="True">
<string>ظکک سطکب سطل سطکا لظگمس</string>
</test>
<test class="fset7430" label="tah + beh + kaf" rtl="True">
<string>طبگج طبگس سطبگج</string>
</test>
<test class="fset7430" label="tah + kaf bug" rtl="True">
<string>لطکمس لظکمس</string>
</test>
<test class="fset7430" label="lam (+beh) + kaf" rtl="True">
<string>لکب نلکی </string>
</test>
<test class="fset7428" label="short lam" rtl="True">
<string>ݪگک بݪگگم علګف لګج سلګ لګس</string>
</test>
<test background="#55aaff" class="fset7430" label="BEH SEQUENCES" rtl="True">
<string />
</test>
<test class="fset7430" label="be - gSeenMedBe" rtl="True">
<string>پسیجتے </string>
</test>
<test class="fset7430" label="be - gGafMedBe" rtl="True">
<string>میگنٹ</string>
</test>
<test class="fset7430" label="be - gKafMedBe" rtl="True">
<string>الحکِیم</string>
</test>
<test class="fset7430" label="initial beM1" rtl="True">
<string>صبط عِیسٰیۜ لثثک</string>
</test>
<test class="fset7430" label="medial beM1" rtl="True">
<string>لصبس جعِیسٰن بقنثک</string>
</test>
<test class="fset7430" label="initial beM2" rtl="True">
<string>سببس مُنک کببس </string>
</test>
<test class="fset7430" label="medial beM2" rtl="True">
<string>عقيد جعبا لطبد لفببببس</string>
</test>
<test class="fset7430" label="beF" rtl="True">
<string>سب لفت</string>
</test>
<test background="#55aaff" class="fset7430" label="SEEN/SAD + BEH" rtl="True">
<string />
</test>
<test class="fset7430" label="gSeen/SadMedBeM1" rtl="True">
<string>لسبب مصیب کسبتہ</string>
</test>
<test class="fset7430" label="gSeen/SadMedBe" rtl="True">
<string>جسبی طصنے قصٻمل</string>
</test>
<test class="fset7430" label="gSeen/SadIniBeM1" rtl="True">
<string>سبب صیب سبتہ</string>
</test>
<test class="fset7430" label="gSeen/SadIniBe" rtl="True">
<string>سبی صنے صٻمل</string>
</test>
<test class="fset7431" label="seen + seen + seen" rtl="True">
<string>سُشسَس</string>
</test>
<test background="#55aaff" class="fset7430" label="PRE-BEH" rtl="True">
<string />
</test>
<test class="fset7430" label="cIniBeHg_BeRe" rtl="True">
<string>ببنر جبنر سبنر صبنر طبنر عبنر فبنر کبنر لبنر مبنر ہبنر ھبنر</string>
</test>
<test class="fset7430" label="cIniBehM1_noS" rtl="True">
<string>طبسم جببہ لببب فببببب</string>
</test>
<test class="fset7430" label="cIniBeM2" rtl="True">
<string>جبتن ھبل</string>
</test>
<test class="fset7430" label="gLamIniMm" rtl="True">
<string>لمل</string>
</test>
<test class="fset7430" label="_ cBehMed_postBeM" rtl="True">
<string>لبم طبج لبھ</string>
</test>
<test label="sad + beh + ain/feh/..." rtl="True">
<string>صنف صبع صیق صپص صنط صنب</string>
</test>
</testgroup>
<testgroup label="Ligatures">
<test class="fset7426" label="allah" rtl="True">
<string>اللہ اللّٰہ اللّٰه</string>
</test>
<test class="fset7429" label="FDF2" rtl="True">
<string>ﷲ</string>
</test>
<test class="fset7427" label="final dal" rtl="True">
<string>الحَمْدللہ</string>
</test>
<test class="fset7427" label="final alef" rtl="True">
<string>نعوذ بالله</string>
</test>
<test class="fset7429" label="final connecting form" rtl="True">
<string>سَللہ بجللّٰہ</string>
</test>
<test class="fset7427" label="diac on lig" rtl="True">
<comment>The zair on the final heh-goal of the word Allah does not prevent the ligature.</comment>
<string>بِسْمِ اللہِ الرَّحْمٰنِ الرَّحِیم</string>
</test>
<test class="fset7429" label="after space - no ligature" rtl="True">
<string>الحَمْد للہ</string>
</test>
<test class="fset7429" label="bad diac comb - no ligature" rtl="True">
<string>اللٰہ اللُہ</string>
</test>
<test class="fset7429" label="heh-goal not final - no ligature" rtl="True">
<string>اللہس</string>
</test>
<test class="fset7430" label="bismillah text" rtl="True">
<comment>This probably doesn't include all the vowel marks.</comment>
<string>بِسمِ اللہ الرَّ حمن الرَّ حࣿیمِ</string>
</test>
<test class="fset7430" label="salaam ulena text" rtl="True">
<comment>Just for comparing with the ligature</comment>
<string>سلامُهُ عَلَینَا | سلامهٗ علینا</string>
</test>
<test class="fset29" label="salaam ulena" rtl="True">
<string>سلامهٗعلینا | سلامه علینا</string>
</test>
<test class="fset29" label="salaam ulena in context" rtl="True">
<string>عِیسٰی سلامه علینا اقیس</string>
</test>
<test class="fset7428" label="rial - in context" rtl="True">
<string>ساف ﷼ بمل</string>
</test>
</testgroup>
<testgroup label="Spacing and kerning">
<test class="fset7" label="alef + kaf" rtl="True">
<string>اگلے</string>
</test>
<test class="fset7432" label="alef + kaf (iso)" rtl="True">
<string>ساک</string>
</test>
<test class="fset13" label="noon + space + dal" rtl="True">
<string>متن درج</string>
</test>
<test class="fset7432" label="alef + high seq" rtl="True">
<string>اسمبلی</string>
</test>
<test class="fset7432" label="waw + yey" rtl="True">
<string>قویت قونت</string>
</test>
<test class="fset7432" label="rehFin + alef" rtl="True">
<string>اشتراکِ</string>
</test>
<test class="fset7" label="rehFin_sshg + lam" rtl="True">
<string>جنرل</string>
</test>
<test class="fset7" label="rehFin_sshg + feh" rtl="True">
<string>دسمبرف</string>
</test>
<test class="fset7" label="rehFin_jkl + alef" rtl="True">
<string>پرا</string>
</test>
<test class="fset7" label="before comma" rtl="True">
<string>آزادی،</string>
</test>
<test class="fset7" label="bariyeh" rtl="True">
<string>آیٔے جس</string>
</test>
<test class="fset7" label="bariyeh + short seq" rtl="True">
<string>آیٔےخس</string>
</test>
<test class="fset7" label="kaf + ... + bariyeh" rtl="True">
<string>اکے اکسے اکسمے</string>
</test>
<test class="fset7" label="short sequences" rtl="True">
<string>پر زور دیا کہ و</string>
</test>
<test class="fset7" label="short seq 2" rtl="True">
<string>عملداری ک</string>
</test>
<test class="fset7" label="short seq 3" rtl="True">
<string>اور قدر اور مردوں اور عورتوں روزہ</string>
</test>
<test class="fset7" label="short seq 4" rtl="True">
<string>نے کا ارادہ کیا</string>
</test>
<test class="fset7" label="short seq 5" rtl="True">
<string>آباواجداد</string>
</test>
<test class="fset7" label="short seq 6" rtl="True">
<string>ازادیاں</string>
</test>
<test class="fset7" label="kaf 150" rtl="True">
<string>رگبہ اگیتا اَگَبُس</string>
</test>
<test class="fset7" label="kaf 200" rtl="True">
<string>اگع اگتما</string>
</test>
<test class="fset7" label="kaf 300" rtl="True">
<string>ارک آسُودگی آوارگی اَوگُوستُس اَیساگُمراہ آتاکہ</string>
</test>
<test class="fset7" label="kern test 1" rtl="True">
<comment>This is the sample I sent to Sheldon and Malachi to ask about kerning and spacing.</comment>
<string>اقوام متحدہ نے ہر کہیں دے حقوق دی</string>
</test>
<test class="fset7" label="kern test 2" rtl="True">
<string>تے مجبور تھیوڻ کنوں بچاوڻ کیتے ضروری</string>
</test>
<test label="Urdu - long 1" rtl="True">
<string>چونکہ ہر انسان کی ذاتی عزت اور حرمت اور انسانوں کے مساوی اور ناقابلِ انتقال</string>
</test>
<test class="fset10" label="Urdu - long 2" rtl="True">
<string>میں اپنے عقیدے کی دوبارہ تصدیق کردی ہے اور وسیع تر آزادی کی فضا میں</string>
</test>
<test class="fset10" label="Urdu - long 3" rtl="True">
<string>جایٔے گا۔ چاہے وہ ملک یا علاقہ آزاد ہو یا تولیتی ہو یا غیر مختار ہو یا سیاسی اقتدار کے لحاظ سے</string>
</test>
<test class="fset10" label="Urdu - long 4" rtl="True">
<string>ہر شخص کو ان افعال کے خلاف جو اس دستور یا قانون میں دیٔے ہویٔے بنیادی حقوق</string>
</test>
<test class="fset10" label="Saraiki - long 1" rtl="True">
<string>ایند اعام اعلان کیتا ۔ اگلے صفیاں تے اینہ منشور دی پوری عبارت پیش کیتی ویندی اے ۔</string>
</test>
<test class="fset10" label="Saraiki - long 2" rtl="True">
<string>آکھڻ تے آپڻے عقیدے تے قائم رہوڻ دی ازادی ہووے ۔ کوئی ڋر خوف نہ ہووے اتے</string>
</test>
<test class="fset10" label="Saraiki - long 3" rtl="True">
<string>ڋو جھی حیثیت کنوں قطع نظر انہاں سارے حقوق تے ازادیاں دا حقدار ہے جتھاں داذ کر اعلان وچ</string>
</test>
<test class="fset10" label="Saraiki - long 4" rtl="True">
<string>لوندے ٻال بچیاں کیتے عزت دی حیاتی دا ضامن ہووے اتے اوندے وچ ضرورت دے</string>
</test>
<test background="#55aaff" class="fset7433" label="RIGHT-CONNECTING FORM TESTS" rtl="True">
<string />
</test>
<test class="fset7433" label="isolate alef" rtl="True">
<string>ااداراو</string>
</test>
<test class="fset7433" label="final alef" rtl="True">
<string>ثااثادسارماو</string>
</test>
<test class="fset7433" label="isolate reh" rtl="True">
<string>راردرررو</string>
</test>
<test class="fset7428" label="isolate reh forms" rtl="True">
<string>راږاردزڙݬو</string>
</test>
<test class="fset7433" label="final reh default" rtl="True">
<string>عراطردمررفرو</string>
</test>
<test class="fset7433" label="final reh sshg" rtl="True">
<string>سراسردسررسرو</string>
</test>
<test class="fset7433" label="final reh jkl" rtl="True">
<string>جراجردکررلرو</string>
</test>
<test class="fset7433" label="final reh hg" rtl="True">
<string>بہرابہردلہرربہرو</string>
</test>
<test class="fset7433" label="isolate lam-alef" rtl="True">
<string>لالالااادلارلاو</string>
</test>
<test class="fset7433" label="final lam-alef" rtl="True">
<string>سلااسلادسلارسلاو</string>
</test>
<test class="fset7433" label="isolate dal" rtl="True">
<string>دادددردو</string>
</test>
<test class="fset7433" label="final dal" rtl="True">
<string>لداطددسدرندو</string>
</test>
<test class="fset7428" label="isolate dal forms" rtl="True">
<string>داذاڈڊرڋوݙاڐډ</string>
</test>
<test class="fset7433" label="isolate waw" rtl="True">
<string>واودوروو</string>
</test>
<test class="fset7428" label="isolate waw forms" rtl="True">
<string>ۆاۄدورووۅۇ</string>
</test>
<test class="fset7433" label="final waw" rtl="True">
<string>لواطودسورنوو</string>
</test>
<test class="fset7425" label="final reh overlap" rtl="True">
<string>ہر شخص جر شخص عر شخص بہر شخص</string>
</test>
<test class="fset7428" label="alef + reh/zain/etc." rtl="True">
<string>راز رار راژ راږ راڑ راڗ راݫ راڙ راݬ راݱ</string>
</test>
<test class="fset7428" label="reh + beh + alef" rtl="True">
<string>ربا رنا ریا</string>
</test>
<test class="fset7428" label="isolate beh" rtl="True">
<string>وت سوپ رب لرټ دب مذٹ</string>
</test>
<test class="fset7428" label="reh-small-tah + yeh" rtl="True">
<comment>Collisions between a final and initial (with no space) are handled by kerning, not shifting.</comment>
<string>چُنڑیل </string>
</test>
<test class="fset7428" label="coll-fix ranges" rtl="True">
<string>بیوک رک تھینس رو جمکلنیج</string>
</test>
<test background="#00aaff" class="fset7429" label="ALPHA-2 FEEDBACK" rtl="True">
<string />
</test>
<test class="fset7429" label="isolate waw + long seq (Malachi - 4)" rtl="True">
<comment>Keep the isolate waw from overlapping much.</comment>
<string>مشیت و مصلحت</string>
</test>
<test class="fset7429" label="pa + k (Malachi - 6)" rtl="True">
<comment>Expects the alef to be closer to the kaf. Sheldon says: The vertical part of the kaf and the alef should be spaced as two alefs or an ale lam would.</comment>
<string>پاک پاکیز اال</string>
</test>
<test class="fset7429" label="full stop (Malachi - 7)" rtl="True">
<comment>Keep the full stop from overlapping.</comment>
<string>ہے۔ تھین</string>
</test>
<test class="fset7427" label="comma (Sheldon)" rtl="True">
<string>کہ، نعو</string>
</test>
<test background="#ffaaff" class="fset7429" label="xalifa (Malachi - 10)" rtl="True">
<comment>Need more space before the second word.</comment>
<string>اور خلیفة | پنے خلیفة | کہ خلیفة</string>
</test>
<test class="fset7427" label="debana khuda (Eunice)" rtl="True">
<comment>Fixed.</comment>
<string>دیبنہ خدا</string>
</test>
<test class="fset7427" label="nga chik (Eunice)" rtl="True">
<string>ںا چک</string>
</test>
<test class="fset7427" label="reh/dal + yeh (Eunice)" rtl="True">
<string>ریر رنر دیر دنر</string>
</test>
<test class="fset7429" label="alef + yeh + meem (Dieter)" rtl="True">
<comment>If the nuqtas were moved down, the alef could scootch in.</comment>
<string>ایمان انمان</string>
</test>
<test background="#ffaaff" class="fset7429" label="reh + yeh (Dieter)" rtl="True">
<comment>Too far apart</comment>
<string>طریقہ طرنقہ</string>
</test>
<test class="fset7429" label="waw + qaf (Sheldon)" rtl="True">
<string>حقوق</string>
</test>
<test class="fset7429" label="sheen + kaf (Dieter)" rtl="True">
<comment>Would look better a bit closer together.</comment>
<string>شش کو</string>
</test>
<test class="fset7429" label="not enough overlap (Sheldon)" rtl="True">
<comment>The third example is good, the first two are not tight enough.</comment>
<string>کویی شحض | کہیں شحض | برشحض کوں</string>
</test>
<test class="fset7427" label="Eunice - collision" rtl="True">
<string>ڇھق پو</string>
</test>
<test class="fset7429" label="nyeh (Eunice)" rtl="True">
<comment>Dots too high and to the right. It looks better to me in Graide than it did in Eunice's PDF.</comment>
<string>سی ڃوش</string>
</test>
<test class="fset7427" label="kaf heh-goal sp jeem" rtl="True">
<string>کہ خلیفة | کہ خل | لہ خل | سہ خسم | قہ خک</string>
</test>
<test class="fset7429" label="dal jeem zair" rtl="True">
<string>ݙِخا ݙِخیجو</string>
</test>
<test class="fset7430" label="initial heh-doachashmee" rtl="True">
<string>دھا دھس</string>
</test>
<test class="fset7428" label="digits - Arabic">
<string>٣٠٥ ٩١١٦ ٨٧</string>
</test>
<test class="fset7428" label="digits - Eastern">
<string>۵۰۱ ۷۰۴۰۱۱۹</string>
</test>
<test class="fset7428" label="digits - vertical strokes">
<string>٩١١٣ ٦١١٢</string>
</test>
<test class="fset7428" label="digits within text" rtl="True">
<string>اقوام متحدای جر ٣٩١١ نل اسمبلیس منڙوحقوقوں ۱۰۳ منݜوری اعلان ٧٠٨٧ تھین ۔</string>
</test>
<test background="#55aaff" label="BETA-1 FEEDBACK" rtl="True">
<string />
</test>
<test class="fset7430" label="dal + alef" rtl="True">
<string>پیدا</string>
</test>
<test class="fset7430" label="reh + jeh" rtl="True">
<string>ورژن</string>
</test>
<test class="fset7430" label="dal + heh-do" rtl="True">
<comment>spacing too close?</comment>
<string>ڈھال</string>
</test>
<test class="fset7430" label="reh + heh-do" rtl="True">
<comment>too close?</comment>
<string>بوڑھا</string>
</test>
<test class="fset7430" label="waw + alef" rtl="True">
<comment>Dieter: pull waw and alef together a bit</comment>
<string>تلوار</string>
</test>
<test class="fset7430" label="reh + reh" rtl="True">
<string>ترجمہ</string>
</test>
<test class="fset7430" label="alef + beh-form" rtl="True">
<string>اِنمی اِنمنگ</string>
</test>
<test class="fset7430" label="reh/waw/dal + yeh/peh/teh" rtl="True">
<comment>Eunice; also beh?</comment>
<string>شزدیو زیربو۔ زیرے، وزیر دِیو کھوغزیر زِیزی</string>
</test>
<test class="fset7430" label="isolate reh" rtl="True">
<comment>I guess this is okay because there is no space after the reh.</comment>
<string>رگسکتی</string>
</test>
<test class="fset7430" label="overlaps" rtl="True">
<comment>Eunice - she doesn't' like the overlap</comment>
<string>رگسکتی تبل کھیان٘ی بخستون عالِم کُن اِمام کُنی</string>
</test>
<test class="fset7430" label="alef + beh + meem" rtl="True">
<string>خاتمہ</string>
</test>
<test class="fset7430" label="reh + beh + meem" rtl="True">
<string>خُداوندتُمہارا</string>
</test>
<test class="fset7430" label="dal + yeh + meem" rtl="True">
<string>دَیموؔن</string>
</test>
<test class="fset7430" label="waw + beh + meem" rtl="True">
<string>یکھوتُمہا</string>
</test>
<test class="fset7428" label="alef kaf" rtl="True">
<string>اکطبس اکطب اکط</string>
</test>
<test background="#55aaff" class="fset7428" label="BETA-3 FEEDBACK" rtl="True">
<string />
</test>
<test class="fset7428" label="kaf + waw + beh + heh-doachashemee" rtl="True">
<string>قوموں کوبھی چُن لِیاہے</string>
</test>
<test class="fset7428" label="yeh + reh + yeh + hah + waw" rtl="True">
<string>یرِیحُو</string>
</test>
<test class="fset7428" label="gaf + yeh + ain + noon + yeh" rtl="True">
<string>لوگ یعنی</string>
</test>
<test class="fset7428" label="kaf + waw + teh + meem + heh-goal + alef" rtl="True">
<string>اُن کو تمہارے</string>
</test>
<test class="fset7428" label="reh/heh-goal + Arabic hamza" rtl="True">
<string>رء سہء</string>
</test>
<test class="fset7428" label="reh-dot-dot bug" rtl="True">
<string>ږازاراڔاڑاژا ږلزلرلڔلڑلژل ږوزوروڔوڑوژو </string>
</test>
<test background="#55aaff" class="fset7428" label="POST V1 FEEDBACK" rtl="True">
<string />
</test>
<test class="fset7428" label="reh + isolate jeem/ain" rtl="True">
<string>چرچ چرع رج</string>
</test>
<test class="fset7428" label="reh + alef madda" rtl="True">
<string>رآ زآ سرآ بزآ بہژآ سڑآ بڙآ بہزآ</string>
</test>
<test class="fset7428" label="dah + alef madda" rtl="True">
<string>دآ ذآ سدآ بݙآ فڐآ</string>
</test>
<test class="fset7428" label="waw + alef madda" rtl="True">
<string>وآ ؤآ ۆدآ بۇآ فۄآ</string>
</test>
<test class="fset7428" label="alef + alef madda" rtl="True">
<string>اآ أآ</string>
</test>
<test class="fset7428" label="bariyeh + alef madda" rtl="True">
<string>ےآ ۓآ</string>
</test>
<test background="#ff0000" label="short seq before kaf - not implemented" rtl="True">
<string>ہرکفلس</string>
</test>
<test background="#55aaff" class="fset7428" label="PUNCTUATION" rtl="True">
<string />
</test>
<test class="fset7428" label="flat word" rtl="True">
<string>بب۔ بب، بب؛ بب! بب؟ ”بب“ ’بب‘ )بب(</string>
</test>
<test class="fset7428" label="flat word - 2" rtl="True">
<string>بب۔“ بب،‘ بب‘! بب؟“ ’)بب(‘ ”)بب(“ )’بب‘( )”بب“(</string>
</test>
<test class="fset7428" label="medium word" rtl="True">
<string>سعص۔ سعص، سعص؛ سعص! سعص؟ ”سعص“ ’سعص‘ )سعص(</string>
</test>
<test class="fset7428" label="medium word - 2" rtl="True">
<string>سعص۔“ سعص،‘ سعص‘! سعص؟“ ’)سعص(‘ ”)سعص(“ )’سعص‘( )”سعص“(</string>
</test>
<test class="fset7428" label="tall word" rtl="True">
<string>جحم۔ جحم، جحم؛ جحم! جحم؟ ”جحم“ ’جحم‘ )جحم(</string>
</test>
<test class="fset7428" label="tall word - 2" rtl="True">
<string>جحم۔“ جحم،‘ جحم‘! جحم؟“ ’)جحم(‘ ”)جحم(“ )’جحم‘( )”جحم“(</string>
</test>
<test class="fset7428" label="kaf...lam" rtl="True">
<string>کسل۔ کسل، کسل؛ کسل! کسل؟ ”کسل“ ’کسل‘ )کسل(</string>
</test>
<test class="fset7428" label="kaf...lam - 2" rtl="True">
<string>کسل۔“ کسل،‘ کسل‘! کسل؟“ ’)کسل(‘ ”)کسل(“ )’کسل‘( )”کسل“(</string>
</test>
<test class="fset7428" label="alef...waw" rtl="True">
<string>او۔ او، او؛ او! او؟ ”او“ ’او‘ )او(</string>
</test>
<test class="fset7428" label="alef...waw - 2" rtl="True">
<string>۔“ او،‘ او‘! او؟“ ’)او(‘ ”)او(“ )’او‘( )”او“(</string>
</test>
<test class="fset7428" label="lam...tah" rtl="True">
<string>لمط۔ لمط، لمط؛ لمط! لمط؟ ”لمط“ ’لمط‘ )لمط(</string>
</test>
<test class="fset7428" label="lam...tah - 2" rtl="True">
<string>لمط۔“ لمط،‘ لمط‘! لمط؟“ ’)لمط(‘ ”)لمط(“ )’لمط‘( )”لمط“(</string>
</test>
<test class="fset7428" label="heh-doachashmee" rtl="True">
<string>ھ۔ ھ، ھ؛ ھ! ھ؟ ”ھ“ ’ھ‘ )ھ(</string>
</test>
<test class="fset41" label="initial kafs" rtl="True">
<string>گم کبنګ ڳجحشلن</string>
</test>
<test class="fset7428" label="full-stop + quote" rtl="True">
<string>کلیمنس۔"</string>
</test>
</testgroup>
<testgroup label="Collisions">
<test label="noon-smalltah + alef" rtl="True">
<string>بݨاوِیں</string>
</test>
<test background="#00aaff" label="NUQTA / NUQTA" rtl="True">
<string> </string>
</test>
<test background="#aaaa7f" label="sheen + teh" rtl="True">
<string>کشتِیک</string>
</test>
<test label="peh + chotiyeh" rtl="True">
<string>پیٹی</string>
</test>
<test background="#00aaff" label="ALEF / NUQTA" rtl="True">
<string> </string>
</test>
<test label="alef-madda + teh" rtl="True">
<string>آتش</string>
</test>
<test label="alef-madda + teh 2" rtl="True">
<string>آتشِین</string>
</test>
<test label="alef + teh" rtl="True">
<string>اَتیوہ</string>
</test>
<test label="alef + teh 2" rtl="True">
<string>اِتنی</string>
</test>
<test label="alef + nuqta" rtl="True">
<string>اَتِنگا</string>
</test>
<test background="#00aaff" label="FINAL / NUQTA" rtl="True">
<string> </string>
</test>
<test label="zain + chotiyeh" rtl="True">
<string>مزیئی</string>
</test>
<test background="#ff0000" label="dal + nuqta" rtl="True">
<string>دِینِنگا</string>
</test>
<test label="dal + nuqta 2" rtl="True">
<string>پودِینہ</string>
</test>
<test label="reh + nuqta" rtl="True">
<comment>heh-do -> seen</comment>
<string>آلسڑیں</string>
</test>
<test label="reh + nuqta 2" rtl="True">
<string>افسریں</string>
</test>
<test label="reh + peh" rtl="True">
<string>سرلپی</string>
</test>
<test label="peh + waw + peh" rtl="True">
<comment>removed initial kaf</comment>
<string>وپوپئی</string>
</test>
<test background="#00aaff" label="KAF + NUQTA" rtl="True">
<string> </string>
</test>
<test label="bent gaf + sheen + teh" rtl="True">
<string>نگشتر</string>
</test>
<test background="#ff0000" label="bent kaf + teh" rtl="True">
<string>کَتَنُن</string>
</test>
<test background="#00aaff" label="MULTIPLE" rtl="True">
<string> </string>
</test>
<test label="yeh + waw" rtl="True">
<string>اِیویں</string>
</test>
<test label="up and down" rtl="True">
<string>بَچِّئے</string>
</test>
<test background="#00aaff" label="TRICKY SPACES" rtl="True">
<string> </string>
</test>
<test label="alef + noon + kaf" rtl="True">
<string>انکا</string>
</test>
<test label="alef + beh + chotiyeh + jeem + chotiyeh" rtl="True">
<comment>Urdu</comment>
<string>اؔبِیجیل</string>
</test>
<test label="alef + peh + chotiyeh + lam" rtl="True">
<string>اپیل</string>
</test>
<test label="sheen + sheen" rtl="True">
<string>بخشِش</string>
</test>
<test label="sheen + sheen 2" rtl="True">
<string>ارتنحششتا</string>
</test>
<test label="yeh + final tcheh" rtl="True">
<comment>Why is the triple-nuqta moved down far enough to create a collision? Is that because the tcheh is jumpable?</comment>