Files
servo/tests/wpt/css-tests/css-text-3_dev/html/tab-size-integer-003.htm
Ms2ger 296fa2512b Update web-platform-tests and CSS tests.
- Update CSS tests to revision e05bfd5e30ed662c2f8a353577003f8eed230180.
- Update web-platform-tests to revision a052787dd5c069a340031011196b73affbd68cd9.
2017-02-06 22:38:29 +01:00

36 lines
1.0 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html><head>
<title>CSS Text Test: tab-size: 0</title>
<link href="mailto: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-integer-001-ref.htm" rel="match">
<meta content="Tab should be rendered as 0 times the space characters advance width (U+0020)" name="assert">
<style type="text/css">
.container {
position: absolute;
}
.green {
position: absolute;
top: 0;
left: 0;
background: green;
}
.red {
position: absolute;
top: 0;
left: 0;
background: red;
tab-size: 0;
}
</style>
</head>
<body>
<p>The test passes if there is no red.</p>
<div class="container">
<pre class="red"> </pre>
<pre class="green"> </pre>
</div>
</body></html>