tor-browser

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

text-emphasis-punctuation-3-ref.html (2439B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS text decoration test: emphasis marks and punctuation</title>
      4 
      5 <style>
      6 p { line-height: 2; }
      7 </style>
      8 
      9 <p>A few punctuation marks <b>do</b> get emphasis marks:</p>
     10 <p lang="ja">
     11  [<ruby>a<rt>&#x2022;</rt>b<rt>&#x2022;</rt>c<rt>&#x2022;</rt></ruby>
     12  <!-- list from https://drafts.csswg.org/css-text-decor/#text-emphasis-style-property -->
     13  <ruby>&#x0023;<rt>&#x2022;</rt></ruby> <!-- #  NUMBER SIGN -->
     14  <ruby>&#x0025;<rt>&#x2022;</rt></ruby> <!-- %  PERCENT SIGN -->
     15  <ruby>&#x0026;<rt>&#x2022;</rt></ruby> <!-- &  AMPERSAND -->
     16  <ruby>&#x0040;<rt>&#x2022;</rt></ruby> <!-- @  COMMERCIAL AT -->
     17  <ruby>&#x00A7;<rt>&#x2022;</rt></ruby> <!-- §  SECTION SIGN -->
     18  <ruby>&#x00B6;<rt>&#x2022;</rt></ruby> <!-- ¶  PILCROW SIGN -->
     19  <ruby>&#x0609;<rt>&#x2022;</rt></ruby> <!-- ؉  ARABIC-INDIC PER MILLE SIGN -->
     20  <ruby>&#x060A;<rt>&#x2022;</rt></ruby> <!-- ؊  ARABIC-INDIC PER TEN THOUSAND SIGN -->
     21  <ruby>&#x066A;<rt>&#x2022;</rt></ruby> <!-- ٪  ARABIC PERCENT SIGN -->
     22  <ruby>&#x2030;<rt>&#x2022;</rt></ruby> <!-- ‰  PER MILLE SIGN -->
     23  <ruby>&#x2031;<rt>&#x2022;</rt></ruby> <!-- ‱  PER TEN THOUSAND SIGN -->
     24  <ruby>&#x204A;<rt>&#x2022;</rt></ruby> <!-- ⁊  TIRONIAN SIGN ET -->
     25  <ruby>&#x204B;<rt>&#x2022;</rt></ruby> <!-- ⁋  REVERSED PILCROW SIGN -->
     26  <ruby>&#x2053;<rt>&#x2022;</rt></ruby> <!-- ⁓  SWUNG DASH -->
     27  <ruby>&#x303D;<rt>&#x2022;</rt></ruby> <!-- 〽️  PART ALTERNATION MARK -->
     28  <br>
     29  <!-- characters with NFKD equivalence to the above, from UnicodeData.txt -->
     30  <ruby>&#xFE5F;<rt>&#x2022;</rt></ruby> <!-- SMALL NUMBER SIGN;Po;0;ET;<small> 0023;;;;N;;;;; -->
     31  <ruby>&#xFE60;<rt>&#x2022;</rt></ruby> <!-- SMALL AMPERSAND;Po;0;ON;<small> 0026;;;;N;;;;; -->
     32  <ruby>&#xFE6A;<rt>&#x2022;</rt></ruby> <!-- SMALL PERCENT SIGN;Po;0;ET;<small> 0025;;;;N;;;;; -->
     33  <ruby>&#xFE6B;<rt>&#x2022;</rt></ruby> <!-- SMALL COMMERCIAL AT;Po;0;ON;<small> 0040;;;;N;;;;; -->
     34  <ruby>&#xFF03;<rt>&#x2022;</rt></ruby> <!-- FULLWIDTH NUMBER SIGN;Po;0;ET;<wide> 0023;;;;N;;;;; -->
     35  <ruby>&#xFF05;<rt>&#x2022;</rt></ruby> <!-- FULLWIDTH PERCENT SIGN;Po;0;ET;<wide> 0025;;;;N;;;;; -->
     36  <ruby>&#xFF06;<rt>&#x2022;</rt></ruby> <!-- FULLWIDTH AMPERSAND;Po;0;ON;<wide> 0026;;;;N;;;;; -->
     37  <ruby>&#xFF20;<rt>&#x2022;</rt></ruby> <!-- FULLWIDTH COMMERCIAL AT;Po;0;ON;<wide> 0040;;;;N;;;;; -->
     38  <ruby>x<rt>&#x2022;</rt>y<rt>&#x2022;</rt>z<rt>&#x2022;</rt></ruby>]
     39 </p>