Files
servo/tests/wpt/css-tests/css21_dev/html4/word-spacing-065.htm

30 lines
1.0 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>CSS Test: Word-spacing using inches with a zero value, 0in</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
<link rel="help" href="http://www.w3.org/TR/CSS21/text.html#propdef-word-spacing">
<link rel="help" href="http://www.w3.org/TR/CSS21/text.html#spacing-props">
<meta name="flags" content="ahem">
<meta name="assert" content="The 'word-spacing' property sets a zero length value in inches.">
<style type="text/css">
div
{
font: 24px/1em Ahem;
}
#test
{
word-spacing: 0in;
}
</style>
</head>
<body>
<p>Test passes if there are only two boxes below (with no jagged edges).</p>
<div>
<div>
<span>x x</span>
</div>
<div id="test">x x</div>
</div>
</body>
</html>