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-image applied to elements with 'display' set to 'table-row-group'</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 applies to elements with 'display' set to 'table-row-group'." />
<style type="text/css">
#test
{
display: table-row-group;
list-style-image: url('support/blue15x15.png');
}
#table
{
display: table;
margin-left: 1in;
}
#row
{
display: table-row;
}
#cell
{
display: table-cell;
}
#cell div
{
display: list-item;
}
</style>
</head>
<body>
<p>Test passes if there is a single blue square below.</p>
<div id="table">
<div id="test">
<div id="row">
<div id="cell">
<div></div>
</div>
</div>
</div>
</div>
</body>
</html>