Problem
Empty list elements are displayed at mobile pages (https://de.m.wikipedia.org/wiki/Benutzer:Aschroet/T129375). This is not done for the non-mobile page (https://de.wikipedia.org/wiki/Benutzer:Aschroet/T129375).
Analysis
The rendered HTMLs of and empty * in the wikitext are:
For mobile:
<ul> <li>Item 1</li> <li class="mw-empty-elt"> <li>Item 2</li> </ul>
For non-mobile:
<ul> <li>Item 1</li> <li class="mw-empty-elt"></li> <li>Item 2</li> </ul>
Despite the fact that the mobile version does not close the empty <li> which is valid HTML it seems that for the mobile version there exists no display:none CSS property for the class mw-empty-elt as it is the case for the non-mobile page.
PS: Maybe mw-empty-li also needs to be considerd when working on this issue.