blob: 964a712c5fc682a9dea7cd7565264a4b5edda327 [file] [log] [blame]
<!DOCTYPE html>
Tests paint invalidation of list markers when the list is moved.
<ul id="ulist" style="position: absolute; top: 100px; width: 300px">
<li>List item</li>
</ul>
<script src="../../resources/run-after-layout-and-paint.js"></script>
<script>
runAfterLayoutAndPaint(function() {
ulist.style.top = '300px';
}, true);
</script>