mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
40 lines
1.3 KiB
HTML
40 lines
1.3 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<title>CSS Test: White-space application to 'display: block' element</title>
|
|
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/text.html#propdef-white-space">
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/text.html#white-space-prop">
|
|
<meta name="flags" content="ahem">
|
|
<meta name="assert" content="The 'white-space' property applies to 'display: block' elements.">
|
|
<style type="text/css">
|
|
div
|
|
{
|
|
font: 16px/1em Ahem;
|
|
}
|
|
span
|
|
{
|
|
display: block;
|
|
white-space: pre;
|
|
}
|
|
#div1, #div2
|
|
{
|
|
background: black;
|
|
display: inline-block;
|
|
height: 1em;
|
|
width: 2em;
|
|
}
|
|
#div2
|
|
{
|
|
margin-left: 3em;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Test passes if there are only two boxes below.</p>
|
|
<div>
|
|
<span>XX XX</span>
|
|
</div>
|
|
<div id="div1"></div><div id="div2"></div>
|
|
</body>
|
|
</html> |