tor-browser

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

wordbreak-7b.html (1060B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      5  <style type="text/css">
      6    @font-face {
      7      font-family: test;
      8      src: url(../fonts/dejavu-sans/DejaVuSans.ttf);
      9    }
     10    body {
     11      font-family: test;
     12      line-height: 1.5em;
     13    }
     14    div.breakall { width: 0px; word-break: break-all; }
     15    div.keepall { width: 0px; word-break: keep-all; }
     16  </style>
     17  <title>Test - word-break: break-all with rtl and diacritics, including ligatures</title>
     18  </head>
     19  <body>
     20    <div class="breakall">
     21    &#x0648;&#x064E;&#x0644;&#x064E;&#x0627;
     22    &#x0627;&#x0644;&#x0633;&#x0651;&#x064E;&#x0644;&#x064E;&#x0627;&#x0645;&#x064F;
     23    &#x0639;&#x064E;&#x0644;&#x064E;&#x064A;&#x0652;&#x0643;&#x064F;&#x0645;&#x0652;
     24    </div>
     25    <br>
     26    <div class="keepall">
     27    &#x0648;&#x064E;&#x0644;&#x064E;&#x0627;
     28    &#x0627;&#x0644;&#x0633;&#x0651;&#x064E;&#x0644;&#x064E;&#x0627;&#x0645;&#x064F;
     29    &#x0639;&#x064E;&#x0644;&#x064E;&#x064A;&#x0652;&#x0643;&#x064F;&#x0645;&#x0652;
     30    </div>
     31  </body>
     32 </html>