css3-counter-styles-105.html (2119B)
1 <!DOCTYPE html> 2 <html lang="en" > 3 <head> 4 <meta charset="utf-8"/> 5 <title>persian, 10+</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='match' href='css3-counter-styles-105-ref.html'> 9 <meta name="assert" content="list-style-type: persian produces numbers after 9 per the spec."> 10 <style type='text/css'> 11 ol li { list-style-type: persian; } 12 /* the following CSS is not part of the test */ 13 .test { font-size: 25px; } 14 ol { margin: 0; padding-left: 8em; list-style-position: inside; } 15 </style> 16 </head> 17 <body> 18 <p class="instructions">Test passes if the two columns are the same, IGNORING the suffix.</p> 19 <div class='test'> 20 <ol start='10'> 21 <li title='10'>۱۰</li> 22 <li title='11'>۱۱</li> 23 <li title='12'>۱۲</li> 24 </ol> 25 <ol start='43'> 26 <li title='43'>۴۳</li> 27 </ol> 28 <ol start='77'> 29 <li title='77'>۷۷</li> 30 </ol> 31 <ol start='80'> 32 <li title='80'>۸۰</li> 33 </ol> 34 <ol start='99'> 35 <li title='99'>۹۹</li> 36 <li title='100'>۱۰۰</li> 37 <li title='101'>۱۰۱</li> 38 </ol> 39 <ol start='222'> 40 <li title='222'>۲۲۲</li> 41 </ol> 42 <ol start='540'> 43 <li title='540'>۵۴۰</li> 44 </ol> 45 <ol start='999'> 46 <li title='999'>۹۹۹</li> 47 <li title='1000'>۱۰۰۰</li> 48 </ol> 49 <ol start='1005'> 50 <li title='1005'>۱۰۰۵</li> 51 </ol> 52 <ol start='1060'> 53 <li title='1060'>۱۰۶۰</li> 54 </ol> 55 <ol start='1065'> 56 <li title='1065'>۱۰۶۵</li> 57 </ol> 58 <ol start='1800'> 59 <li title='1800'>۱۸۰۰</li> 60 </ol> 61 <ol start='1860'> 62 <li title='1860'>۱۸۶۰</li> 63 </ol> 64 <ol start='1865'> 65 <li title='1865'>۱۸۶۵</li> 66 </ol> 67 <ol start='5865'> 68 <li title='5865'>۵۸۶۵</li> 69 </ol> 70 <ol start='7005'> 71 <li title='7005'>۷۰۰۵</li> 72 </ol> 73 <ol start='7800'> 74 <li title='7800'>۷۸۰۰ </li> 75 </ol> 76 <ol start='7864'> 77 <li title='7864'>۷۸۶۴</li> 78 </ol> 79 <ol start='9999'> 80 <li title='9999'>۹۹۹۹</li> 81 </ol> 82 </div> 83 <!--Notes: 84 You will need an appropriate font to run this test. 85 The test relies on the start attribute working. 86 To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip. 87 --> 88 </body> 89 </html>