Status: PASS | Duration: 7ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-fonts/font-face-style-auto-static.html
<!DOCTYPE html> <html lang="en"> <meta charset="utf-8"/> <title>CSS Test: Support for font-stretch: auto in @font-face</title> <link rel="match" href="font-face-style-auto-static-ref.html"> <link rel="help" href="https://www.w3.org/TR/css-fonts-4/#font-prop-desc" /> <meta name="assert" content="font-style: auto applies initial value for non-variable fonts in @font-face descriptor"> <style> @font-face { font-family: "Lato"; src: url('/fonts/Lato-Medium.ttf') format('truetype'); font-display: swap; font-style: auto; } .test { font-family: "Lato"; font-size: 3em; font-style: oblique 10deg; } </style> <p class="test">text</p>
/css/css-fonts/font-face-style-auto-static-ref.html
<!DOCTYPE html> <html lang="en"> <meta charset="utf-8"/> <title>CSS Test: Support for font-style: auto in @font-face</title> <style> @font-face { font-family: "Lato"; src: url('/fonts/Lato-Medium.ttf') format('truetype'); font-display: swap; font-style: normal; } .test { font-family: "Lato"; font-size: 3em; font-style: oblique 10deg; } </style> <p class="test">text</p>