tor-browser

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

css3-counter-styles-068.html (1264B)


      1 <!DOCTYPE html>
      2 <html  lang="en" >
      3 <head>
      4 <meta charset="utf-8"/>
      5 <title>ethiopic-numeric, 0-9</title>
      6 <link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
      7 <link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#ethiopic-numeric-counter-style'>
      8 <link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
      9 <meta name="assert" content="Setting list-style-type to ethiopic-numeric will produce numbering for a list of up to 9 items as described in the CSS3 Counter Styles module.">
     10 <style type='text/css'>
     11 .test { font-size: 25px; }
     12 ol { margin: 0; padding-left: 8em; }
     13 ol li { list-style-type: ethiopic-numeric;  }
     14 </style>
     15 </head>
     16 <body>
     17 <p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p>
     18 
     19 
     20 <div class='test'>
     21  <ol>
     22    <li title='1'>፩.</li>
     23    <li title='2'>፪.</li>
     24    <li title='3'>፫.</li>
     25    <li title='4'>፬.</li>
     26    <li title='5'>፭.</li>
     27    <li title='6'>፮.</li>
     28    <li title='7'>፯.</li>
     29    <li title='8'>፰.</li>
     30    <li title='9'>፱.</li>
     31  </ol>
     32 </div>
     33 
     34 
     35 <!--Notes:
     36 You will need an appropriate font to run this test.
     37 
     38 To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
     39 -->
     40 
     41 
     42 </body>
     43 </html>