descriptor-pad.html 806 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!DOCTYPE html>
  2. <link rel="stylesheet" href="test-common.css">
  3. <style type="text/css">
  4. @counter-style a {
  5. system: extends upper-roman;
  6. range: infinite 5;
  7. pad: 3 '*';
  8. }
  9. @counter-style b {
  10. system: extends decimal;
  11. negative: '(' ')';
  12. pad: 3 '0';
  13. }
  14. @counter-style c {
  15. system: alphabetic;
  16. symbols: a\0304 a\0301 a\030c a\0300;
  17. pad: 3 o;
  18. suffix: '';
  19. }
  20. @counter-style d {
  21. system: extends decimal;
  22. pad: '0' 3;
  23. }
  24. </style>
  25. <ol start="-3" style="list-style-type: a">
  26. <li><li><li><li><li>
  27. <li><li><li><li><li>
  28. </ol>
  29. <ol start="-2" style="list-style-type: b">
  30. <li><li><li><li><li>
  31. </ol>
  32. <ol style="list-style-type: c">
  33. <li><li>
  34. <li value="6"><li value="16">
  35. <li value="27"><li value="70">
  36. </ol>
  37. <ol style="list-style-type: d">
  38. <li>
  39. </ol>