font-synthesis-07.html (701B)
1 <!doctype html> 2 <meta charset=utf-8> 3 <title>CSS Test: 'font-synthesis:none' with a font that doesn't support small-caps</title> 4 <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com"> 5 <link rel="help" href="https://drafts.csswg.org/css-fonts/#font-synthesis"> 6 <link rel="match" href="font-synthesis-07-ref.html"> 7 <meta name="assert" content="font-synthesis:none inhibits synthesising small-caps"> 8 <style> 9 @font-face { 10 font-family: Lato; 11 src: url(/fonts/Lato-Medium.ttf); 12 } 13 .test { 14 font: 2em/1 Lato; 15 font-variant: small-caps; 16 font-synthesis: none; 17 } 18 </style> 19 20 <p>Test passes if "A" is upper-case and "bcd e" is lower-case.</p> 21 <p class="test">Abcd e</p>