variation-format-hint-1b.html (352B)
1 <!DOCTYPE html> 2 3 <style> 4 @font-face { 5 font-family: test; 6 /* this should load markB if variation font support is enabled, 7 and markA otherwise */ 8 src: url(../fonts/markB.otf) format("opentype-variations"), 9 url(../fonts/markA.woff); 10 } 11 div { 12 font-family: test, serif; 13 font-size: 50px; 14 line-height: 2em; 15 } 16 </style> 17 18 <div> 19 ABC 20 </div>