css3-counter-styles-020b-ref.html (1392B)
1 <!DOCTYPE html> 2 <html lang="en" > 3 <head> 4 <meta charset="utf-8"/> 5 <title>lower-roman, straddling range, 3000-4001</title> 6 <link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'> 7 <link rel='author' title='Chris Lilley' href='mailto:chris@w3.org'> 8 <link rel="reviewer" title="Tab Atkins" href="mailto:jackalmage@gmail.com" /> 9 <link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#descdef-counter-style-range'> 10 <meta name="assert" content=" If a counter style is used to represent a counter value outside of its ranges, the counter style instead drops down to its fallback counter style."> 11 <style type='text/css'> 12 .test { font-size: 25px; } 13 ol { margin: 0; padding-left: 8em; } 14 ol li { list-style-type: lower-roman; } 15 </style> 16 </head> 17 <body> 18 <p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p> 19 20 21 <div class="test"><ol start='3000'><div><bdi>mmm. </bdi>mmm.</div></ol> 22 <ol start='3555'><div><bdi>mmmdlv. </bdi>mmmdlv.</div></ol> 23 <ol start='3998'><div><bdi>mmmcmxcviii. </bdi>mmmcmxcviii.</div></ol> 24 <ol start='3999'><div><bdi>mmmcmxcix. </bdi>mmmcmxcix.</div></ol> 25 <ol start='4001'><div><bdi>4001. </bdi>4001.</div></ol> 26 </div> 27 28 29 <!--Notes: 30 You will need an appropriate font to run this test. 31 32 To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip. 33 --> 34 35 36 </body> 37 </html>