tor-browser

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

css3-counter-styles-016a.html (1288B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3 <head>
      4 <meta charset="utf-8">
      5 <title>hebrew, outside range</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/#simple-numeric'>
      8 <link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org">
      9 <link rel='match' href='css3-counter-styles-016a-ref.html'>
     10 <link rel='match' href='css3-counter-styles-016a-alt-ref.html'><!-- Gecko prefers this rendering over the fallback rendering -->
     11 <meta name="assert" content="list-style-type: hebrew produces numbers in the fallback counter style above the limit per the spec.">
     12 <style>
     13 ol li { list-style-type: hebrew;  }
     14 /* the following CSS is not part of the test */
     15 .test { font-size: 25px; }
     16 ol { margin: 0; padding-left: 8em; list-style-position: inside; }
     17 </style>
     18 </head>
     19 <body>
     20 <p class="instructions">Test passes if the two columns are the same, IGNORING the suffix.</p>
     21 <div class="test">
     22 <ol start="10999">
     23 <li title="10999">י׳תתקצט</li>
     24 <li title='11000'>11000</li>
     25 <li title='11001'>11001</li>
     26 </ol>
     27 </div>
     28 <!--Notes:
     29 You will need an appropriate font to run this test.
     30 To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip.
     31 -->
     32 </body>
     33 </html>