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: Additional boxes generated outside the principal block box</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
<link rel="reviewer" title="GĂ©rard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2012-07-01 -->
<meta name="assert" content="Some block-level elements (i.e. 'list-item' elements) can generate additional boxes outside the principal block box." />
<style type="text/css">
body
{
margin-left: 50px;
}
div
{
background: blue;
display: list-item;
}
</style>
</head>
<body>
<p>Test passes if there is a marker to the left of the "Filler Text" and the marker does not have a blue background.</p>
<div>Filler Text</div>
</body>
</html>