tor-browser

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

wordbreak-7a.html (931B)


      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, no ligatures</title>
     18  </head>
     19  <body>
     20    <div class="breakall">
     21    &#x0627;&#x0644;&#x0639;&#x0631;&#x0628;&#x064A;
     22    &#x0627;&#x0644;&#x0636;&#x064E;&#x0651;&#x0627;&#x0644;&#x0650;&#x0651;&#x064A;&#x0646;&#x064E;
     23    </div>
     24    <br>
     25    <div class="keepall">
     26    &#x0627;&#x0644;&#x0639;&#x0631;&#x0628;&#x064A;
     27    &#x0627;&#x0644;&#x0636;&#x064E;&#x0651;&#x0627;&#x0644;&#x0650;&#x0651;&#x064A;&#x0646;&#x064E;
     28    </div>
     29  </body>
     30 </html>