The following renders differently across browsers: ```html <!doctype html> <style> li::before, li::after { content: "Before"; display: list-item; } li::after { content: "After"; } </style> <ol> <li>Foo ``` List item is defined in https://drafts.csswg.org/css-lists/#list-item / https://drafts.csswg.org/css-lists/#declaring-a-list-item, but it doesn't clarify if ::before or ::after are supposed to increment the list item counter. cc @MatsPalmgren @fantasai @tabatkins