Files
servo/tests/wpt/css-tests/css21_dev/html4/list-style-applies-to-009.htm

32 lines
1.1 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>CSS Test: List-style applied to elements with 'display' set to 'block'</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
<link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#propdef-list-style">
<link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#list-style">
<link rel="match" href="reference/single_square_list_marker.htm">
<meta name="flags" content="">
<meta name="assert" content="The 'list-style' property applies to elements with 'display' set to 'block'.">
<style type="text/css">
span
{
display: block;
list-style: square;
margin-left: 1in;
}
a
{
display: list-item;
}
</style>
</head>
<body>
<p>Test passes if there is a single square below.</p>
<div>
<span>
<a></a>
</span>
</div>
</body>
</html>