blob: 6b7b83afc38b2395f5725a64fc40053b6d0b6859 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>CSS Lists: 'list-style-image' takes precedence over 'list-style-type: none'</title>
<link rel="author" title="Emil A Eklund" href="mailto:eae@chromium.org">
<link rel="help" href="https://www.w3.org/TR/CSS2/generate.html#propdef-list-style-image">
<link rel="match" href="list-type-none-style-image-ref.html">
<style>
ul {
list-style-type: none;
}
li {
list-style-image: url('../../images/green-16x16.png');
}
</style>
</head>
<body>
<ul>
<li>Should have a green square list marker.</li>
</ul>
</body>
</html>