Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<head>
<title>CSS Test: List-style set to 'none' overrides 'list-style-image'</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
<meta name="flags" content="image" />
<meta name="assert" content="The 'list-style-image' property is also set to 'none when 'list-style' is set to 'none'." />
<style type="text/css">
body
{
margin-left: 50px;
}
div
{
color: red;
display: list-item;
list-style-image: url('support/red15x15.png');
list-style: none;
}
</style>
</head>
<body>
<p>Test passes if there is no red visible on the page.</p>
<div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</div>
</body>
</html>