Files
servo/tests/wpt/css-tests/css21_dev/html4/content-counters-004.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

34 lines
944 B
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>CSS Test: content: counters(c, ".", square)</title>
<link rel="author" title="L. David Baron" href="https://dbaron.org/">
<link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#propdef-content">
<link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#counter">
<link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#counter-styles">
<style type="text/css">
body { white-space: nowrap; }
body, #test { counter-reset: c; }
p, #test span { counter-increment: c; }
#test span:before { content: counters(c, ".", square); }
</style>
</head>
<body>
<p>Test passes if below there are 6 groups of: filled in box, period, filled in box.</p>
<div id="test">
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</body>
</html>