mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
27 lines
1.1 KiB
HTML
27 lines
1.1 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
<title>CSS Test: List-style set to 'none' overrides 'list-style-image'</title>
|
|
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#lists" />
|
|
<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> </div>
|
|
</body>
|
|
</html> |