haikuwebkit/LayoutTests/fast/css/counters/counter-reset-inherit-bug-9...

16 lines
186 B
HTML

<!doctype html>
<style>
body { counter-reset: x 0; }
div {
counter-increment: inherit;
}
div:before {
content: counter(x);
}
</style>
<div></div>