Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!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 applied to elements with 'display' set to 'inline-table'</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
<link rel="match" href="../../reference/single_square_list_marker.xht"/>
<meta name="assert" content="The 'list-style' property applies to elements with 'display' set to 'inline-table'." />
<style type="text/css">
#table
{
display: inline-table;
list-style: square;
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 square below.</p>
<div id="table">
<div id="row">
<div id="cell">
<div></div>
</div>
</div>
</div>
</body>
</html>