font-synthesis-05-ref.html (625B)
1 <!DOCTYPE html> 2 <html lang="en"> 3 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> 4 <title>CSS Test: font-synthesis: initial value</title> 5 <link rel="author" title="Chris Lilley" href="chris@w3.org"> 6 <style> 7 @font-face { 8 font-family: "test"; 9 src: url(/fonts/Lato-Medium.ttf); 10 } 11 .test { 12 font-family: "test"; 13 font-size: 3em; 14 font-synthesis: weight style; 15 color: green; 16 } 17 </style> 18 19 <p>Test passes if the text below is green, not red.</p> 20 <section class="test"> 21 <p>Filler text</p> 22 <!-- Synthesis is allowed, but not required --> 23 </section>