25 lines
No EOL
1.1 KiB
HTML
25 lines
No EOL
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>
|
|
<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 -->
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#block-boxes" />
|
|
<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> |