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;