Open tghw opened 12 years ago
what looks to be happening is the parser is barfing on the actual base64-encoded data portion of the URI and then instead of dropping the entire CSS property that URI was a part of, it just leaves a malformed one in it's place.
so instead of:
background-image: url(data:image/png;base64,[big-blob-o-data]);
you're left with:
background-image: url(data:image/png;
...which I think is causing the rest of the CSS file to be parsed improperly.
Probably another pyscss bug.
what looks to be happening is the parser is barfing on the actual base64-encoded data portion of the URI and then instead of dropping the entire CSS property that URI was a part of, it just leaves a malformed one in it's place.
so instead of:
background-image: url(data:image/png;base64,[big-blob-o-data]);
you're left with:
background-image: url(data:image/png;
...which I think is causing the rest of the CSS file to be parsed improperly.