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