tor-browser

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

letter-spacing-211.html (1007B)


      1 <!DOCTYPE html>
      2 <html  lang="en" >
      3 <meta charset="utf-8">
      4 <title>letter-spacing at element boundaries</title>
      5 <link rel='author' title='Elika J. Etemad' href='http://fantasai.inkedblade.net/contact'>
      6 <link rel='help' href='https://www.w3.org/TR/css-text-3/#letter-spacing'>
      7 <link rel='help' href='https://www.w3.org/TR/css-text-decor-4/#emphasis-marks'>
      8 <link rel='match' href='reference/letter-spacing-211-ref.html'>
      9 <meta name="assert" content="Emphasis marks are centered on characters, not characters + spacing.">
     10 <style type='text/css'>
     11  @import "/fonts/ahem.css";
     12  .contain {
     13    font: 20px/1 Ahem;
     14    margin: 1em;
     15  }
     16  .ls1 {
     17    letter-spacing: 1em;
     18  }
     19  .control p {
     20    white-space: pre-wrap;
     21    color: blue;
     22  }
     23  p {
     24    letter-spacing: 0;
     25    margin: 0;
     26    text-emphasis: dot;
     27  }
     28 </style>
     29 
     30 <div id='instructions'>Test passes if the blue pattern is identical to the black one.</div>
     31 
     32 <div class="contain">
     33  <p class="ls1">ABC</p>
     34 </div>
     35 
     36 <div class="contain control">
     37  <p>A B C
     38 </div>