Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/reftests/counters/reftest.list
<head>
<title>CSS 2.1 Test Suite: Counter properties on 'visibility: hidden' elements</title>
<style type="text/css">
div { counter-reset: c }
#one { visibility: hidden; counter-increment: c }
#two:before { content: counter(c) }
</style>
</head>
<body>
<div><span id="one"></span><span id="two"></span></div>
</body>
</html>