mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
34 lines
1.2 KiB
HTML
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 mm 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 25.4mm adds 25.4mm (in addition to default spacing) between words in the element.">
|
|
<style type="text/css">
|
|
#wrapper
|
|
{
|
|
font: 25.4mm/1em Ahem;
|
|
}
|
|
#span2
|
|
{
|
|
margin-left: 50.8mm;
|
|
}
|
|
#test
|
|
{
|
|
word-spacing: 25.4mm;
|
|
}
|
|
</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> |