wpt / css / css-fonts / font-face-sign-function.html

Status: PASS | Duration: 7ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-fonts/font-face-sign-function.html

<!DOCTYPE html>
<meta charset="utf-8" />
<title>CSS Test: Support for sign function in @font-face</title>
<link rel="match" href="font-face-weight-auto-static-ref.html">
<link rel="help" href="https://www.w3.org/TR/css-fonts-4/#font-prop-desc" />
<style>
  :root {
    font-size: 16px;
  }
  @font-face {
    font-family: "Lato";
    src: url('/fonts/Lato-Medium.ttf') format('truetype');
    font-display: swap;
    font-weight: calc(sign(1rem - 1px) * 400);
    font-width: calc(sign(1rem - 1px) * 100%);
  }

  .test {
    font-family: "Lato";
    font-size: 3em;
    font-weight: bold;
  }
</style>

<p class="test">text</p>

/css/css-fonts/font-face-weight-auto-static-ref.html

<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8"/>
<title>CSS Test: Support for font-weight:auto in @font-face</title>
<style>
    @font-face {
        font-family: "Lato";
        src: url('/fonts/Lato-Medium.ttf') format('truetype');
        font-display: swap;
        font-weight: normal;
    }
    .test {
        font-family: "Lato";
        font-size: 3em;
        font-weight: bold;
    }
</style>

<p class="test">text</p>