tor-browser

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

font-size-sign-function.html (513B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Fonts test: font-size with CSS sign() function</title>
      4 <link rel="help" href="https://drafts.csswg.org/css-fonts/#font-size-prop">
      5 <script src="/resources/testharness.js"></script>
      6 <script src="/resources/testharnessreport.js"></script>
      7 <script src="/css/support/computed-testcommon.js"></script>
      8 <style>
      9 :root {
     10  font-size: 16px;
     11 }
     12 </style>
     13 <div id="target"></div>
     14 <script>
     15  test_computed_value("font-size", "calc(sign(1rem - 1px) * 100%)", "16px");
     16 </script>