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

27 lines
1011 B
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 using inches with a positive 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-letter-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 'letter-spacing' property sets a positive zero length value in inches.">
<style type="text/css">
div
{
font: 24px/1em Ahem;
}
div div
{
letter-spacing: +0in;
}
</style>
</head>
<body>
<p>Test passes if there is only one box below (with no jagged edges).</p>
<div>
<div>xx</div>
</div>
</body>
</html>