tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

font-variant-alternates-valid.html (1213B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <meta charset="utf-8" />
      5    <title>
      6      CSS Fonts Module Level 4: parsing font-variant-alternates with valid
      7      values
      8    </title>
      9    <link
     10      rel="help"
     11      href="https://drafts.csswg.org/css-fonts-4/#propdef-font-variant-alternates"
     12    />
     13    <meta
     14      name="assert"
     15      content="font-variant-alternates supports only the grammar normal | [ stylistic(<feature-value-name>) || historical-forms || styleset(<feature-value-name>#) || character-variant(<feature-value-name>#) || swash(<feature-value-name>) || ornaments(<feature-value-name>) || annotation(<feature-value-name>) ]"
     16    />
     17    <script src="/resources/testharness.js"></script>
     18    <script src="/resources/testharnessreport.js"></script>
     19    <script src="/css/support/parsing-testcommon.js"></script>
     20  </head>
     21  <body>
     22    <script>
     23      test_valid_value(
     24        "font-variant-alternates",
     25        "character-variant(more, than, one)"
     26      );
     27      test_valid_value("font-variant-alternates", "styleset(more, than, one)");
     28      test_valid_value(
     29        "font-variant-alternates",
     30        "styleset(more, than, one) character-variant(more, than, one)"
     31      );
     32    </script>
     33  </body>
     34 </html>