list-marker.html 879 B

1234567891011121314151617181920212223242526272829303132333435
  1. <html>
  2. <head>
  3. <title></title>
  4. </head>
  5. <body>
  6. <p>
  7. Test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=12910">http://bugs.webkit.org/show_bug.cgi?id=12910</a>
  8. REGRESSION (r18756-r18765): list-bullet doesn't redraw properly when changing the list's content using JavaScript</i>.
  9. </p>
  10. <ul>
  11. <li>
  12. foo
  13. <div style="margin: 10px;"></div>
  14. </li>
  15. </ul>
  16. <ul style="list-style-position: inside;">
  17. <li>
  18. bar
  19. <div style="margin: 10px;"></div>
  20. </li>
  21. </ul>
  22. <ul style="direction: rtl;">
  23. <li>
  24. foo
  25. <div style="margin: 10px;"></div>
  26. </li>
  27. </ul>
  28. <ul style="direction: rtl; list-style-position: inside;">
  29. <li>
  30. bar
  31. <div style="margin: 10px;"></div>
  32. </li>
  33. </ul>
  34. </body>
  35. </html>