├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE ├── README.md ├── allsorts.svg ├── criterion ├── bench-read.rs └── bench-shape.rs ├── src ├── big5.rs ├── binary.rs ├── binary │ ├── read.rs │ └── write.rs ├── bitmap.rs ├── bitmap │ ├── cbdt.rs │ └── sbix.rs ├── cff.rs ├── cff │ ├── cff2.rs │ ├── charstring.rs │ ├── charstring │ │ └── argstack.rs │ ├── outline.rs │ ├── outline │ │ └── charstring.rs │ └── subset.rs ├── checksum.rs ├── context.rs ├── error.rs ├── font.rs ├── font_data.rs ├── font_specimen.rs ├── font_specimen │ ├── body.html │ ├── features.rs │ ├── head.html │ ├── langsys.rs │ └── scripts.rs ├── gdef.rs ├── get_name.rs ├── glyph_info.rs ├── glyph_position.rs ├── gpos.rs ├── gsub.rs ├── layout.rs ├── layout │ └── morx.rs ├── lib.rs ├── macroman.rs ├── outline.rs ├── post.rs ├── scripts │ ├── arabic.rs │ ├── indic.rs │ ├── khmer.rs │ ├── mod.rs │ ├── myanmar.rs │ ├── syllable.rs │ ├── syriac.rs │ └── thai_lao.rs ├── size.rs ├── subset.rs ├── tables.rs ├── tables │ ├── aat.rs │ ├── cmap.rs │ ├── cmap │ │ └── subset.rs │ ├── colr.rs │ ├── cpal.rs │ ├── glyf.rs │ ├── glyf │ │ ├── outline.rs │ │ ├── subset.rs │ │ └── variation.rs │ ├── kern.rs │ ├── loca.rs │ ├── morx.rs │ ├── os2.rs │ ├── svg.rs │ ├── variable_fonts.rs │ └── variable_fonts │ │ ├── avar.rs │ │ ├── cvar.rs │ │ ├── fvar.rs │ │ ├── gvar.rs │ │ ├── hvar.rs │ │ ├── mvar.rs │ │ └── stat.rs ├── tag.rs ├── tests.rs ├── unicode.rs ├── unicode │ ├── codepoint.rs │ ├── emoji_data.rs │ └── mcc.rs ├── variations.rs ├── woff.rs ├── woff2.rs └── woff2 │ ├── collection.rs │ └── lut.rs └── tests ├── aots.rs ├── aots ├── README.md ├── aots2testrust.xsl ├── base.otf ├── classdef1_font1.otf ├── classdef1_font1.xml ├── classdef1_font2.otf ├── classdef1_font2.xml ├── classdef1_font3.otf ├── classdef1_font3.xml ├── classdef1_font4.otf ├── classdef1_font4.xml ├── classdef2_font1.otf ├── classdef2_font1.xml ├── classdef2_font2.otf ├── classdef2_font2.xml ├── classdef2_font3.otf ├── classdef2_font3.xml ├── classdef2_font4.otf ├── classdef2_font4.xml ├── cmap0_font1.otf ├── cmap0_font1.xml ├── cmap10_font1.otf ├── cmap10_font1.xml ├── cmap10_font2.otf ├── cmap10_font2.xml ├── cmap12_font1.otf ├── cmap12_font1.xml ├── cmap14_font1.otf ├── cmap14_font1.xml ├── cmap2_font1.otf ├── cmap2_font1.xml ├── cmap4_font1.otf ├── cmap4_font1.xml ├── cmap4_font2.otf ├── cmap4_font2.xml ├── cmap4_font3.otf ├── cmap4_font3.xml ├── cmap4_font4.otf ├── cmap4_font4.xml ├── cmap6_font1.otf ├── cmap6_font1.xml ├── cmap6_font2.otf ├── cmap6_font2.xml ├── cmap8_font1.otf ├── cmap8_font1.xml ├── cmap_composition_font1.otf ├── cmap_composition_font1.xml ├── cmap_subtableselection_font1.otf ├── cmap_subtableselection_font1.xml ├── cmap_subtableselection_font2.otf ├── cmap_subtableselection_font2.xml ├── cmap_subtableselection_font3.otf ├── cmap_subtableselection_font3.xml ├── cmap_subtableselection_font4.otf ├── cmap_subtableselection_font4.xml ├── cmap_subtableselection_font5.otf ├── cmap_subtableselection_font5.xml ├── gpos1_1_lookupflag_f1.otf ├── gpos1_1_lookupflag_f1.xml ├── gpos1_1_simple_f1.otf ├── gpos1_1_simple_f1.xml ├── gpos1_1_simple_f2.otf ├── gpos1_1_simple_f2.xml ├── gpos1_1_simple_f3.otf ├── gpos1_1_simple_f3.xml ├── gpos1_1_simple_f4.otf ├── gpos1_1_simple_f4.xml ├── gpos1_2_font1.otf ├── gpos1_2_font1.xml ├── gpos1_2_font2.otf ├── gpos1_2_font2.xml ├── gpos2_1_font6.otf ├── gpos2_1_font6.xml ├── gpos2_1_font7.otf ├── gpos2_1_font7.xml ├── gpos2_1_lookupflag_f1.otf ├── gpos2_1_lookupflag_f1.xml ├── gpos2_1_lookupflag_f2.otf ├── gpos2_1_lookupflag_f2.xml ├── gpos2_1_next_glyph_f1.otf ├── gpos2_1_next_glyph_f1.xml ├── gpos2_1_next_glyph_f2.otf ├── gpos2_1_next_glyph_f2.xml ├── gpos2_1_simple_f1.otf ├── gpos2_1_simple_f1.xml ├── gpos2_2_font1.otf ├── gpos2_2_font1.xml ├── gpos2_2_font2.otf ├── gpos2_2_font2.xml ├── gpos2_2_font3.otf ├── gpos2_2_font3.xml ├── gpos2_2_font4.otf ├── gpos2_2_font4.xml ├── gpos2_2_font5.otf ├── gpos2_2_font5.xml ├── gpos3_font1.otf ├── gpos3_font1.xml ├── gpos3_font2.otf ├── gpos3_font2.xml ├── gpos3_font3.otf ├── gpos3_font3.xml ├── gpos4_lookupflag_f1.otf ├── gpos4_lookupflag_f1.xml ├── gpos4_lookupflag_f2.otf ├── gpos4_lookupflag_f2.xml ├── gpos4_multiple_anchors_1.otf ├── gpos4_multiple_anchors_1.xml ├── gpos4_simple_1.otf ├── gpos4_simple_1.xml ├── gpos5_font1.otf ├── gpos5_font1.xml ├── gpos6_font1.otf ├── gpos6_font1.xml ├── gpos7_1_font1.otf ├── gpos7_1_font1.xml ├── gpos9_font1.otf ├── gpos9_font1.xml ├── gpos9_font2.otf ├── gpos9_font2.xml ├── gpos_chaining1_boundary_f1.otf ├── gpos_chaining1_boundary_f1.xml ├── gpos_chaining1_boundary_f2.otf ├── gpos_chaining1_boundary_f2.xml ├── gpos_chaining1_boundary_f3.otf ├── gpos_chaining1_boundary_f3.xml ├── gpos_chaining1_boundary_f4.otf ├── gpos_chaining1_boundary_f4.xml ├── gpos_chaining1_lookupflag_f1.otf ├── gpos_chaining1_lookupflag_f1.xml ├── gpos_chaining1_multiple_subrules_f1.otf ├── gpos_chaining1_multiple_subrules_f1.xml ├── gpos_chaining1_multiple_subrules_f2.otf ├── gpos_chaining1_multiple_subrules_f2.xml ├── gpos_chaining1_next_glyph_f1.otf ├── gpos_chaining1_next_glyph_f1.xml ├── gpos_chaining1_simple_f1.otf ├── gpos_chaining1_simple_f1.xml ├── gpos_chaining1_simple_f2.otf ├── gpos_chaining1_simple_f2.xml ├── gpos_chaining1_successive_f1.otf ├── gpos_chaining1_successive_f1.xml ├── gpos_chaining2_boundary_f1.otf ├── gpos_chaining2_boundary_f1.xml ├── gpos_chaining2_boundary_f2.otf ├── gpos_chaining2_boundary_f2.xml ├── gpos_chaining2_boundary_f3.otf ├── gpos_chaining2_boundary_f3.xml ├── gpos_chaining2_boundary_f4.otf ├── gpos_chaining2_boundary_f4.xml ├── gpos_chaining2_lookupflag_f1.otf ├── gpos_chaining2_lookupflag_f1.xml ├── gpos_chaining2_multiple_subrules_f1.otf ├── gpos_chaining2_multiple_subrules_f1.xml ├── gpos_chaining2_multiple_subrules_f2.otf ├── gpos_chaining2_multiple_subrules_f2.xml ├── gpos_chaining2_next_glyph_f1.otf ├── gpos_chaining2_next_glyph_f1.xml ├── gpos_chaining2_simple_f1.otf ├── gpos_chaining2_simple_f1.xml ├── gpos_chaining2_simple_f2.otf ├── gpos_chaining2_simple_f2.xml ├── gpos_chaining2_successive_f1.otf ├── gpos_chaining2_successive_f1.xml ├── gpos_chaining3_boundary_f1.otf ├── gpos_chaining3_boundary_f1.xml ├── gpos_chaining3_boundary_f2.otf ├── gpos_chaining3_boundary_f2.xml ├── gpos_chaining3_boundary_f3.otf ├── gpos_chaining3_boundary_f3.xml ├── gpos_chaining3_boundary_f4.otf ├── gpos_chaining3_boundary_f4.xml ├── gpos_chaining3_lookupflag_f1.otf ├── gpos_chaining3_lookupflag_f1.xml ├── gpos_chaining3_next_glyph_f1.otf ├── gpos_chaining3_next_glyph_f1.xml ├── gpos_chaining3_simple_f1.otf ├── gpos_chaining3_simple_f1.xml ├── gpos_chaining3_simple_f2.otf ├── gpos_chaining3_simple_f2.xml ├── gpos_chaining3_successive_f1.otf ├── gpos_chaining3_successive_f1.xml ├── gpos_context1_boundary_f1.otf ├── gpos_context1_boundary_f1.xml ├── gpos_context1_boundary_f2.otf ├── gpos_context1_boundary_f2.xml ├── gpos_context1_expansion_f1.otf ├── gpos_context1_expansion_f1.xml ├── gpos_context1_lookupflag_f1.otf ├── gpos_context1_lookupflag_f1.xml ├── gpos_context1_lookupflag_f2.otf ├── gpos_context1_lookupflag_f2.xml ├── gpos_context1_multiple_subrules_f1.otf ├── gpos_context1_multiple_subrules_f1.xml ├── gpos_context1_multiple_subrules_f2.otf ├── gpos_context1_multiple_subrules_f2.xml ├── gpos_context1_next_glyph_f1.otf ├── gpos_context1_next_glyph_f1.xml ├── gpos_context1_simple_f1.otf ├── gpos_context1_simple_f1.xml ├── gpos_context1_simple_f2.otf ├── gpos_context1_simple_f2.xml ├── gpos_context1_successive_f1.otf ├── gpos_context1_successive_f1.xml ├── gpos_context2_boundary_f1.otf ├── gpos_context2_boundary_f1.xml ├── gpos_context2_boundary_f2.otf ├── gpos_context2_boundary_f2.xml ├── gpos_context2_classes_f1.otf ├── gpos_context2_classes_f1.xml ├── gpos_context2_classes_f2.otf ├── gpos_context2_classes_f2.xml ├── gpos_context2_expansion_f1.otf ├── gpos_context2_expansion_f1.xml ├── gpos_context2_lookupflag_f1.otf ├── gpos_context2_lookupflag_f1.xml ├── gpos_context2_lookupflag_f2.otf ├── gpos_context2_lookupflag_f2.xml ├── gpos_context2_multiple_subrules_f1.otf ├── gpos_context2_multiple_subrules_f1.xml ├── gpos_context2_multiple_subrules_f2.otf ├── gpos_context2_multiple_subrules_f2.xml ├── gpos_context2_next_glyph_f1.otf ├── gpos_context2_next_glyph_f1.xml ├── gpos_context2_simple_f1.otf ├── gpos_context2_simple_f1.xml ├── gpos_context2_simple_f2.otf ├── gpos_context2_simple_f2.xml ├── gpos_context2_successive_f1.otf ├── gpos_context2_successive_f1.xml ├── gpos_context3_boundary_f1.otf ├── gpos_context3_boundary_f1.xml ├── gpos_context3_boundary_f2.otf ├── gpos_context3_boundary_f2.xml ├── gpos_context3_lookupflag_f1.otf ├── gpos_context3_lookupflag_f1.xml ├── gpos_context3_lookupflag_f2.otf ├── gpos_context3_lookupflag_f2.xml ├── gpos_context3_next_glyph_f1.otf ├── gpos_context3_next_glyph_f1.xml ├── gpos_context3_simple_f1.otf ├── gpos_context3_simple_f1.xml ├── gpos_context3_successive_f1.otf ├── gpos_context3_successive_f1.xml ├── gsub1_1_lookupflag_f1.otf ├── gsub1_1_lookupflag_f1.xml ├── gsub1_1_modulo_f1.otf ├── gsub1_1_modulo_f1.xml ├── gsub1_1_simple_f1.otf ├── gsub1_1_simple_f1.xml ├── gsub1_2_lookupflag_f1.otf ├── gsub1_2_lookupflag_f1.xml ├── gsub1_2_simple_f1.otf ├── gsub1_2_simple_f1.xml ├── gsub2_1_lookupflag_f1.otf ├── gsub2_1_lookupflag_f1.xml ├── gsub2_1_multiple_sequences_f1.otf ├── gsub2_1_multiple_sequences_f1.xml ├── gsub2_1_simple_f1.otf ├── gsub2_1_simple_f1.xml ├── gsub3_1_lookupflag_f1.otf ├── gsub3_1_lookupflag_f1.xml ├── gsub3_1_multiple_f1.otf ├── gsub3_1_multiple_f1.xml ├── gsub3_1_simple_f1.otf ├── gsub3_1_simple_f1.xml ├── gsub4_1_lookupflag_f1.otf ├── gsub4_1_lookupflag_f1.xml ├── gsub4_1_multiple_ligatures_f1.otf ├── gsub4_1_multiple_ligatures_f1.xml ├── gsub4_1_multiple_ligatures_f2.otf ├── gsub4_1_multiple_ligatures_f2.xml ├── gsub4_1_multiple_ligsets_f1.otf ├── gsub4_1_multiple_ligsets_f1.xml ├── gsub4_1_simple_f1.otf ├── gsub4_1_simple_f1.xml ├── gsub7_font1.otf ├── gsub7_font1.xml ├── gsub7_font2.otf ├── gsub7_font2.xml ├── gsub_chaining1_boundary_f1.otf ├── gsub_chaining1_boundary_f1.xml ├── gsub_chaining1_boundary_f2.otf ├── gsub_chaining1_boundary_f2.xml ├── gsub_chaining1_boundary_f3.otf ├── gsub_chaining1_boundary_f3.xml ├── gsub_chaining1_boundary_f4.otf ├── gsub_chaining1_boundary_f4.xml ├── gsub_chaining1_lookupflag_f1.otf ├── gsub_chaining1_lookupflag_f1.xml ├── gsub_chaining1_multiple_subrules_f1.otf ├── gsub_chaining1_multiple_subrules_f1.xml ├── gsub_chaining1_multiple_subrules_f2.otf ├── gsub_chaining1_multiple_subrules_f2.xml ├── gsub_chaining1_next_glyph_f1.otf ├── gsub_chaining1_next_glyph_f1.xml ├── gsub_chaining1_simple_f1.otf ├── gsub_chaining1_simple_f1.xml ├── gsub_chaining1_simple_f2.otf ├── gsub_chaining1_simple_f2.xml ├── gsub_chaining1_successive_f1.otf ├── gsub_chaining1_successive_f1.xml ├── gsub_chaining2_boundary_f1.otf ├── gsub_chaining2_boundary_f1.xml ├── gsub_chaining2_boundary_f2.otf ├── gsub_chaining2_boundary_f2.xml ├── gsub_chaining2_boundary_f3.otf ├── gsub_chaining2_boundary_f3.xml ├── gsub_chaining2_boundary_f4.otf ├── gsub_chaining2_boundary_f4.xml ├── gsub_chaining2_lookupflag_f1.otf ├── gsub_chaining2_lookupflag_f1.xml ├── gsub_chaining2_multiple_subrules_f1.otf ├── gsub_chaining2_multiple_subrules_f1.xml ├── gsub_chaining2_multiple_subrules_f2.otf ├── gsub_chaining2_multiple_subrules_f2.xml ├── gsub_chaining2_next_glyph_f1.otf ├── gsub_chaining2_next_glyph_f1.xml ├── gsub_chaining2_simple_f1.otf ├── gsub_chaining2_simple_f1.xml ├── gsub_chaining2_simple_f2.otf ├── gsub_chaining2_simple_f2.xml ├── gsub_chaining2_successive_f1.otf ├── gsub_chaining2_successive_f1.xml ├── gsub_chaining3_boundary_f1.otf ├── gsub_chaining3_boundary_f1.xml ├── gsub_chaining3_boundary_f2.otf ├── gsub_chaining3_boundary_f2.xml ├── gsub_chaining3_boundary_f3.otf ├── gsub_chaining3_boundary_f3.xml ├── gsub_chaining3_boundary_f4.otf ├── gsub_chaining3_boundary_f4.xml ├── gsub_chaining3_lookupflag_f1.otf ├── gsub_chaining3_lookupflag_f1.xml ├── gsub_chaining3_next_glyph_f1.otf ├── gsub_chaining3_next_glyph_f1.xml ├── gsub_chaining3_simple_f1.otf ├── gsub_chaining3_simple_f1.xml ├── gsub_chaining3_simple_f2.otf ├── gsub_chaining3_simple_f2.xml ├── gsub_chaining3_successive_f1.otf ├── gsub_chaining3_successive_f1.xml ├── gsub_context1_boundary_f1.otf ├── gsub_context1_boundary_f1.xml ├── gsub_context1_boundary_f2.otf ├── gsub_context1_boundary_f2.xml ├── gsub_context1_expansion_f1.otf ├── gsub_context1_expansion_f1.xml ├── gsub_context1_lookupflag_f1.otf ├── gsub_context1_lookupflag_f1.xml ├── gsub_context1_lookupflag_f2.otf ├── gsub_context1_lookupflag_f2.xml ├── gsub_context1_multiple_subrules_f1.otf ├── gsub_context1_multiple_subrules_f1.xml ├── gsub_context1_multiple_subrules_f2.otf ├── gsub_context1_multiple_subrules_f2.xml ├── gsub_context1_next_glyph_f1.otf ├── gsub_context1_next_glyph_f1.xml ├── gsub_context1_simple_f1.otf ├── gsub_context1_simple_f1.xml ├── gsub_context1_simple_f2.otf ├── gsub_context1_simple_f2.xml ├── gsub_context1_successive_f1.otf ├── gsub_context1_successive_f1.xml ├── gsub_context2_boundary_f1.otf ├── gsub_context2_boundary_f1.xml ├── gsub_context2_boundary_f2.otf ├── gsub_context2_boundary_f2.xml ├── gsub_context2_classes_f1.otf ├── gsub_context2_classes_f1.xml ├── gsub_context2_classes_f2.otf ├── gsub_context2_classes_f2.xml ├── gsub_context2_expansion_f1.otf ├── gsub_context2_expansion_f1.xml ├── gsub_context2_lookupflag_f1.otf ├── gsub_context2_lookupflag_f1.xml ├── gsub_context2_lookupflag_f2.otf ├── gsub_context2_lookupflag_f2.xml ├── gsub_context2_multiple_subrules_f1.otf ├── gsub_context2_multiple_subrules_f1.xml ├── gsub_context2_multiple_subrules_f2.otf ├── gsub_context2_multiple_subrules_f2.xml ├── gsub_context2_next_glyph_f1.otf ├── gsub_context2_next_glyph_f1.xml ├── gsub_context2_simple_f1.otf ├── gsub_context2_simple_f1.xml ├── gsub_context2_simple_f2.otf ├── gsub_context2_simple_f2.xml ├── gsub_context2_successive_f1.otf ├── gsub_context2_successive_f1.xml ├── gsub_context3_boundary_f1.otf ├── gsub_context3_boundary_f1.xml ├── gsub_context3_boundary_f2.otf ├── gsub_context3_boundary_f2.xml ├── gsub_context3_lookupflag_f1.otf ├── gsub_context3_lookupflag_f1.xml ├── gsub_context3_lookupflag_f2.otf ├── gsub_context3_lookupflag_f2.xml ├── gsub_context3_next_glyph_f1.otf ├── gsub_context3_next_glyph_f1.xml ├── gsub_context3_simple_f1.otf ├── gsub_context3_simple_f1.xml ├── gsub_context3_successive_f1.otf ├── gsub_context3_successive_f1.xml ├── lookupflag_ignore_attach_f1.otf ├── lookupflag_ignore_attach_f1.xml ├── lookupflag_ignore_base_f1.otf ├── lookupflag_ignore_base_f1.xml ├── lookupflag_ignore_combination_f1.otf ├── lookupflag_ignore_combination_f1.xml ├── lookupflag_ignore_ligatures_f1.otf ├── lookupflag_ignore_ligatures_f1.xml ├── lookupflag_ignore_marks_f1.otf ├── lookupflag_ignore_marks_f1.xml └── testcases.rs ├── arabic.rs ├── cff.rs ├── common.rs ├── font_specimen ├── SourceSans3.abc.otf.body.html ├── SourceSans3.abc.otf.head.html └── fonts │ ├── SourceSans3.abc.otf │ ├── SymbolTest-Regular.ttf │ ├── big5.cmap │ └── macroman.cmap ├── fonts ├── README.md ├── arabic │ ├── KacstBook.ttf │ ├── NafeesNastaleeq.ttf │ ├── Scheherazade-Regular.ttf │ ├── ae_Arab.ttf │ ├── amiri-quran.ttf │ └── amiri-regular.ttf ├── bengali │ ├── Lohit-Bengali.ttf │ └── Siyamrupali_1_01.ttf ├── colr │ └── SixtyfourConvergence-Regular-VariableFont_BLED,SCAN,XELA,YELA.ttf ├── devanagari │ ├── AnnapurnaSIL-Regular.ttf │ ├── lohit_hi.ttf │ └── sahadeva.ttf ├── gujarati │ ├── Rekha.ttf │ ├── Samyak-Gujarati.ttf │ ├── lohit_gu.ttf │ └── padmaa.ttf ├── gurmukhi │ └── Saab.ttf ├── kannada │ └── lohit_kn.ttf ├── khmer │ └── Battambang-Regular.ttf ├── licenses │ ├── AnnapurnaSIL.txt │ ├── Battambang.txt │ ├── BethMardutho.txt │ ├── Caudex.txt │ ├── Chilanka.txt │ ├── ChromaCheck.txt │ ├── Dyuthi.txt │ ├── Inter[slnt,wght].abc.txt │ ├── KacstBook.txt │ ├── Klei.txt │ ├── Lohit.txt │ ├── Mandali.txt │ ├── NafeesNastaleeq.txt │ ├── NotoSans-VF.abc.txt │ ├── OpenSans-Regular.ttf.txt │ ├── Padauk-Regular.txt │ ├── Rachana.txt │ ├── Rachana_w01.txt │ ├── Rekha.txt │ ├── Saab.txt │ ├── Sahadeva.txt │ ├── SamyakGujarati.txt │ ├── Scheherazade-Regular.txt │ ├── SixtyfourConvergence.txt │ ├── SiyamRupali.txt │ ├── SourceCodePro.txt │ ├── SourceSansVariable-Roman.abc.txt │ ├── TAMu_Kalyani.txt │ ├── TerminusTTF.txt │ ├── TestGSUBThree.txt │ ├── TwitterColorEmoji-SVGinOT-12.0.1.txt │ ├── UbuntuMono.txt │ ├── UnderlineTest.txt │ ├── ae_Arab.txt │ ├── amiri-quran.txt │ ├── padmaa.txt │ └── utkalm.txt ├── malayalam │ ├── Chilanka-Regular.ttf │ ├── Dyuthi-Regular.ttf │ ├── Rachana-Regular.ttf │ ├── Rachana_w01.ttf │ └── lohit_ml.ttf ├── myanmar │ └── Padauk-Regular.ttf ├── noto │ ├── LICENSE │ ├── NotoNaskhArabic-Regular.ttf │ ├── NotoSansBengali-Regular.ttf │ ├── NotoSansDevanagari-Regular.ttf │ ├── NotoSansGujarati-Regular.ttf │ ├── NotoSansGurmukhi-Regular.ttf │ ├── NotoSansJP-Regular.otf │ ├── NotoSansKannada-Regular.ttf │ ├── NotoSansKhmer-Regular.ttf │ ├── NotoSansLao-Regular.ttf │ ├── NotoSansMalayalam-Regular.ttf │ ├── NotoSansOriya-Regular.ttf │ ├── NotoSansSinhala-Regular.ttf │ ├── NotoSansSyriacEastern-Regular.ttf │ ├── NotoSansTamil-Regular.ttf │ ├── NotoSansTelugu-Regular.ttf │ ├── NotoSansThai-Regular.ttf │ ├── NotoSerifBengali-Regular.ttf │ ├── NotoSerifDevanagari-Regular.ttf │ ├── NotoSerifGujarati-Regular.ttf │ ├── NotoSerifKannada-Regular.ttf │ ├── NotoSerifKhmer-Regular.ttf │ ├── NotoSerifMalayalam-Regular.ttf │ ├── NotoSerifSinhala-Regular.ttf │ ├── NotoSerifTamil-Regular.ttf │ └── NotoSerifTelugu-Regular.ttf ├── opentype │ ├── CBDT.bin │ ├── CBLC.bin │ ├── Klei.otf │ ├── NotoSans-VF.abc.ttf │ ├── OpenSans-Regular.ttf │ ├── README.md │ ├── SFNT-TTF-Composite.ttf │ ├── SourceCodePro-Regular.otf │ ├── SymbolTest-Regular.ttf │ ├── TerminusTTF-4.47.0.ttf │ ├── TestGSUBThree.ttf │ ├── TwitterColorEmoji-SVGinOT.ttf │ ├── Ubuntu Mono with Numderline.ttf │ ├── cff2 │ │ ├── SourceSans3-Instance.256.otf │ │ ├── SourceSans3.abc.otf │ │ └── SourceSansVariable-Roman.abc.otf │ ├── head.bin │ ├── hmtx.bin │ ├── name.bin │ ├── post.bin │ ├── test-font.ttf │ └── test-font.ttx ├── oriya │ ├── lohit_or.ttf │ └── utkalm.ttf ├── sbix │ ├── sbix-dupe.ttf │ └── sbix-dupe.ttx ├── svg │ ├── gzipped.py │ ├── gzipped.ttf │ └── gzipped.ttx ├── syriac │ ├── SyrCOMAdiabene.otf │ ├── SyrCOMAntioch.otf │ ├── SyrCOMBatnan.otf │ ├── SyrCOMEdessa.otf │ ├── SyrCOMMalankara.otf │ ├── SyrCOMNisibin.otf │ └── SyrCOMUrhoy.otf ├── tamil │ ├── TAMu_Kalyani.ttf │ └── lohit_ta.ttf ├── telugu │ ├── Mandali-Regular.ttf │ └── lohit_te.ttf ├── variable │ ├── Inter[slnt,wght].abc.ttf │ ├── UnderlineTest-VF.ttf │ └── Zycon.ttf ├── woff1 │ ├── README.md │ ├── chromacheck-sbix.woff │ ├── d2-33857867-font-bold.woff │ ├── directory-overlaps-001.woff │ ├── header-reserved-001.woff │ ├── metadata.xml │ ├── resources │ │ └── index.css │ ├── tabledata-zlib-001.woff │ ├── testcaseindex.xht │ ├── valid-001.woff │ ├── valid-002.woff │ ├── valid-005.woff │ └── valid-006.woff └── woff2 │ ├── README.md │ ├── SFNT-TTF-Composite.ttx │ ├── SFNT-TTF-Composite.woff2 │ ├── TestSVGgzip.woff2 │ ├── roundtrip-hmtx-lsb-001.woff2 │ ├── roundtrip-offset-tables-001.woff2 │ ├── test-font.woff2 │ └── test_glyf_loca_null_transforms.woff2 ├── indic.rs ├── indic ├── README.md ├── bad │ ├── bad.bn │ ├── bad.gu │ ├── bad.hi │ ├── bad.kn │ ├── bad.ml │ ├── bad.or │ ├── bad.pa │ ├── bad.si │ ├── bad.ta │ └── bad.te ├── directwrite │ ├── good-annapurna.hi │ ├── good-chilanka.ml │ ├── good-dyuthi.ml │ ├── good-kalinga.or │ ├── good-mandali.te │ ├── good-nirmala.hi │ ├── good-nirmala.kn │ ├── good-nirmala.ml │ ├── good-nirmala.or │ ├── good-nirmala.pa │ ├── good-nirmala.ta │ ├── good-nirmala.te │ ├── good-noto-sans.bn │ ├── good-noto-sans.gu │ ├── good-noto-sans.hi │ ├── good-noto-sans.kn │ ├── good-noto-sans.ml │ ├── good-noto-sans.or │ ├── good-noto-sans.pa │ ├── good-noto-sans.ta │ ├── good-noto-sans.te │ ├── good-noto-serif.bn │ ├── good-noto-serif.gu │ ├── good-noto-serif.hi │ ├── good-noto-serif.kn │ ├── good-noto-serif.ml │ ├── good-noto-serif.ta │ ├── good-noto-serif.te │ ├── good-rachana-indic1.ml │ ├── good-rachana-indic2.ml │ ├── good-saab.pa │ ├── good-sahadeva.hi │ └── good-tamu.ta ├── good.bn ├── good.gu ├── good.hi ├── good.kn ├── good.ml ├── good.or ├── good.pa ├── good.si ├── good.ta ├── good.te └── harfbuzz │ ├── good-annapurna.hi │ ├── good-chilanka.ml │ ├── good-dyuthi.ml │ ├── good-gautami.te │ ├── good-iskoola.si │ ├── good-kalinga.or │ ├── good-latha.ta │ ├── good-lohit.bn │ ├── good-lohit.gu │ ├── good-lohit.hi │ ├── good-lohit.kn │ ├── good-lohit.ml │ ├── good-lohit.or │ ├── good-lohit.ta │ ├── good-lohit.te │ ├── good-mandali.te │ ├── good-mangal.hi │ ├── good-nirmala.hi │ ├── good-nirmala.kn │ ├── good-nirmala.ml │ ├── good-nirmala.or │ ├── good-nirmala.pa │ ├── good-nirmala.si │ ├── good-nirmala.ta │ ├── good-nirmala.te │ ├── good-noto-sans.bn │ ├── good-noto-sans.gu │ ├── good-noto-sans.hi │ ├── good-noto-sans.kn │ ├── good-noto-sans.ml │ ├── good-noto-sans.or │ ├── good-noto-sans.pa │ ├── good-noto-sans.si │ ├── good-noto-sans.ta │ ├── good-noto-sans.te │ ├── good-noto-serif.bn │ ├── good-noto-serif.gu │ ├── good-noto-serif.hi │ ├── good-noto-serif.kn │ ├── good-noto-serif.ml │ ├── good-noto-serif.si │ ├── good-noto-serif.ta │ ├── good-noto-serif.te │ ├── good-ori1uni.or │ ├── good-padmaa.gu │ ├── good-raavi.pa │ ├── good-rachana-indic1.ml │ ├── good-rachana-indic2.ml │ ├── good-rekha.gu │ ├── good-saab.pa │ ├── good-sahadeva.hi │ ├── good-samyak.gu │ ├── good-siyam.bn │ ├── good-tamu.ta │ └── good-tunga.kn ├── khmer.rs ├── khmer ├── bad ├── good └── harfbuzz │ ├── good-battambang │ ├── good-daunpenh │ ├── good-khmer-ui │ ├── good-noto-sans │ └── good-noto-serif ├── myanmar.rs ├── myanmar ├── README.md ├── bad ├── good └── harfbuzz │ └── good-padauk ├── opentype.rs ├── shape.rs ├── syriac.rs ├── thai_lao.rs ├── woff.rs └── woff2.rs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/README.md -------------------------------------------------------------------------------- /allsorts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/allsorts.svg -------------------------------------------------------------------------------- /criterion/bench-read.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/criterion/bench-read.rs -------------------------------------------------------------------------------- /criterion/bench-shape.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/criterion/bench-shape.rs -------------------------------------------------------------------------------- /src/big5.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/big5.rs -------------------------------------------------------------------------------- /src/binary.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/binary.rs -------------------------------------------------------------------------------- /src/binary/read.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/binary/read.rs -------------------------------------------------------------------------------- /src/binary/write.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/binary/write.rs -------------------------------------------------------------------------------- /src/bitmap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/bitmap.rs -------------------------------------------------------------------------------- /src/bitmap/cbdt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/bitmap/cbdt.rs -------------------------------------------------------------------------------- /src/bitmap/sbix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/bitmap/sbix.rs -------------------------------------------------------------------------------- /src/cff.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/cff.rs -------------------------------------------------------------------------------- /src/cff/cff2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/cff/cff2.rs -------------------------------------------------------------------------------- /src/cff/charstring.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/cff/charstring.rs -------------------------------------------------------------------------------- /src/cff/charstring/argstack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/cff/charstring/argstack.rs -------------------------------------------------------------------------------- /src/cff/outline.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/cff/outline.rs -------------------------------------------------------------------------------- /src/cff/outline/charstring.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/cff/outline/charstring.rs -------------------------------------------------------------------------------- /src/cff/subset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/cff/subset.rs -------------------------------------------------------------------------------- /src/checksum.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/checksum.rs -------------------------------------------------------------------------------- /src/context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/context.rs -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/font.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/font.rs -------------------------------------------------------------------------------- /src/font_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/font_data.rs -------------------------------------------------------------------------------- /src/font_specimen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/font_specimen.rs -------------------------------------------------------------------------------- /src/font_specimen/body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/font_specimen/body.html -------------------------------------------------------------------------------- /src/font_specimen/features.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/font_specimen/features.rs -------------------------------------------------------------------------------- /src/font_specimen/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/font_specimen/head.html -------------------------------------------------------------------------------- /src/font_specimen/langsys.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/font_specimen/langsys.rs -------------------------------------------------------------------------------- /src/font_specimen/scripts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/font_specimen/scripts.rs -------------------------------------------------------------------------------- /src/gdef.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/gdef.rs -------------------------------------------------------------------------------- /src/get_name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/get_name.rs -------------------------------------------------------------------------------- /src/glyph_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/glyph_info.rs -------------------------------------------------------------------------------- /src/glyph_position.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/glyph_position.rs -------------------------------------------------------------------------------- /src/gpos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/gpos.rs -------------------------------------------------------------------------------- /src/gsub.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/gsub.rs -------------------------------------------------------------------------------- /src/layout.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/layout.rs -------------------------------------------------------------------------------- /src/layout/morx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/layout/morx.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/macroman.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/macroman.rs -------------------------------------------------------------------------------- /src/outline.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/outline.rs -------------------------------------------------------------------------------- /src/post.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/post.rs -------------------------------------------------------------------------------- /src/scripts/arabic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/scripts/arabic.rs -------------------------------------------------------------------------------- /src/scripts/indic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/scripts/indic.rs -------------------------------------------------------------------------------- /src/scripts/khmer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/scripts/khmer.rs -------------------------------------------------------------------------------- /src/scripts/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/scripts/mod.rs -------------------------------------------------------------------------------- /src/scripts/myanmar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/scripts/myanmar.rs -------------------------------------------------------------------------------- /src/scripts/syllable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/scripts/syllable.rs -------------------------------------------------------------------------------- /src/scripts/syriac.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/scripts/syriac.rs -------------------------------------------------------------------------------- /src/scripts/thai_lao.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/scripts/thai_lao.rs -------------------------------------------------------------------------------- /src/size.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/size.rs -------------------------------------------------------------------------------- /src/subset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/subset.rs -------------------------------------------------------------------------------- /src/tables.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/tables.rs -------------------------------------------------------------------------------- /src/tables/aat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/tables/aat.rs -------------------------------------------------------------------------------- /src/tables/cmap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/tables/cmap.rs -------------------------------------------------------------------------------- /src/tables/cmap/subset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/tables/cmap/subset.rs -------------------------------------------------------------------------------- /src/tables/colr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/tables/colr.rs -------------------------------------------------------------------------------- /src/tables/cpal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/tables/cpal.rs -------------------------------------------------------------------------------- /src/tables/glyf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/tables/glyf.rs -------------------------------------------------------------------------------- /src/tables/glyf/outline.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/tables/glyf/outline.rs -------------------------------------------------------------------------------- /src/tables/glyf/subset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/tables/glyf/subset.rs -------------------------------------------------------------------------------- /src/tables/glyf/variation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/tables/glyf/variation.rs -------------------------------------------------------------------------------- /src/tables/kern.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/tables/kern.rs -------------------------------------------------------------------------------- /src/tables/loca.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/tables/loca.rs -------------------------------------------------------------------------------- /src/tables/morx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/tables/morx.rs -------------------------------------------------------------------------------- /src/tables/os2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/tables/os2.rs -------------------------------------------------------------------------------- /src/tables/svg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/tables/svg.rs -------------------------------------------------------------------------------- /src/tables/variable_fonts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/tables/variable_fonts.rs -------------------------------------------------------------------------------- /src/tables/variable_fonts/avar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/tables/variable_fonts/avar.rs -------------------------------------------------------------------------------- /src/tables/variable_fonts/cvar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/tables/variable_fonts/cvar.rs -------------------------------------------------------------------------------- /src/tables/variable_fonts/fvar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/tables/variable_fonts/fvar.rs -------------------------------------------------------------------------------- /src/tables/variable_fonts/gvar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/tables/variable_fonts/gvar.rs -------------------------------------------------------------------------------- /src/tables/variable_fonts/hvar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/tables/variable_fonts/hvar.rs -------------------------------------------------------------------------------- /src/tables/variable_fonts/mvar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/tables/variable_fonts/mvar.rs -------------------------------------------------------------------------------- /src/tables/variable_fonts/stat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/tables/variable_fonts/stat.rs -------------------------------------------------------------------------------- /src/tag.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/tag.rs -------------------------------------------------------------------------------- /src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/tests.rs -------------------------------------------------------------------------------- /src/unicode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/unicode.rs -------------------------------------------------------------------------------- /src/unicode/codepoint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/unicode/codepoint.rs -------------------------------------------------------------------------------- /src/unicode/emoji_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/unicode/emoji_data.rs -------------------------------------------------------------------------------- /src/unicode/mcc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/unicode/mcc.rs -------------------------------------------------------------------------------- /src/variations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/variations.rs -------------------------------------------------------------------------------- /src/woff.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/woff.rs -------------------------------------------------------------------------------- /src/woff2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/woff2.rs -------------------------------------------------------------------------------- /src/woff2/collection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/woff2/collection.rs -------------------------------------------------------------------------------- /src/woff2/lut.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/src/woff2/lut.rs -------------------------------------------------------------------------------- /tests/aots.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots.rs -------------------------------------------------------------------------------- /tests/aots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/README.md -------------------------------------------------------------------------------- /tests/aots/aots2testrust.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/aots2testrust.xsl -------------------------------------------------------------------------------- /tests/aots/base.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/base.otf -------------------------------------------------------------------------------- /tests/aots/classdef1_font1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/classdef1_font1.otf -------------------------------------------------------------------------------- /tests/aots/classdef1_font1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/classdef1_font1.xml -------------------------------------------------------------------------------- /tests/aots/classdef1_font2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/classdef1_font2.otf -------------------------------------------------------------------------------- /tests/aots/classdef1_font2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/classdef1_font2.xml -------------------------------------------------------------------------------- /tests/aots/classdef1_font3.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/classdef1_font3.otf -------------------------------------------------------------------------------- /tests/aots/classdef1_font3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/classdef1_font3.xml -------------------------------------------------------------------------------- /tests/aots/classdef1_font4.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/classdef1_font4.otf -------------------------------------------------------------------------------- /tests/aots/classdef1_font4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/classdef1_font4.xml -------------------------------------------------------------------------------- /tests/aots/classdef2_font1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/classdef2_font1.otf -------------------------------------------------------------------------------- /tests/aots/classdef2_font1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/classdef2_font1.xml -------------------------------------------------------------------------------- /tests/aots/classdef2_font2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/classdef2_font2.otf -------------------------------------------------------------------------------- /tests/aots/classdef2_font2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/classdef2_font2.xml -------------------------------------------------------------------------------- /tests/aots/classdef2_font3.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/classdef2_font3.otf -------------------------------------------------------------------------------- /tests/aots/classdef2_font3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/classdef2_font3.xml -------------------------------------------------------------------------------- /tests/aots/classdef2_font4.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/classdef2_font4.otf -------------------------------------------------------------------------------- /tests/aots/classdef2_font4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/classdef2_font4.xml -------------------------------------------------------------------------------- /tests/aots/cmap0_font1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap0_font1.otf -------------------------------------------------------------------------------- /tests/aots/cmap0_font1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap0_font1.xml -------------------------------------------------------------------------------- /tests/aots/cmap10_font1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap10_font1.otf -------------------------------------------------------------------------------- /tests/aots/cmap10_font1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap10_font1.xml -------------------------------------------------------------------------------- /tests/aots/cmap10_font2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap10_font2.otf -------------------------------------------------------------------------------- /tests/aots/cmap10_font2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap10_font2.xml -------------------------------------------------------------------------------- /tests/aots/cmap12_font1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap12_font1.otf -------------------------------------------------------------------------------- /tests/aots/cmap12_font1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap12_font1.xml -------------------------------------------------------------------------------- /tests/aots/cmap14_font1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap14_font1.otf -------------------------------------------------------------------------------- /tests/aots/cmap14_font1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap14_font1.xml -------------------------------------------------------------------------------- /tests/aots/cmap2_font1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap2_font1.otf -------------------------------------------------------------------------------- /tests/aots/cmap2_font1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap2_font1.xml -------------------------------------------------------------------------------- /tests/aots/cmap4_font1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap4_font1.otf -------------------------------------------------------------------------------- /tests/aots/cmap4_font1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap4_font1.xml -------------------------------------------------------------------------------- /tests/aots/cmap4_font2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap4_font2.otf -------------------------------------------------------------------------------- /tests/aots/cmap4_font2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap4_font2.xml -------------------------------------------------------------------------------- /tests/aots/cmap4_font3.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap4_font3.otf -------------------------------------------------------------------------------- /tests/aots/cmap4_font3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap4_font3.xml -------------------------------------------------------------------------------- /tests/aots/cmap4_font4.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap4_font4.otf -------------------------------------------------------------------------------- /tests/aots/cmap4_font4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap4_font4.xml -------------------------------------------------------------------------------- /tests/aots/cmap6_font1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap6_font1.otf -------------------------------------------------------------------------------- /tests/aots/cmap6_font1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap6_font1.xml -------------------------------------------------------------------------------- /tests/aots/cmap6_font2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap6_font2.otf -------------------------------------------------------------------------------- /tests/aots/cmap6_font2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap6_font2.xml -------------------------------------------------------------------------------- /tests/aots/cmap8_font1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap8_font1.otf -------------------------------------------------------------------------------- /tests/aots/cmap8_font1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap8_font1.xml -------------------------------------------------------------------------------- /tests/aots/cmap_composition_font1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap_composition_font1.otf -------------------------------------------------------------------------------- /tests/aots/cmap_composition_font1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap_composition_font1.xml -------------------------------------------------------------------------------- /tests/aots/cmap_subtableselection_font1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap_subtableselection_font1.otf -------------------------------------------------------------------------------- /tests/aots/cmap_subtableselection_font1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap_subtableselection_font1.xml -------------------------------------------------------------------------------- /tests/aots/cmap_subtableselection_font2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap_subtableselection_font2.otf -------------------------------------------------------------------------------- /tests/aots/cmap_subtableselection_font2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap_subtableselection_font2.xml -------------------------------------------------------------------------------- /tests/aots/cmap_subtableselection_font3.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap_subtableselection_font3.otf -------------------------------------------------------------------------------- /tests/aots/cmap_subtableselection_font3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap_subtableselection_font3.xml -------------------------------------------------------------------------------- /tests/aots/cmap_subtableselection_font4.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap_subtableselection_font4.otf -------------------------------------------------------------------------------- /tests/aots/cmap_subtableselection_font4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap_subtableselection_font4.xml -------------------------------------------------------------------------------- /tests/aots/cmap_subtableselection_font5.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap_subtableselection_font5.otf -------------------------------------------------------------------------------- /tests/aots/cmap_subtableselection_font5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/cmap_subtableselection_font5.xml -------------------------------------------------------------------------------- /tests/aots/gpos1_1_lookupflag_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos1_1_lookupflag_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos1_1_lookupflag_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos1_1_lookupflag_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos1_1_simple_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos1_1_simple_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos1_1_simple_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos1_1_simple_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos1_1_simple_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos1_1_simple_f2.otf -------------------------------------------------------------------------------- /tests/aots/gpos1_1_simple_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos1_1_simple_f2.xml -------------------------------------------------------------------------------- /tests/aots/gpos1_1_simple_f3.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos1_1_simple_f3.otf -------------------------------------------------------------------------------- /tests/aots/gpos1_1_simple_f3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos1_1_simple_f3.xml -------------------------------------------------------------------------------- /tests/aots/gpos1_1_simple_f4.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos1_1_simple_f4.otf -------------------------------------------------------------------------------- /tests/aots/gpos1_1_simple_f4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos1_1_simple_f4.xml -------------------------------------------------------------------------------- /tests/aots/gpos1_2_font1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos1_2_font1.otf -------------------------------------------------------------------------------- /tests/aots/gpos1_2_font1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos1_2_font1.xml -------------------------------------------------------------------------------- /tests/aots/gpos1_2_font2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos1_2_font2.otf -------------------------------------------------------------------------------- /tests/aots/gpos1_2_font2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos1_2_font2.xml -------------------------------------------------------------------------------- /tests/aots/gpos2_1_font6.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos2_1_font6.otf -------------------------------------------------------------------------------- /tests/aots/gpos2_1_font6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos2_1_font6.xml -------------------------------------------------------------------------------- /tests/aots/gpos2_1_font7.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos2_1_font7.otf -------------------------------------------------------------------------------- /tests/aots/gpos2_1_font7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos2_1_font7.xml -------------------------------------------------------------------------------- /tests/aots/gpos2_1_lookupflag_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos2_1_lookupflag_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos2_1_lookupflag_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos2_1_lookupflag_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos2_1_lookupflag_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos2_1_lookupflag_f2.otf -------------------------------------------------------------------------------- /tests/aots/gpos2_1_lookupflag_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos2_1_lookupflag_f2.xml -------------------------------------------------------------------------------- /tests/aots/gpos2_1_next_glyph_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos2_1_next_glyph_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos2_1_next_glyph_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos2_1_next_glyph_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos2_1_next_glyph_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos2_1_next_glyph_f2.otf -------------------------------------------------------------------------------- /tests/aots/gpos2_1_next_glyph_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos2_1_next_glyph_f2.xml -------------------------------------------------------------------------------- /tests/aots/gpos2_1_simple_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos2_1_simple_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos2_1_simple_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos2_1_simple_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos2_2_font1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos2_2_font1.otf -------------------------------------------------------------------------------- /tests/aots/gpos2_2_font1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos2_2_font1.xml -------------------------------------------------------------------------------- /tests/aots/gpos2_2_font2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos2_2_font2.otf -------------------------------------------------------------------------------- /tests/aots/gpos2_2_font2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos2_2_font2.xml -------------------------------------------------------------------------------- /tests/aots/gpos2_2_font3.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos2_2_font3.otf -------------------------------------------------------------------------------- /tests/aots/gpos2_2_font3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos2_2_font3.xml -------------------------------------------------------------------------------- /tests/aots/gpos2_2_font4.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos2_2_font4.otf -------------------------------------------------------------------------------- /tests/aots/gpos2_2_font4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos2_2_font4.xml -------------------------------------------------------------------------------- /tests/aots/gpos2_2_font5.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos2_2_font5.otf -------------------------------------------------------------------------------- /tests/aots/gpos2_2_font5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos2_2_font5.xml -------------------------------------------------------------------------------- /tests/aots/gpos3_font1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos3_font1.otf -------------------------------------------------------------------------------- /tests/aots/gpos3_font1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos3_font1.xml -------------------------------------------------------------------------------- /tests/aots/gpos3_font2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos3_font2.otf -------------------------------------------------------------------------------- /tests/aots/gpos3_font2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos3_font2.xml -------------------------------------------------------------------------------- /tests/aots/gpos3_font3.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos3_font3.otf -------------------------------------------------------------------------------- /tests/aots/gpos3_font3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos3_font3.xml -------------------------------------------------------------------------------- /tests/aots/gpos4_lookupflag_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos4_lookupflag_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos4_lookupflag_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos4_lookupflag_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos4_lookupflag_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos4_lookupflag_f2.otf -------------------------------------------------------------------------------- /tests/aots/gpos4_lookupflag_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos4_lookupflag_f2.xml -------------------------------------------------------------------------------- /tests/aots/gpos4_multiple_anchors_1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos4_multiple_anchors_1.otf -------------------------------------------------------------------------------- /tests/aots/gpos4_multiple_anchors_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos4_multiple_anchors_1.xml -------------------------------------------------------------------------------- /tests/aots/gpos4_simple_1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos4_simple_1.otf -------------------------------------------------------------------------------- /tests/aots/gpos4_simple_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos4_simple_1.xml -------------------------------------------------------------------------------- /tests/aots/gpos5_font1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos5_font1.otf -------------------------------------------------------------------------------- /tests/aots/gpos5_font1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos5_font1.xml -------------------------------------------------------------------------------- /tests/aots/gpos6_font1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos6_font1.otf -------------------------------------------------------------------------------- /tests/aots/gpos6_font1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos6_font1.xml -------------------------------------------------------------------------------- /tests/aots/gpos7_1_font1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos7_1_font1.otf -------------------------------------------------------------------------------- /tests/aots/gpos7_1_font1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos7_1_font1.xml -------------------------------------------------------------------------------- /tests/aots/gpos9_font1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos9_font1.otf -------------------------------------------------------------------------------- /tests/aots/gpos9_font1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos9_font1.xml -------------------------------------------------------------------------------- /tests/aots/gpos9_font2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos9_font2.otf -------------------------------------------------------------------------------- /tests/aots/gpos9_font2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos9_font2.xml -------------------------------------------------------------------------------- /tests/aots/gpos_chaining1_boundary_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining1_boundary_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_chaining1_boundary_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining1_boundary_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_chaining1_boundary_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining1_boundary_f2.otf -------------------------------------------------------------------------------- /tests/aots/gpos_chaining1_boundary_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining1_boundary_f2.xml -------------------------------------------------------------------------------- /tests/aots/gpos_chaining1_boundary_f3.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining1_boundary_f3.otf -------------------------------------------------------------------------------- /tests/aots/gpos_chaining1_boundary_f3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining1_boundary_f3.xml -------------------------------------------------------------------------------- /tests/aots/gpos_chaining1_boundary_f4.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining1_boundary_f4.otf -------------------------------------------------------------------------------- /tests/aots/gpos_chaining1_boundary_f4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining1_boundary_f4.xml -------------------------------------------------------------------------------- /tests/aots/gpos_chaining1_lookupflag_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining1_lookupflag_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_chaining1_lookupflag_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining1_lookupflag_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_chaining1_multiple_subrules_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining1_multiple_subrules_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_chaining1_multiple_subrules_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining1_multiple_subrules_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_chaining1_multiple_subrules_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining1_multiple_subrules_f2.otf -------------------------------------------------------------------------------- /tests/aots/gpos_chaining1_multiple_subrules_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining1_multiple_subrules_f2.xml -------------------------------------------------------------------------------- /tests/aots/gpos_chaining1_next_glyph_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining1_next_glyph_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_chaining1_next_glyph_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining1_next_glyph_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_chaining1_simple_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining1_simple_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_chaining1_simple_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining1_simple_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_chaining1_simple_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining1_simple_f2.otf -------------------------------------------------------------------------------- /tests/aots/gpos_chaining1_simple_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining1_simple_f2.xml -------------------------------------------------------------------------------- /tests/aots/gpos_chaining1_successive_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining1_successive_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_chaining1_successive_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining1_successive_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_chaining2_boundary_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining2_boundary_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_chaining2_boundary_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining2_boundary_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_chaining2_boundary_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining2_boundary_f2.otf -------------------------------------------------------------------------------- /tests/aots/gpos_chaining2_boundary_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining2_boundary_f2.xml -------------------------------------------------------------------------------- /tests/aots/gpos_chaining2_boundary_f3.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining2_boundary_f3.otf -------------------------------------------------------------------------------- /tests/aots/gpos_chaining2_boundary_f3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining2_boundary_f3.xml -------------------------------------------------------------------------------- /tests/aots/gpos_chaining2_boundary_f4.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining2_boundary_f4.otf -------------------------------------------------------------------------------- /tests/aots/gpos_chaining2_boundary_f4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining2_boundary_f4.xml -------------------------------------------------------------------------------- /tests/aots/gpos_chaining2_lookupflag_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining2_lookupflag_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_chaining2_lookupflag_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining2_lookupflag_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_chaining2_multiple_subrules_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining2_multiple_subrules_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_chaining2_multiple_subrules_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining2_multiple_subrules_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_chaining2_multiple_subrules_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining2_multiple_subrules_f2.otf -------------------------------------------------------------------------------- /tests/aots/gpos_chaining2_multiple_subrules_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining2_multiple_subrules_f2.xml -------------------------------------------------------------------------------- /tests/aots/gpos_chaining2_next_glyph_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining2_next_glyph_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_chaining2_next_glyph_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining2_next_glyph_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_chaining2_simple_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining2_simple_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_chaining2_simple_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining2_simple_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_chaining2_simple_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining2_simple_f2.otf -------------------------------------------------------------------------------- /tests/aots/gpos_chaining2_simple_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining2_simple_f2.xml -------------------------------------------------------------------------------- /tests/aots/gpos_chaining2_successive_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining2_successive_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_chaining2_successive_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining2_successive_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_chaining3_boundary_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining3_boundary_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_chaining3_boundary_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining3_boundary_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_chaining3_boundary_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining3_boundary_f2.otf -------------------------------------------------------------------------------- /tests/aots/gpos_chaining3_boundary_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining3_boundary_f2.xml -------------------------------------------------------------------------------- /tests/aots/gpos_chaining3_boundary_f3.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining3_boundary_f3.otf -------------------------------------------------------------------------------- /tests/aots/gpos_chaining3_boundary_f3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining3_boundary_f3.xml -------------------------------------------------------------------------------- /tests/aots/gpos_chaining3_boundary_f4.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining3_boundary_f4.otf -------------------------------------------------------------------------------- /tests/aots/gpos_chaining3_boundary_f4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining3_boundary_f4.xml -------------------------------------------------------------------------------- /tests/aots/gpos_chaining3_lookupflag_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining3_lookupflag_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_chaining3_lookupflag_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining3_lookupflag_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_chaining3_next_glyph_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining3_next_glyph_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_chaining3_next_glyph_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining3_next_glyph_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_chaining3_simple_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining3_simple_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_chaining3_simple_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining3_simple_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_chaining3_simple_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining3_simple_f2.otf -------------------------------------------------------------------------------- /tests/aots/gpos_chaining3_simple_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining3_simple_f2.xml -------------------------------------------------------------------------------- /tests/aots/gpos_chaining3_successive_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining3_successive_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_chaining3_successive_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_chaining3_successive_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_context1_boundary_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context1_boundary_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_context1_boundary_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context1_boundary_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_context1_boundary_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context1_boundary_f2.otf -------------------------------------------------------------------------------- /tests/aots/gpos_context1_boundary_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context1_boundary_f2.xml -------------------------------------------------------------------------------- /tests/aots/gpos_context1_expansion_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context1_expansion_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_context1_expansion_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context1_expansion_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_context1_lookupflag_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context1_lookupflag_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_context1_lookupflag_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context1_lookupflag_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_context1_lookupflag_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context1_lookupflag_f2.otf -------------------------------------------------------------------------------- /tests/aots/gpos_context1_lookupflag_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context1_lookupflag_f2.xml -------------------------------------------------------------------------------- /tests/aots/gpos_context1_multiple_subrules_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context1_multiple_subrules_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_context1_multiple_subrules_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context1_multiple_subrules_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_context1_multiple_subrules_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context1_multiple_subrules_f2.otf -------------------------------------------------------------------------------- /tests/aots/gpos_context1_multiple_subrules_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context1_multiple_subrules_f2.xml -------------------------------------------------------------------------------- /tests/aots/gpos_context1_next_glyph_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context1_next_glyph_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_context1_next_glyph_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context1_next_glyph_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_context1_simple_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context1_simple_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_context1_simple_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context1_simple_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_context1_simple_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context1_simple_f2.otf -------------------------------------------------------------------------------- /tests/aots/gpos_context1_simple_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context1_simple_f2.xml -------------------------------------------------------------------------------- /tests/aots/gpos_context1_successive_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context1_successive_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_context1_successive_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context1_successive_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_context2_boundary_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context2_boundary_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_context2_boundary_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context2_boundary_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_context2_boundary_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context2_boundary_f2.otf -------------------------------------------------------------------------------- /tests/aots/gpos_context2_boundary_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context2_boundary_f2.xml -------------------------------------------------------------------------------- /tests/aots/gpos_context2_classes_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context2_classes_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_context2_classes_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context2_classes_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_context2_classes_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context2_classes_f2.otf -------------------------------------------------------------------------------- /tests/aots/gpos_context2_classes_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context2_classes_f2.xml -------------------------------------------------------------------------------- /tests/aots/gpos_context2_expansion_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context2_expansion_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_context2_expansion_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context2_expansion_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_context2_lookupflag_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context2_lookupflag_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_context2_lookupflag_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context2_lookupflag_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_context2_lookupflag_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context2_lookupflag_f2.otf -------------------------------------------------------------------------------- /tests/aots/gpos_context2_lookupflag_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context2_lookupflag_f2.xml -------------------------------------------------------------------------------- /tests/aots/gpos_context2_multiple_subrules_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context2_multiple_subrules_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_context2_multiple_subrules_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context2_multiple_subrules_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_context2_multiple_subrules_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context2_multiple_subrules_f2.otf -------------------------------------------------------------------------------- /tests/aots/gpos_context2_multiple_subrules_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context2_multiple_subrules_f2.xml -------------------------------------------------------------------------------- /tests/aots/gpos_context2_next_glyph_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context2_next_glyph_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_context2_next_glyph_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context2_next_glyph_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_context2_simple_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context2_simple_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_context2_simple_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context2_simple_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_context2_simple_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context2_simple_f2.otf -------------------------------------------------------------------------------- /tests/aots/gpos_context2_simple_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context2_simple_f2.xml -------------------------------------------------------------------------------- /tests/aots/gpos_context2_successive_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context2_successive_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_context2_successive_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context2_successive_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_context3_boundary_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context3_boundary_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_context3_boundary_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context3_boundary_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_context3_boundary_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context3_boundary_f2.otf -------------------------------------------------------------------------------- /tests/aots/gpos_context3_boundary_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context3_boundary_f2.xml -------------------------------------------------------------------------------- /tests/aots/gpos_context3_lookupflag_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context3_lookupflag_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_context3_lookupflag_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context3_lookupflag_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_context3_lookupflag_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context3_lookupflag_f2.otf -------------------------------------------------------------------------------- /tests/aots/gpos_context3_lookupflag_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context3_lookupflag_f2.xml -------------------------------------------------------------------------------- /tests/aots/gpos_context3_next_glyph_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context3_next_glyph_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_context3_next_glyph_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context3_next_glyph_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_context3_simple_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context3_simple_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_context3_simple_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context3_simple_f1.xml -------------------------------------------------------------------------------- /tests/aots/gpos_context3_successive_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context3_successive_f1.otf -------------------------------------------------------------------------------- /tests/aots/gpos_context3_successive_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gpos_context3_successive_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub1_1_lookupflag_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub1_1_lookupflag_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub1_1_lookupflag_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub1_1_lookupflag_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub1_1_modulo_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub1_1_modulo_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub1_1_modulo_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub1_1_modulo_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub1_1_simple_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub1_1_simple_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub1_1_simple_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub1_1_simple_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub1_2_lookupflag_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub1_2_lookupflag_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub1_2_lookupflag_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub1_2_lookupflag_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub1_2_simple_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub1_2_simple_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub1_2_simple_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub1_2_simple_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub2_1_lookupflag_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub2_1_lookupflag_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub2_1_lookupflag_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub2_1_lookupflag_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub2_1_multiple_sequences_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub2_1_multiple_sequences_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub2_1_multiple_sequences_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub2_1_multiple_sequences_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub2_1_simple_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub2_1_simple_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub2_1_simple_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub2_1_simple_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub3_1_lookupflag_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub3_1_lookupflag_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub3_1_lookupflag_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub3_1_lookupflag_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub3_1_multiple_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub3_1_multiple_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub3_1_multiple_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub3_1_multiple_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub3_1_simple_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub3_1_simple_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub3_1_simple_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub3_1_simple_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub4_1_lookupflag_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub4_1_lookupflag_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub4_1_lookupflag_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub4_1_lookupflag_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub4_1_multiple_ligatures_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub4_1_multiple_ligatures_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub4_1_multiple_ligatures_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub4_1_multiple_ligatures_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub4_1_multiple_ligatures_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub4_1_multiple_ligatures_f2.otf -------------------------------------------------------------------------------- /tests/aots/gsub4_1_multiple_ligatures_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub4_1_multiple_ligatures_f2.xml -------------------------------------------------------------------------------- /tests/aots/gsub4_1_multiple_ligsets_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub4_1_multiple_ligsets_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub4_1_multiple_ligsets_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub4_1_multiple_ligsets_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub4_1_simple_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub4_1_simple_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub4_1_simple_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub4_1_simple_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub7_font1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub7_font1.otf -------------------------------------------------------------------------------- /tests/aots/gsub7_font1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub7_font1.xml -------------------------------------------------------------------------------- /tests/aots/gsub7_font2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub7_font2.otf -------------------------------------------------------------------------------- /tests/aots/gsub7_font2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub7_font2.xml -------------------------------------------------------------------------------- /tests/aots/gsub_chaining1_boundary_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining1_boundary_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_chaining1_boundary_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining1_boundary_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_chaining1_boundary_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining1_boundary_f2.otf -------------------------------------------------------------------------------- /tests/aots/gsub_chaining1_boundary_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining1_boundary_f2.xml -------------------------------------------------------------------------------- /tests/aots/gsub_chaining1_boundary_f3.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining1_boundary_f3.otf -------------------------------------------------------------------------------- /tests/aots/gsub_chaining1_boundary_f3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining1_boundary_f3.xml -------------------------------------------------------------------------------- /tests/aots/gsub_chaining1_boundary_f4.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining1_boundary_f4.otf -------------------------------------------------------------------------------- /tests/aots/gsub_chaining1_boundary_f4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining1_boundary_f4.xml -------------------------------------------------------------------------------- /tests/aots/gsub_chaining1_lookupflag_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining1_lookupflag_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_chaining1_lookupflag_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining1_lookupflag_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_chaining1_multiple_subrules_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining1_multiple_subrules_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_chaining1_multiple_subrules_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining1_multiple_subrules_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_chaining1_multiple_subrules_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining1_multiple_subrules_f2.otf -------------------------------------------------------------------------------- /tests/aots/gsub_chaining1_multiple_subrules_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining1_multiple_subrules_f2.xml -------------------------------------------------------------------------------- /tests/aots/gsub_chaining1_next_glyph_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining1_next_glyph_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_chaining1_next_glyph_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining1_next_glyph_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_chaining1_simple_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining1_simple_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_chaining1_simple_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining1_simple_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_chaining1_simple_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining1_simple_f2.otf -------------------------------------------------------------------------------- /tests/aots/gsub_chaining1_simple_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining1_simple_f2.xml -------------------------------------------------------------------------------- /tests/aots/gsub_chaining1_successive_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining1_successive_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_chaining1_successive_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining1_successive_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_chaining2_boundary_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining2_boundary_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_chaining2_boundary_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining2_boundary_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_chaining2_boundary_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining2_boundary_f2.otf -------------------------------------------------------------------------------- /tests/aots/gsub_chaining2_boundary_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining2_boundary_f2.xml -------------------------------------------------------------------------------- /tests/aots/gsub_chaining2_boundary_f3.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining2_boundary_f3.otf -------------------------------------------------------------------------------- /tests/aots/gsub_chaining2_boundary_f3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining2_boundary_f3.xml -------------------------------------------------------------------------------- /tests/aots/gsub_chaining2_boundary_f4.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining2_boundary_f4.otf -------------------------------------------------------------------------------- /tests/aots/gsub_chaining2_boundary_f4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining2_boundary_f4.xml -------------------------------------------------------------------------------- /tests/aots/gsub_chaining2_lookupflag_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining2_lookupflag_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_chaining2_lookupflag_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining2_lookupflag_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_chaining2_multiple_subrules_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining2_multiple_subrules_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_chaining2_multiple_subrules_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining2_multiple_subrules_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_chaining2_multiple_subrules_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining2_multiple_subrules_f2.otf -------------------------------------------------------------------------------- /tests/aots/gsub_chaining2_multiple_subrules_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining2_multiple_subrules_f2.xml -------------------------------------------------------------------------------- /tests/aots/gsub_chaining2_next_glyph_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining2_next_glyph_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_chaining2_next_glyph_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining2_next_glyph_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_chaining2_simple_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining2_simple_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_chaining2_simple_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining2_simple_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_chaining2_simple_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining2_simple_f2.otf -------------------------------------------------------------------------------- /tests/aots/gsub_chaining2_simple_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining2_simple_f2.xml -------------------------------------------------------------------------------- /tests/aots/gsub_chaining2_successive_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining2_successive_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_chaining2_successive_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining2_successive_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_chaining3_boundary_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining3_boundary_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_chaining3_boundary_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining3_boundary_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_chaining3_boundary_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining3_boundary_f2.otf -------------------------------------------------------------------------------- /tests/aots/gsub_chaining3_boundary_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining3_boundary_f2.xml -------------------------------------------------------------------------------- /tests/aots/gsub_chaining3_boundary_f3.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining3_boundary_f3.otf -------------------------------------------------------------------------------- /tests/aots/gsub_chaining3_boundary_f3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining3_boundary_f3.xml -------------------------------------------------------------------------------- /tests/aots/gsub_chaining3_boundary_f4.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining3_boundary_f4.otf -------------------------------------------------------------------------------- /tests/aots/gsub_chaining3_boundary_f4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining3_boundary_f4.xml -------------------------------------------------------------------------------- /tests/aots/gsub_chaining3_lookupflag_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining3_lookupflag_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_chaining3_lookupflag_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining3_lookupflag_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_chaining3_next_glyph_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining3_next_glyph_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_chaining3_next_glyph_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining3_next_glyph_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_chaining3_simple_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining3_simple_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_chaining3_simple_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining3_simple_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_chaining3_simple_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining3_simple_f2.otf -------------------------------------------------------------------------------- /tests/aots/gsub_chaining3_simple_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining3_simple_f2.xml -------------------------------------------------------------------------------- /tests/aots/gsub_chaining3_successive_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining3_successive_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_chaining3_successive_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_chaining3_successive_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_context1_boundary_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context1_boundary_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_context1_boundary_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context1_boundary_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_context1_boundary_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context1_boundary_f2.otf -------------------------------------------------------------------------------- /tests/aots/gsub_context1_boundary_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context1_boundary_f2.xml -------------------------------------------------------------------------------- /tests/aots/gsub_context1_expansion_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context1_expansion_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_context1_expansion_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context1_expansion_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_context1_lookupflag_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context1_lookupflag_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_context1_lookupflag_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context1_lookupflag_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_context1_lookupflag_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context1_lookupflag_f2.otf -------------------------------------------------------------------------------- /tests/aots/gsub_context1_lookupflag_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context1_lookupflag_f2.xml -------------------------------------------------------------------------------- /tests/aots/gsub_context1_multiple_subrules_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context1_multiple_subrules_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_context1_multiple_subrules_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context1_multiple_subrules_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_context1_multiple_subrules_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context1_multiple_subrules_f2.otf -------------------------------------------------------------------------------- /tests/aots/gsub_context1_multiple_subrules_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context1_multiple_subrules_f2.xml -------------------------------------------------------------------------------- /tests/aots/gsub_context1_next_glyph_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context1_next_glyph_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_context1_next_glyph_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context1_next_glyph_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_context1_simple_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context1_simple_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_context1_simple_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context1_simple_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_context1_simple_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context1_simple_f2.otf -------------------------------------------------------------------------------- /tests/aots/gsub_context1_simple_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context1_simple_f2.xml -------------------------------------------------------------------------------- /tests/aots/gsub_context1_successive_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context1_successive_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_context1_successive_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context1_successive_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_context2_boundary_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context2_boundary_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_context2_boundary_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context2_boundary_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_context2_boundary_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context2_boundary_f2.otf -------------------------------------------------------------------------------- /tests/aots/gsub_context2_boundary_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context2_boundary_f2.xml -------------------------------------------------------------------------------- /tests/aots/gsub_context2_classes_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context2_classes_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_context2_classes_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context2_classes_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_context2_classes_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context2_classes_f2.otf -------------------------------------------------------------------------------- /tests/aots/gsub_context2_classes_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context2_classes_f2.xml -------------------------------------------------------------------------------- /tests/aots/gsub_context2_expansion_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context2_expansion_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_context2_expansion_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context2_expansion_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_context2_lookupflag_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context2_lookupflag_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_context2_lookupflag_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context2_lookupflag_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_context2_lookupflag_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context2_lookupflag_f2.otf -------------------------------------------------------------------------------- /tests/aots/gsub_context2_lookupflag_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context2_lookupflag_f2.xml -------------------------------------------------------------------------------- /tests/aots/gsub_context2_multiple_subrules_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context2_multiple_subrules_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_context2_multiple_subrules_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context2_multiple_subrules_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_context2_multiple_subrules_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context2_multiple_subrules_f2.otf -------------------------------------------------------------------------------- /tests/aots/gsub_context2_multiple_subrules_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context2_multiple_subrules_f2.xml -------------------------------------------------------------------------------- /tests/aots/gsub_context2_next_glyph_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context2_next_glyph_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_context2_next_glyph_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context2_next_glyph_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_context2_simple_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context2_simple_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_context2_simple_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context2_simple_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_context2_simple_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context2_simple_f2.otf -------------------------------------------------------------------------------- /tests/aots/gsub_context2_simple_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context2_simple_f2.xml -------------------------------------------------------------------------------- /tests/aots/gsub_context2_successive_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context2_successive_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_context2_successive_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context2_successive_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_context3_boundary_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context3_boundary_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_context3_boundary_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context3_boundary_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_context3_boundary_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context3_boundary_f2.otf -------------------------------------------------------------------------------- /tests/aots/gsub_context3_boundary_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context3_boundary_f2.xml -------------------------------------------------------------------------------- /tests/aots/gsub_context3_lookupflag_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context3_lookupflag_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_context3_lookupflag_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context3_lookupflag_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_context3_lookupflag_f2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context3_lookupflag_f2.otf -------------------------------------------------------------------------------- /tests/aots/gsub_context3_lookupflag_f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context3_lookupflag_f2.xml -------------------------------------------------------------------------------- /tests/aots/gsub_context3_next_glyph_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context3_next_glyph_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_context3_next_glyph_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context3_next_glyph_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_context3_simple_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context3_simple_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_context3_simple_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context3_simple_f1.xml -------------------------------------------------------------------------------- /tests/aots/gsub_context3_successive_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context3_successive_f1.otf -------------------------------------------------------------------------------- /tests/aots/gsub_context3_successive_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/gsub_context3_successive_f1.xml -------------------------------------------------------------------------------- /tests/aots/lookupflag_ignore_attach_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/lookupflag_ignore_attach_f1.otf -------------------------------------------------------------------------------- /tests/aots/lookupflag_ignore_attach_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/lookupflag_ignore_attach_f1.xml -------------------------------------------------------------------------------- /tests/aots/lookupflag_ignore_base_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/lookupflag_ignore_base_f1.otf -------------------------------------------------------------------------------- /tests/aots/lookupflag_ignore_base_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/lookupflag_ignore_base_f1.xml -------------------------------------------------------------------------------- /tests/aots/lookupflag_ignore_combination_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/lookupflag_ignore_combination_f1.otf -------------------------------------------------------------------------------- /tests/aots/lookupflag_ignore_combination_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/lookupflag_ignore_combination_f1.xml -------------------------------------------------------------------------------- /tests/aots/lookupflag_ignore_ligatures_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/lookupflag_ignore_ligatures_f1.otf -------------------------------------------------------------------------------- /tests/aots/lookupflag_ignore_ligatures_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/lookupflag_ignore_ligatures_f1.xml -------------------------------------------------------------------------------- /tests/aots/lookupflag_ignore_marks_f1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/lookupflag_ignore_marks_f1.otf -------------------------------------------------------------------------------- /tests/aots/lookupflag_ignore_marks_f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/lookupflag_ignore_marks_f1.xml -------------------------------------------------------------------------------- /tests/aots/testcases.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/aots/testcases.rs -------------------------------------------------------------------------------- /tests/arabic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/arabic.rs -------------------------------------------------------------------------------- /tests/cff.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/cff.rs -------------------------------------------------------------------------------- /tests/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/common.rs -------------------------------------------------------------------------------- /tests/font_specimen/SourceSans3.abc.otf.body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/font_specimen/SourceSans3.abc.otf.body.html -------------------------------------------------------------------------------- /tests/font_specimen/SourceSans3.abc.otf.head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/font_specimen/SourceSans3.abc.otf.head.html -------------------------------------------------------------------------------- /tests/font_specimen/fonts/SourceSans3.abc.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/font_specimen/fonts/SourceSans3.abc.otf -------------------------------------------------------------------------------- /tests/font_specimen/fonts/SymbolTest-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/font_specimen/fonts/SymbolTest-Regular.ttf -------------------------------------------------------------------------------- /tests/font_specimen/fonts/big5.cmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/font_specimen/fonts/big5.cmap -------------------------------------------------------------------------------- /tests/font_specimen/fonts/macroman.cmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/font_specimen/fonts/macroman.cmap -------------------------------------------------------------------------------- /tests/fonts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/README.md -------------------------------------------------------------------------------- /tests/fonts/arabic/KacstBook.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/arabic/KacstBook.ttf -------------------------------------------------------------------------------- /tests/fonts/arabic/NafeesNastaleeq.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/arabic/NafeesNastaleeq.ttf -------------------------------------------------------------------------------- /tests/fonts/arabic/Scheherazade-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/arabic/Scheherazade-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/arabic/ae_Arab.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/arabic/ae_Arab.ttf -------------------------------------------------------------------------------- /tests/fonts/arabic/amiri-quran.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/arabic/amiri-quran.ttf -------------------------------------------------------------------------------- /tests/fonts/arabic/amiri-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/arabic/amiri-regular.ttf -------------------------------------------------------------------------------- /tests/fonts/bengali/Lohit-Bengali.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/bengali/Lohit-Bengali.ttf -------------------------------------------------------------------------------- /tests/fonts/bengali/Siyamrupali_1_01.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/bengali/Siyamrupali_1_01.ttf -------------------------------------------------------------------------------- /tests/fonts/colr/SixtyfourConvergence-Regular-VariableFont_BLED,SCAN,XELA,YELA.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/colr/SixtyfourConvergence-Regular-VariableFont_BLED,SCAN,XELA,YELA.ttf -------------------------------------------------------------------------------- /tests/fonts/devanagari/AnnapurnaSIL-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/devanagari/AnnapurnaSIL-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/devanagari/lohit_hi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/devanagari/lohit_hi.ttf -------------------------------------------------------------------------------- /tests/fonts/devanagari/sahadeva.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/devanagari/sahadeva.ttf -------------------------------------------------------------------------------- /tests/fonts/gujarati/Rekha.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/gujarati/Rekha.ttf -------------------------------------------------------------------------------- /tests/fonts/gujarati/Samyak-Gujarati.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/gujarati/Samyak-Gujarati.ttf -------------------------------------------------------------------------------- /tests/fonts/gujarati/lohit_gu.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/gujarati/lohit_gu.ttf -------------------------------------------------------------------------------- /tests/fonts/gujarati/padmaa.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/gujarati/padmaa.ttf -------------------------------------------------------------------------------- /tests/fonts/gurmukhi/Saab.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/gurmukhi/Saab.ttf -------------------------------------------------------------------------------- /tests/fonts/kannada/lohit_kn.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/kannada/lohit_kn.ttf -------------------------------------------------------------------------------- /tests/fonts/khmer/Battambang-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/khmer/Battambang-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/licenses/AnnapurnaSIL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/AnnapurnaSIL.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/Battambang.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/Battambang.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/BethMardutho.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/BethMardutho.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/Caudex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/Caudex.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/Chilanka.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/Chilanka.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/ChromaCheck.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/ChromaCheck.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/Dyuthi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/Dyuthi.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/Inter[slnt,wght].abc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/Inter[slnt,wght].abc.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/KacstBook.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/KacstBook.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/Klei.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/Klei.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/Lohit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/Lohit.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/Mandali.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/Mandali.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/NafeesNastaleeq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/NafeesNastaleeq.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/NotoSans-VF.abc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/NotoSans-VF.abc.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/OpenSans-Regular.ttf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/OpenSans-Regular.ttf.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/Padauk-Regular.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/Padauk-Regular.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/Rachana.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/Rachana.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/Rachana_w01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/Rachana_w01.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/Rekha.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/Rekha.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/Saab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/Saab.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/Sahadeva.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/Sahadeva.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/SamyakGujarati.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/SamyakGujarati.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/Scheherazade-Regular.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/Scheherazade-Regular.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/SixtyfourConvergence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/SixtyfourConvergence.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/SiyamRupali.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/SiyamRupali.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/SourceCodePro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/SourceCodePro.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/SourceSansVariable-Roman.abc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/SourceSansVariable-Roman.abc.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/TAMu_Kalyani.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/TAMu_Kalyani.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/TerminusTTF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/TerminusTTF.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/TestGSUBThree.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/TestGSUBThree.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/TwitterColorEmoji-SVGinOT-12.0.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/TwitterColorEmoji-SVGinOT-12.0.1.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/UbuntuMono.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/UbuntuMono.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/UnderlineTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/UnderlineTest.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/ae_Arab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/ae_Arab.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/amiri-quran.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/amiri-quran.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/padmaa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/padmaa.txt -------------------------------------------------------------------------------- /tests/fonts/licenses/utkalm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/licenses/utkalm.txt -------------------------------------------------------------------------------- /tests/fonts/malayalam/Chilanka-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/malayalam/Chilanka-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/malayalam/Dyuthi-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/malayalam/Dyuthi-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/malayalam/Rachana-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/malayalam/Rachana-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/malayalam/Rachana_w01.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/malayalam/Rachana_w01.ttf -------------------------------------------------------------------------------- /tests/fonts/malayalam/lohit_ml.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/malayalam/lohit_ml.ttf -------------------------------------------------------------------------------- /tests/fonts/myanmar/Padauk-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/myanmar/Padauk-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/noto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/noto/LICENSE -------------------------------------------------------------------------------- /tests/fonts/noto/NotoNaskhArabic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/noto/NotoNaskhArabic-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/noto/NotoSansBengali-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/noto/NotoSansBengali-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/noto/NotoSansDevanagari-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/noto/NotoSansDevanagari-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/noto/NotoSansGujarati-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/noto/NotoSansGujarati-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/noto/NotoSansGurmukhi-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/noto/NotoSansGurmukhi-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/noto/NotoSansJP-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/noto/NotoSansJP-Regular.otf -------------------------------------------------------------------------------- /tests/fonts/noto/NotoSansKannada-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/noto/NotoSansKannada-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/noto/NotoSansKhmer-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/noto/NotoSansKhmer-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/noto/NotoSansLao-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/noto/NotoSansLao-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/noto/NotoSansMalayalam-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/noto/NotoSansMalayalam-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/noto/NotoSansOriya-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/noto/NotoSansOriya-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/noto/NotoSansSinhala-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/noto/NotoSansSinhala-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/noto/NotoSansSyriacEastern-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/noto/NotoSansSyriacEastern-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/noto/NotoSansTamil-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/noto/NotoSansTamil-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/noto/NotoSansTelugu-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/noto/NotoSansTelugu-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/noto/NotoSansThai-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/noto/NotoSansThai-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/noto/NotoSerifBengali-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/noto/NotoSerifBengali-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/noto/NotoSerifDevanagari-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/noto/NotoSerifDevanagari-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/noto/NotoSerifGujarati-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/noto/NotoSerifGujarati-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/noto/NotoSerifKannada-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/noto/NotoSerifKannada-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/noto/NotoSerifKhmer-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/noto/NotoSerifKhmer-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/noto/NotoSerifMalayalam-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/noto/NotoSerifMalayalam-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/noto/NotoSerifSinhala-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/noto/NotoSerifSinhala-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/noto/NotoSerifTamil-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/noto/NotoSerifTamil-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/noto/NotoSerifTelugu-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/noto/NotoSerifTelugu-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/opentype/CBDT.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/opentype/CBDT.bin -------------------------------------------------------------------------------- /tests/fonts/opentype/CBLC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/opentype/CBLC.bin -------------------------------------------------------------------------------- /tests/fonts/opentype/Klei.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/opentype/Klei.otf -------------------------------------------------------------------------------- /tests/fonts/opentype/NotoSans-VF.abc.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/opentype/NotoSans-VF.abc.ttf -------------------------------------------------------------------------------- /tests/fonts/opentype/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/opentype/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/opentype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/opentype/README.md -------------------------------------------------------------------------------- /tests/fonts/opentype/SFNT-TTF-Composite.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/opentype/SFNT-TTF-Composite.ttf -------------------------------------------------------------------------------- /tests/fonts/opentype/SourceCodePro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/opentype/SourceCodePro-Regular.otf -------------------------------------------------------------------------------- /tests/fonts/opentype/SymbolTest-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/opentype/SymbolTest-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/opentype/TerminusTTF-4.47.0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/opentype/TerminusTTF-4.47.0.ttf -------------------------------------------------------------------------------- /tests/fonts/opentype/TestGSUBThree.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/opentype/TestGSUBThree.ttf -------------------------------------------------------------------------------- /tests/fonts/opentype/TwitterColorEmoji-SVGinOT.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/opentype/TwitterColorEmoji-SVGinOT.ttf -------------------------------------------------------------------------------- /tests/fonts/opentype/Ubuntu Mono with Numderline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/opentype/Ubuntu Mono with Numderline.ttf -------------------------------------------------------------------------------- /tests/fonts/opentype/cff2/SourceSans3-Instance.256.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/opentype/cff2/SourceSans3-Instance.256.otf -------------------------------------------------------------------------------- /tests/fonts/opentype/cff2/SourceSans3.abc.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/opentype/cff2/SourceSans3.abc.otf -------------------------------------------------------------------------------- /tests/fonts/opentype/cff2/SourceSansVariable-Roman.abc.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/opentype/cff2/SourceSansVariable-Roman.abc.otf -------------------------------------------------------------------------------- /tests/fonts/opentype/head.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/opentype/head.bin -------------------------------------------------------------------------------- /tests/fonts/opentype/hmtx.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/opentype/hmtx.bin -------------------------------------------------------------------------------- /tests/fonts/opentype/name.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/opentype/name.bin -------------------------------------------------------------------------------- /tests/fonts/opentype/post.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/opentype/post.bin -------------------------------------------------------------------------------- /tests/fonts/opentype/test-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/opentype/test-font.ttf -------------------------------------------------------------------------------- /tests/fonts/opentype/test-font.ttx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/opentype/test-font.ttx -------------------------------------------------------------------------------- /tests/fonts/oriya/lohit_or.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/oriya/lohit_or.ttf -------------------------------------------------------------------------------- /tests/fonts/oriya/utkalm.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/oriya/utkalm.ttf -------------------------------------------------------------------------------- /tests/fonts/sbix/sbix-dupe.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/sbix/sbix-dupe.ttf -------------------------------------------------------------------------------- /tests/fonts/sbix/sbix-dupe.ttx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/sbix/sbix-dupe.ttx -------------------------------------------------------------------------------- /tests/fonts/svg/gzipped.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/svg/gzipped.py -------------------------------------------------------------------------------- /tests/fonts/svg/gzipped.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/svg/gzipped.ttf -------------------------------------------------------------------------------- /tests/fonts/svg/gzipped.ttx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/svg/gzipped.ttx -------------------------------------------------------------------------------- /tests/fonts/syriac/SyrCOMAdiabene.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/syriac/SyrCOMAdiabene.otf -------------------------------------------------------------------------------- /tests/fonts/syriac/SyrCOMAntioch.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/syriac/SyrCOMAntioch.otf -------------------------------------------------------------------------------- /tests/fonts/syriac/SyrCOMBatnan.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/syriac/SyrCOMBatnan.otf -------------------------------------------------------------------------------- /tests/fonts/syriac/SyrCOMEdessa.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/syriac/SyrCOMEdessa.otf -------------------------------------------------------------------------------- /tests/fonts/syriac/SyrCOMMalankara.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/syriac/SyrCOMMalankara.otf -------------------------------------------------------------------------------- /tests/fonts/syriac/SyrCOMNisibin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/syriac/SyrCOMNisibin.otf -------------------------------------------------------------------------------- /tests/fonts/syriac/SyrCOMUrhoy.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/syriac/SyrCOMUrhoy.otf -------------------------------------------------------------------------------- /tests/fonts/tamil/TAMu_Kalyani.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/tamil/TAMu_Kalyani.ttf -------------------------------------------------------------------------------- /tests/fonts/tamil/lohit_ta.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/tamil/lohit_ta.ttf -------------------------------------------------------------------------------- /tests/fonts/telugu/Mandali-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/telugu/Mandali-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/telugu/lohit_te.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/telugu/lohit_te.ttf -------------------------------------------------------------------------------- /tests/fonts/variable/Inter[slnt,wght].abc.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/variable/Inter[slnt,wght].abc.ttf -------------------------------------------------------------------------------- /tests/fonts/variable/UnderlineTest-VF.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/variable/UnderlineTest-VF.ttf -------------------------------------------------------------------------------- /tests/fonts/variable/Zycon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/variable/Zycon.ttf -------------------------------------------------------------------------------- /tests/fonts/woff1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/woff1/README.md -------------------------------------------------------------------------------- /tests/fonts/woff1/chromacheck-sbix.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/woff1/chromacheck-sbix.woff -------------------------------------------------------------------------------- /tests/fonts/woff1/d2-33857867-font-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/woff1/d2-33857867-font-bold.woff -------------------------------------------------------------------------------- /tests/fonts/woff1/directory-overlaps-001.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/woff1/directory-overlaps-001.woff -------------------------------------------------------------------------------- /tests/fonts/woff1/header-reserved-001.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/woff1/header-reserved-001.woff -------------------------------------------------------------------------------- /tests/fonts/woff1/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/woff1/metadata.xml -------------------------------------------------------------------------------- /tests/fonts/woff1/resources/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/woff1/resources/index.css -------------------------------------------------------------------------------- /tests/fonts/woff1/tabledata-zlib-001.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/woff1/tabledata-zlib-001.woff -------------------------------------------------------------------------------- /tests/fonts/woff1/testcaseindex.xht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/woff1/testcaseindex.xht -------------------------------------------------------------------------------- /tests/fonts/woff1/valid-001.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/woff1/valid-001.woff -------------------------------------------------------------------------------- /tests/fonts/woff1/valid-002.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/woff1/valid-002.woff -------------------------------------------------------------------------------- /tests/fonts/woff1/valid-005.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/woff1/valid-005.woff -------------------------------------------------------------------------------- /tests/fonts/woff1/valid-006.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/woff1/valid-006.woff -------------------------------------------------------------------------------- /tests/fonts/woff2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/woff2/README.md -------------------------------------------------------------------------------- /tests/fonts/woff2/SFNT-TTF-Composite.ttx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/woff2/SFNT-TTF-Composite.ttx -------------------------------------------------------------------------------- /tests/fonts/woff2/SFNT-TTF-Composite.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/woff2/SFNT-TTF-Composite.woff2 -------------------------------------------------------------------------------- /tests/fonts/woff2/TestSVGgzip.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/woff2/TestSVGgzip.woff2 -------------------------------------------------------------------------------- /tests/fonts/woff2/roundtrip-hmtx-lsb-001.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/woff2/roundtrip-hmtx-lsb-001.woff2 -------------------------------------------------------------------------------- /tests/fonts/woff2/roundtrip-offset-tables-001.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/woff2/roundtrip-offset-tables-001.woff2 -------------------------------------------------------------------------------- /tests/fonts/woff2/test-font.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/woff2/test-font.woff2 -------------------------------------------------------------------------------- /tests/fonts/woff2/test_glyf_loca_null_transforms.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/fonts/woff2/test_glyf_loca_null_transforms.woff2 -------------------------------------------------------------------------------- /tests/indic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic.rs -------------------------------------------------------------------------------- /tests/indic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/README.md -------------------------------------------------------------------------------- /tests/indic/bad/bad.bn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/bad/bad.bn -------------------------------------------------------------------------------- /tests/indic/bad/bad.gu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/bad/bad.gu -------------------------------------------------------------------------------- /tests/indic/bad/bad.hi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/bad/bad.hi -------------------------------------------------------------------------------- /tests/indic/bad/bad.kn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/bad/bad.kn -------------------------------------------------------------------------------- /tests/indic/bad/bad.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/bad/bad.ml -------------------------------------------------------------------------------- /tests/indic/bad/bad.or: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/bad/bad.or -------------------------------------------------------------------------------- /tests/indic/bad/bad.pa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/bad/bad.pa -------------------------------------------------------------------------------- /tests/indic/bad/bad.si: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/bad/bad.si -------------------------------------------------------------------------------- /tests/indic/bad/bad.ta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/bad/bad.ta -------------------------------------------------------------------------------- /tests/indic/bad/bad.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/bad/bad.te -------------------------------------------------------------------------------- /tests/indic/directwrite/good-annapurna.hi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/directwrite/good-annapurna.hi -------------------------------------------------------------------------------- /tests/indic/directwrite/good-chilanka.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/directwrite/good-chilanka.ml -------------------------------------------------------------------------------- /tests/indic/directwrite/good-dyuthi.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/directwrite/good-dyuthi.ml -------------------------------------------------------------------------------- /tests/indic/directwrite/good-kalinga.or: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/directwrite/good-kalinga.or -------------------------------------------------------------------------------- /tests/indic/directwrite/good-mandali.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/directwrite/good-mandali.te -------------------------------------------------------------------------------- /tests/indic/directwrite/good-nirmala.hi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/directwrite/good-nirmala.hi -------------------------------------------------------------------------------- /tests/indic/directwrite/good-nirmala.kn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/directwrite/good-nirmala.kn -------------------------------------------------------------------------------- /tests/indic/directwrite/good-nirmala.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/directwrite/good-nirmala.ml -------------------------------------------------------------------------------- /tests/indic/directwrite/good-nirmala.or: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/directwrite/good-nirmala.or -------------------------------------------------------------------------------- /tests/indic/directwrite/good-nirmala.pa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/directwrite/good-nirmala.pa -------------------------------------------------------------------------------- /tests/indic/directwrite/good-nirmala.ta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/directwrite/good-nirmala.ta -------------------------------------------------------------------------------- /tests/indic/directwrite/good-nirmala.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/directwrite/good-nirmala.te -------------------------------------------------------------------------------- /tests/indic/directwrite/good-noto-sans.bn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/directwrite/good-noto-sans.bn -------------------------------------------------------------------------------- /tests/indic/directwrite/good-noto-sans.gu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/directwrite/good-noto-sans.gu -------------------------------------------------------------------------------- /tests/indic/directwrite/good-noto-sans.hi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/directwrite/good-noto-sans.hi -------------------------------------------------------------------------------- /tests/indic/directwrite/good-noto-sans.kn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/directwrite/good-noto-sans.kn -------------------------------------------------------------------------------- /tests/indic/directwrite/good-noto-sans.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/directwrite/good-noto-sans.ml -------------------------------------------------------------------------------- /tests/indic/directwrite/good-noto-sans.or: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/directwrite/good-noto-sans.or -------------------------------------------------------------------------------- /tests/indic/directwrite/good-noto-sans.pa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/directwrite/good-noto-sans.pa -------------------------------------------------------------------------------- /tests/indic/directwrite/good-noto-sans.ta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/directwrite/good-noto-sans.ta -------------------------------------------------------------------------------- /tests/indic/directwrite/good-noto-sans.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/directwrite/good-noto-sans.te -------------------------------------------------------------------------------- /tests/indic/directwrite/good-noto-serif.bn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/directwrite/good-noto-serif.bn -------------------------------------------------------------------------------- /tests/indic/directwrite/good-noto-serif.gu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/directwrite/good-noto-serif.gu -------------------------------------------------------------------------------- /tests/indic/directwrite/good-noto-serif.hi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/directwrite/good-noto-serif.hi -------------------------------------------------------------------------------- /tests/indic/directwrite/good-noto-serif.kn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/directwrite/good-noto-serif.kn -------------------------------------------------------------------------------- /tests/indic/directwrite/good-noto-serif.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/directwrite/good-noto-serif.ml -------------------------------------------------------------------------------- /tests/indic/directwrite/good-noto-serif.ta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/directwrite/good-noto-serif.ta -------------------------------------------------------------------------------- /tests/indic/directwrite/good-noto-serif.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/directwrite/good-noto-serif.te -------------------------------------------------------------------------------- /tests/indic/directwrite/good-rachana-indic1.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/directwrite/good-rachana-indic1.ml -------------------------------------------------------------------------------- /tests/indic/directwrite/good-rachana-indic2.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/directwrite/good-rachana-indic2.ml -------------------------------------------------------------------------------- /tests/indic/directwrite/good-saab.pa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/directwrite/good-saab.pa -------------------------------------------------------------------------------- /tests/indic/directwrite/good-sahadeva.hi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/directwrite/good-sahadeva.hi -------------------------------------------------------------------------------- /tests/indic/directwrite/good-tamu.ta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/directwrite/good-tamu.ta -------------------------------------------------------------------------------- /tests/indic/good.bn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/good.bn -------------------------------------------------------------------------------- /tests/indic/good.gu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/good.gu -------------------------------------------------------------------------------- /tests/indic/good.hi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/good.hi -------------------------------------------------------------------------------- /tests/indic/good.kn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/good.kn -------------------------------------------------------------------------------- /tests/indic/good.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/good.ml -------------------------------------------------------------------------------- /tests/indic/good.or: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/good.or -------------------------------------------------------------------------------- /tests/indic/good.pa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/good.pa -------------------------------------------------------------------------------- /tests/indic/good.si: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/good.si -------------------------------------------------------------------------------- /tests/indic/good.ta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/good.ta -------------------------------------------------------------------------------- /tests/indic/good.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/good.te -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-annapurna.hi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-annapurna.hi -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-chilanka.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-chilanka.ml -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-dyuthi.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-dyuthi.ml -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-gautami.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-gautami.te -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-iskoola.si: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-iskoola.si -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-kalinga.or: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-kalinga.or -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-latha.ta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-latha.ta -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-lohit.bn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-lohit.bn -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-lohit.gu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-lohit.gu -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-lohit.hi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-lohit.hi -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-lohit.kn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-lohit.kn -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-lohit.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-lohit.ml -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-lohit.or: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-lohit.or -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-lohit.ta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-lohit.ta -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-lohit.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-lohit.te -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-mandali.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-mandali.te -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-mangal.hi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-mangal.hi -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-nirmala.hi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-nirmala.hi -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-nirmala.kn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-nirmala.kn -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-nirmala.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-nirmala.ml -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-nirmala.or: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-nirmala.or -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-nirmala.pa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-nirmala.pa -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-nirmala.si: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-nirmala.si -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-nirmala.ta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-nirmala.ta -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-nirmala.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-nirmala.te -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-noto-sans.bn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-noto-sans.bn -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-noto-sans.gu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-noto-sans.gu -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-noto-sans.hi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-noto-sans.hi -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-noto-sans.kn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-noto-sans.kn -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-noto-sans.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-noto-sans.ml -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-noto-sans.or: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-noto-sans.or -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-noto-sans.pa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-noto-sans.pa -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-noto-sans.si: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-noto-sans.si -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-noto-sans.ta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-noto-sans.ta -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-noto-sans.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-noto-sans.te -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-noto-serif.bn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-noto-serif.bn -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-noto-serif.gu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-noto-serif.gu -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-noto-serif.hi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-noto-serif.hi -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-noto-serif.kn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-noto-serif.kn -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-noto-serif.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-noto-serif.ml -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-noto-serif.si: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-noto-serif.si -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-noto-serif.ta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-noto-serif.ta -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-noto-serif.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-noto-serif.te -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-ori1uni.or: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-ori1uni.or -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-padmaa.gu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-padmaa.gu -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-raavi.pa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-raavi.pa -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-rachana-indic1.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-rachana-indic1.ml -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-rachana-indic2.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-rachana-indic2.ml -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-rekha.gu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-rekha.gu -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-saab.pa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-saab.pa -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-sahadeva.hi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-sahadeva.hi -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-samyak.gu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-samyak.gu -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-siyam.bn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-siyam.bn -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-tamu.ta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-tamu.ta -------------------------------------------------------------------------------- /tests/indic/harfbuzz/good-tunga.kn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/indic/harfbuzz/good-tunga.kn -------------------------------------------------------------------------------- /tests/khmer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/khmer.rs -------------------------------------------------------------------------------- /tests/khmer/bad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/khmer/bad -------------------------------------------------------------------------------- /tests/khmer/good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/khmer/good -------------------------------------------------------------------------------- /tests/khmer/harfbuzz/good-battambang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/khmer/harfbuzz/good-battambang -------------------------------------------------------------------------------- /tests/khmer/harfbuzz/good-daunpenh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/khmer/harfbuzz/good-daunpenh -------------------------------------------------------------------------------- /tests/khmer/harfbuzz/good-khmer-ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/khmer/harfbuzz/good-khmer-ui -------------------------------------------------------------------------------- /tests/khmer/harfbuzz/good-noto-sans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/khmer/harfbuzz/good-noto-sans -------------------------------------------------------------------------------- /tests/khmer/harfbuzz/good-noto-serif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/khmer/harfbuzz/good-noto-serif -------------------------------------------------------------------------------- /tests/myanmar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/myanmar.rs -------------------------------------------------------------------------------- /tests/myanmar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/myanmar/README.md -------------------------------------------------------------------------------- /tests/myanmar/bad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/myanmar/bad -------------------------------------------------------------------------------- /tests/myanmar/good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/myanmar/good -------------------------------------------------------------------------------- /tests/myanmar/harfbuzz/good-padauk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/myanmar/harfbuzz/good-padauk -------------------------------------------------------------------------------- /tests/opentype.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/opentype.rs -------------------------------------------------------------------------------- /tests/shape.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/shape.rs -------------------------------------------------------------------------------- /tests/syriac.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/syriac.rs -------------------------------------------------------------------------------- /tests/thai_lao.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/thai_lao.rs -------------------------------------------------------------------------------- /tests/woff.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/woff.rs -------------------------------------------------------------------------------- /tests/woff2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeslogic/allsorts/HEAD/tests/woff2.rs --------------------------------------------------------------------------------