mirror of
https://github.com/servo/servo
synced 2026-04-28 10:27:40 +02:00
38 lines
1.2 KiB
HTML
38 lines
1.2 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml"><head>
|
|
<title>CSS Text Test: tab-size: 1em</title>
|
|
<link href="david@openweb.io" rel="author" title="David Storey" />
|
|
<link href="mailto:rhauck@adobe.com" rel="reviewer" title="Rebecca Hauck" />
|
|
<link href="http://www.w3.org/TR/css-text-3/#tab-size" rel="help" />
|
|
<link href="reference/tab-size-length-001-ref.xht" rel="match" />
|
|
<meta content="Tab should be rendered as 1em (20px)" name="assert" />
|
|
<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"> </pre>
|
|
<pre class="green test"> </pre>
|
|
</div>
|
|
|
|
|
|
</body></html> |