Files
servo/tests/wpt/css-tests/css21_dev/html4/white-space-processing-054.htm

36 lines
1.2 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 processing model with 'en quad' characters</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
<link rel="help" href="http://www.w3.org/TR/CSS21/text.html#white-space-model">
<meta name="flags" content="ahem">
<meta name="assert" content="An 'en quad' characters is not collapsed by the white space processing model.">
<style type="text/css">
div
{
font: 16px/1em Ahem;
}
#div1
{
white-space: normal;
}
#div2, #div3
{
background: black;
display: inline-block;
height: 1em;
width: 2em;
}
#div3
{
margin-left: 1.5em;
}
</style>
</head>
<body>
<p>Test passes if there are only two boxes below.</p>
<div id="div1">XX&#x2000;&#x2000;&#x2000;XX</div>
<div id="div2"></div><div id="div3"></div>
</body>
</html>