haikuwebkit/LayoutTests/fast/repaint/list-marker.html

42 lines
1.0 KiB
HTML

<html>
<head>
<title></title>
</head>
<body>
<script>
if (window.testRunner) {
testRunner.testRepaint();
testRunner.repaintSweepHorizontally();
}
</script>
<p>
Test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=12910">http://bugs.webkit.org/show_bug.cgi?id=12910</a>
REGRESSION (r18756-r18765): list-bullet doesn't redraw properly when changing the list's content using JavaScript</i>.
</p>
<ul>
<li>
foo
<div style="margin: 10px;"></div>
</li>
</ul>
<ul style="list-style-position: inside;">
<li>
bar
<div style="margin: 10px;"></div>
</li>
</ul>
<ul style="direction: rtl;">
<li>
foo
<div style="margin: 10px;"></div>
</li>
</ul>
<ul style="direction: rtl; list-style-position: inside;">
<li>
bar
<div style="margin: 10px;"></div>
</li>
</ul>
</body>
</html>