Skip Menu |

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

Report information
The Basics
Id: 6944
Status: resolved
Worked: 25 min
Priority: 0/
Queue: CSS-Tiny

People
Owner: Nobody in particular
Requestors: lwa [...] teaser.fr
Cc:
AdminCc:

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



Subject: duplicate selector not merged
when a selector is present twice in the style sheet, the first style is dropped instead of beeing merged. See the attached file for a demo.
use CSS::Tiny; my $css = " FOO { test1: 1; } FOO { test2: 2; } "; my $CSS = CSS::Tiny->read_string($css); print $CSS->write_string;