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

34 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: Word-spacing +normal pc on an element</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="Ensure that word-spacing +6pc adds 6pc (in addition to default spacing) between words in the element.">
<style type="text/css">
#wrapper
{
font: 3pc/1em Ahem;
}
#span2
{
margin-left: 9pc;
}
#test
{
word-spacing: +6pc;
}
</style>
</head>
<body>
<p>Test passes if there are only two boxes below (with no jagged edges).</p>
<div id="wrapper">
<div>
<span>x</span><span id="span2">x</span>
</div>
<div id="test">x x</div>
</div>
</body>
</html>