blob: 1c2c7e4e8eb1e778ac6b8bb9cede01a072c93754 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<!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>
|