blob: cbc8bc5f8aacb96bd1057f44b0f302c7175ccb89 [file] [log] [blame]
<html>
<head>
<style>
div.example:before {
content: counter(exampleno, upper-roman);
counter-increment: exampleno;
}
pre.example:before {
content: counter(exampleno, upper-roman);
counter-increment: exampleno;
}
</style>
<script>
function test()
{
if (window.layoutTestController)
layoutTestController.dumpAsText();
}
</script>
</head>
<body onload="test()">
This tests that we don't crash when using the CSS counters feature.
<div class="example"></div>
<pre class="example"></pre>
</body>
</html>