list-marker-move.html 341 B

1234567891011
  1. <!DOCTYPE html>
  2. Tests paint invalidation of list markers when the list is moved.
  3. <ul id="ulist" style="position: absolute; top: 100px; width: 300px">
  4. <li>List item</li>
  5. </ul>
  6. <script src="../../resources/run-after-layout-and-paint.js"></script>
  7. <script>
  8. runAfterLayoutAndPaint(function() {
  9. ulist.style.top = '300px';
  10. }, true);
  11. </script>