Files
servo/tests/wpt/css-tests/css21_dev/html4/letter-spacing-justify-001.htm

33 lines
1.1 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>CSS Test: Letter-spacing and 'text-align: justify'</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
<link rel="help" href="http://www.w3.org/TR/CSS21/text.html#spacing-props">
<meta name="flags" content="ahem">
<meta name="assert" content="The letter-spacing is not changed when combined with 'text-align: justify'.">
<style type="text/css">
#div1
{
font-family: Ahem;
letter-spacing: 1em;
line-height: 1em;
text-align: justify;
width: 6em;
}
#div2
{
background: blue;
height: 1em;
width: 11em;
}
</style>
</head>
<body>
<p>Test passes if there are six black boxes below and the last black box ends when the blue box ends.</p>
<div>
<div id="div1">XXXXXX XXXXXX</div>
<div id="div2"></div>
</div>
</body>
</html>