blob: 4070c262ec7eea06ccc9218cdbd02d2afa20988c [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>CSS 2.1 Test Suite: list-style-image</title>
<style type="text/css">
body { color: navy; }
.one {list-style-image: url(support/square-purple.png);}
.two {list-style-image: none;}
</style>
<link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#q10" title="12.5 Lists">
</head>
<body>
<p>Each bullet should look as described.</p>
<ul class="one">
<li>purple square</li>
<li>purple square</li>
<li>purple square</li>
</ul>
<ul class="two">
<li>disc</li>
<li>disc</li>
<li>disc</li>
</ul>
</body>
</html>