font-synthesis-weight-ref.html (524B)
1 <!DOCTYPE html> 2 <html lang="en"> 3 <meta charset="utf-8"> 4 <title>CSS Test: font-synthesis-weight: none disables fake bold</title> 5 <style> 6 @font-face { 7 font-family: "lato"; 8 src: url(/fonts/Lato-Medium.ttf); 9 } 10 .test { 11 font-family: "lato"; 12 font-size: 3em; 13 } 14 </style> 15 16 <p>Test passes if the two lines below are identical (the second line is <em>not bold</em>), and there is no red.</p> 17 <section class="test"> 18 <p>Filler text</p> 19 <p class="nosynth">Filler text</p> 20 </section>