1table name { 2 nameid 25 "TestFont"; 3} name; 4 5 6table STAT { 7 8 ElidedFallbackName { 9 name "Roman"; 10 name 3 1 1041 "ローマン"; 11 }; 12 13 DesignAxis opsz 0 { 14 name "Optical Size"; 15 }; 16 17 DesignAxis wdth 1 { 18 name "Width"; 19 }; 20 21 DesignAxis wght 2 { 22 name "Weight"; 23 }; 24 25 DesignAxis ital 3 { 26 name "Italic"; 27 }; # here comment 28 29 AxisValue { 30 location opsz 8; # comment here 31 location wdth 400; # another comment 32 name "Caption"; # more comments 33 }; 34 35 AxisValue { 36 location opsz 11 9 12; 37 name "Text"; 38 flag OlderSiblingFontAttribute ElidableAxisValueName; 39 }; 40 41 AxisValue { 42 location opsz 16.7 12 24; 43 name "Subhead"; 44 }; 45 46 AxisValue { 47 location opsz 72 24 72; 48 name "Display"; 49 }; 50 51 AxisValue { 52 location wdth 80 80 89; 53 name "Condensed"; 54 }; 55 56 AxisValue { 57 location wdth 90 90 96; 58 name "Semicondensed"; 59 }; 60 61 AxisValue { 62 location wdth 100 97 101; 63 name "Normal"; 64 flag ElidableAxisValueName; 65 }; 66 67 AxisValue { 68 location wdth 125 102 125; 69 name "Extended"; 70 }; 71 72 AxisValue { 73 location wght 300 300 349; 74 name "Light"; 75 }; 76 77 AxisValue { 78 location wght 400 350 449; 79 name "Regular"; 80 flag ElidableAxisValueName; 81 }; 82 83 AxisValue { 84 location wght 500 450 549; 85 name "Medium"; 86 }; 87 88 AxisValue { 89 location wght 600 550 649; 90 name "Semibold"; 91 }; 92 93 AxisValue { 94 location wght 700 650 749; 95 name "Bold"; 96 }; 97 98 AxisValue { 99 location wght 900 750 900; 100 name "Black"; 101 }; 102 103 AxisValue { 104 location ital 0; 105 name "Roman"; 106 flag ElidableAxisValueName; # flag comment 107 }; 108 109} STAT; 110