chromium/third_party/blink/web_tests/fast/css/counters/counter-reset-inherit-bug-94642.html

<!doctype html>

<style>
    body { counter-reset: x 0; }

    div {
        counter-increment: inherit;
    }

    div:before {
        content: counter(x);
    }
</style>

<div></div>