Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-fonts/font-weight-normal-variable.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8"/>
<title>CSS Test: Variations are applied for font-weight: normal</title>
<link rel="match" href="font-weight-normal-variable-ref.html">
<link rel="author" title="Simon Wülker" href="simon.wuelker@arcor.de">
<meta name="assert" content="Variations are applied for font-weight: normal">
<style>
@font-face {
font-family: "Noto Sans JP";
src: url('support/fonts/NotoSansJP.subset.ttf') format('truetype');
font-display: swap;
font-style: normal;
}
.normal {
font-family: "Noto Sans JP";
font-size: 3em;
font-weight: normal;
}
</style>
<p class="normal">test</p>