system-fixed-invalid.html 386 B

12345678910111213141516171819
  1. <!DOCTYPE html>
  2. <link rel="stylesheet" href="test-common.css">
  3. <style type="text/css">
  4. @counter-style a {
  5. system: fixed;
  6. suffix: ":";
  7. }
  8. @counter-style b {
  9. system: fixed invalid;
  10. suffix: ":";
  11. }
  12. </style>
  13. <ol start="-2" style="list-style-type: a">
  14. <li>foo<li>bar<li>foo<li>bar
  15. </ol>
  16. <ol start="-2" style="list-style-type: b">
  17. <li>foo<li>bar<li>foo<li>bar
  18. </ol>