A URL containing a comment marker
- Input
- .a { background: url("http://x.com/a/*b*/c.png"); }
- Output
- .a{background:url("http://x.com/a/*b*/c.png")}
A minifier that strips anything between /* and */ removes the middle of this URL and leaves a broken path. Recognising url() as a unit prevents that.