tor-browser

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

auto-hyphenation-transformed-1.html (388B)


      1 <!DOCTYPE html>
      2 <html lang="de">
      3 <head>
      4 <meta charset="utf-8">
      5 <title>Test for auto hyphenation with text-transform</title>
      6 </head>
      7 <body>
      8 <div style="width:0px; hyphens:auto">
      9 masse<br>maße
     10 </div>
     11 <div style="width:0px; hyphens:auto; text-transform:uppercase">
     12 masse<br>maße
     13 </div>
     14 <div style="width:0px; hyphens:auto; text-transform:capitalize">
     15 masse<br>maße
     16 </div>
     17 </body>
     18 </html>