descriptor-fallback.html 592 B

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE html>
  2. <link rel="stylesheet" href="test-common.css">
  3. <style type="text/css">
  4. @counter-style a {
  5. system: fixed;
  6. symbols: a b c;
  7. fallback: b;
  8. }
  9. @counter-style b {
  10. system: fixed 4;
  11. symbols: d e f;
  12. fallback: a;
  13. }
  14. @counter-style c {
  15. system: fixed 7;
  16. symbols: g h i;
  17. fallback: a;
  18. }
  19. </style>
  20. <ol style="list-style-type: a">
  21. <li><li><li>
  22. <li><li><li>
  23. <li><li><li>
  24. </ol>
  25. <ol style="list-style-type: b">
  26. <li><li><li>
  27. <li><li><li>
  28. <li><li><li>
  29. </ol>
  30. <ol style="list-style-type: c">
  31. <li><li><li>
  32. <li><li><li>
  33. <li><li><li>
  34. </ol>