tor-browser

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

hyphens-character-ref.html (732B)


      1 <!doctype html>
      2 <html lang="en" class="reftest-wait">
      3  <link rel="author" title="Dominik Röttsches" href="mailto:drott@chromium.org">
      4    <meta charset="utf-8" />
      5    <style>
      6        @font-face {
      7            font-family: roboto_hyphen;
      8            src: url(../resources/roboto_hyphenation_subset.ttf)
      9        }
     10 
     11        div {
     12        width: 30px;
     13            hyphens: auto;
     14            -webkit-hyphens: auto;
     15            font-family: roboto_hyphen, cursive;
     16        }
     17    </style>
     18  <body>
     19    <div>
     20    Do-<br>
     21    nau-<br>
     22    dampf-<br>
     23    schiff-<br>
     24    fahrt
     25    </div>
     26    <script>
     27    document.fonts.ready.then(
     28      () => { document.documentElement.classList.remove("reftest-wait"); });
     29    </script>
     30  </body>
     31 </html>