css3-counter-styles-052-ref.html (1493B)
1 <!DOCTYPE html> 2 <html lang="en" > 3 <head> 4 <meta charset="utf-8"/> 5 <title>korean-hangul-formal, 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-hangul-formal 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-hangul-formal; } 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>