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

27 lines
999 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 'em' units with a zero value, 0em</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 zero length value in 'em' units.">
<style type="text/css">
div
{
font: 24px/1em Ahem;
}
div div
{
letter-spacing: 0em;
}
</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>