tor-browser

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

text-justify-004.html (970B)


      1 <!DOCTYPE html>
      2 <html  lang="en" >
      3 <head>
      4 <meta charset="utf-8">
      5 <title>text-justify: inter-character, arabic</title>
      6 <link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
      7 <link rel='help' href='https://drafts.csswg.org/css-text-3/#text-align-property'>
      8 <meta name="assert" content="text-justify:inter-character means justification adjusts spacing between each pair of adjacent typographic character units. Justification must not introduce gaps between the joined typographic letter units of cursive scripts such as Arabic.">
      9 <style type='text/css'>
     10 .test { text-align: justify; text-justify: inter-character; }
     11 /* the CSS below is not part of the test */
     12 .test { border: 1px solid blue;  margin: 20px; width: 290px; font-size: 28px; }
     13 </style>
     14 </head>
     15 <body>
     16 <div id='instructions'>Test passes if the sequence مممممع has no gaps in it.</div>
     17 <div class="test">مممممع مممممع مممممع مممممع مممممع</div>
     18 </body>
     19 </html>