css3-counter-styles-057-ref.html (1496B)
1 <!DOCTYPE html> 2 <html lang="en" > 3 <head> 4 <meta charset="utf-8"/> 5 <title>korean-hanja-informal, 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/#complex-cjk'> 8 <link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" /> 9 <meta name="assert" content="Setting list-style-type to korean-hanja-informal will produce list of up to 9 items numbering 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: korean-hanja-informal; } 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"><ol start='0'><div><bdi>零, </bdi>零,</div></ol> 21 <ol start='1'><div><bdi>一, </bdi>一,</div></ol> 22 <ol start='2'><div><bdi>二, </bdi>二,</div></ol> 23 <ol start='3'><div><bdi>三, </bdi>三,</div></ol> 24 <ol start='4'><div><bdi>四, </bdi>四,</div></ol> 25 <ol start='5'><div><bdi>五, </bdi>五,</div></ol> 26 <ol start='6'><div><bdi>六, </bdi>六,</div></ol> 27 <ol start='7'><div><bdi>七, </bdi>七,</div></ol> 28 <ol start='8'><div><bdi>八, </bdi>八,</div></ol> 29 <ol start='9'><div><bdi>九, </bdi>九,</div></ol> 30 </div> 31 32 33 <!--Notes: 34 You will need an appropriate font to run this test. 35 36 To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip. 37 --> 38 39 40 </body> 41 </html>