tor-browser

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

variable-box-font-ref.html (413B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3 <meta charset="utf-8">
      4 <style>
      5    @font-face {
      6    font-family: variabletest_box;
      7    src: url(resources/variabletest_box.ttf);
      8    }
      9 
     10    body {
     11    font-family: variabletest_box, sans-serif;
     12    font-size: 200px;
     13    }
     14 </style>
     15 ▄ ▀
     16 <script>
     17    document.fonts.ready.then(
     18        () => { document.documentElement.classList.remove("reftest-wait"); });
     19 </script>