numbering-3.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <!DOCTYPE HTML>
  2. <html><head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  4. <title>Testcase #1 for bug 1171419</title>
  5. </head>
  6. <body>
  7. <ol style="list-style: decimal inside; display:grid">
  8. <li style="overflow: hidden">List item 1</li>
  9. <li style="overflow: hidden">List item 2</li>
  10. <li>List item 3</li>
  11. <li style="overflow: hidden">List item 4</li>
  12. <li style="overflow: hidden">List item 5</li>
  13. <li>List item 6</li>
  14. <div style="overflow: hidden"><li>List item 7</li></div>
  15. </ol>
  16. <ol style="list-style: decimal inside; display:grid">
  17. <div>
  18. <li style="overflow: hidden">List item 1</li>
  19. <li style="overflow: hidden">List item 2</li>
  20. <li>List item 3</li>
  21. </div>
  22. </ol>
  23. <ol style="list-style: decimal inside; display:grid">
  24. <div style="display:grid">
  25. <li style="overflow: hidden">List item 1</li>
  26. <li style="overflow: hidden">List item 2</li>
  27. <li>List item 3</li>
  28. </div>
  29. </ol>
  30. <ol style="list-style: decimal inside; display:inline-grid">
  31. <div style="display:grid">
  32. <li style="overflow: hidden">List item 1</li>
  33. <li style="overflow: hidden">List item 2</li>
  34. <li>List item 3</li>
  35. </div>
  36. </ol>
  37. <ol style="list-style: decimal inside; display:grid">
  38. <li style="-moz-column-width:1em; column-width:1em;">item1</li>
  39. <li style="-moz-column-width:1em; column-width:1em;">item2</li>
  40. <li style="-moz-column-width:1em; column-width:1em;">item3</li>
  41. </ol>
  42. </body>
  43. </html>