blob: 2e466da025959ae1e82d773240116aa87a7e51fe [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>CSS Text Test: tab-size: 1em</title>
<link rel="author" title="David Storey" href="mailto:david@openweb.io">
<link rel="reviewer" title="Rebecca Hauck" href="mailto:rhauck@adobe.com">
<link rel="help" href="http://www.w3.org/TR/css-text-3/#tab-size">
<link rel="match" href="tab-size-length-001-ref.html">
<meta name="assert" content="Tab should be rendered as 1em (20px)">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
.container {
position: absolute;
}
.test {
font-family: Ahem;
font-size: 20px;
position: absolute;
top: 0;
left: 0;
}
.green {
background: green;
}
.red {
background: red;
tab-size: 1em;
}
</style>
</head>
<body>
<p>The test passes if there is no red.</p>
<div class="container">
<pre class="red test">&#09;</pre>
<pre class="green test"> </pre>
</div>
</body>
</html>