Skip Menu |

This queue is for tickets about the CSS-Tiny CPAN distribution.

Report information
The Basics
Id: 99124
Status: new
Priority: 0/
Queue: CSS-Tiny

People
Owner: Nobody in particular
Requestors: fred.steinberg [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 1.19
Fixed in: (no value)



Subject: properties that contain semicolon (;) are not supported
E.g. in url properties: body { background-image: url(data:image/png;base64,iVBORw0KGgo...); } p { background: url(http://domain.com?p1;p2;p3); } Problem is in the read_string() method, it gets attributes by splitting the properties string on semicolons: foreach ( grep { /\S/ } split /\;/, $properties ) {