RetroZilla/layout/html/tests/block/bugs/12451.html
2015-10-20 23:03:22 -04:00

27 lines
453 B
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html>
<head>
<title></title>
<style type="text/css">
.one, .two {
list-style-position: outside;
list-style-type: circle;
}
.two {
list-style-image: url(dummy.gif); /* nonexistent */
}
</style>
</head>
<body>
<ul>
<li class="one">Should have a circle marker.</li>
<li class="two">Should have a circle marker.</li>
</ul>
</body>
</html>