RetroZilla/layout/html/tests/block/bugs/12451.html

27 lines
453 B
HTML
Raw Normal View History

2015-10-21 05:03:22 +02:00
<!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>