tor-browser

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

range-descriptor-reversed.html (1090B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3 <head>
      4 <meta charset="utf-8">
      5 <title>CSS Fonts Module Level 3: Property descriptor ranges</title>
      6 <link rel="author" title="Dominik Röttsches" href="mailto:drott@chromium.org"/>
      7 <link rel="help" href="https://drafts.csswg.org/css-fonts/#font-prop-desc">
      8 <link rel="match" href="range-descriptor-reversed-ref.html">
      9 <meta name="assert" content="User agents must swap the computed value of the startpoint and endpoint of the range in order to forbid decreasing ranges.">
     10 </head>
     11 <link rel="stylesheet" href="font-matching.css">
     12 <style>
     13    @font-face {
     14    font-family: variable_axes;
     15    src: url("resources/variabletest_matching.ttf");
     16    font-stretch: 200% 50%;
     17    font-style: oblique 90deg -90deg;
     18    font-weight: 900 100;
     19    }
     20 </style>
     21 <link rel="match" href="stretch-distance-over-weight-distance-ref.html">
     22 <span id="stretch_style_weight_1">MNOP</span>
     23 <span id="stretch_style_weight_9">MNOP</span>
     24 <script>
     25    document.fonts.ready.then(
     26        () => { document.documentElement.classList.remove("reftest-wait"); });
     27 </script>
     28 </html>