Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > 9df395755eb8264a9df6dd7a9a62d622 > files > 5

perl-CSS-1.08-10.fc15.noarch.rpm

use CSS;
use Data::Dumper;

print(('='x60)."\n");

my $css_l = new CSS({'parser' => 'CSS::Parse::Lite'});
$css_l->read_file("t/css_simple");
print $css_l->output();

print(('='x60)."\n");

my $css_l = new CSS({'parser' => 'CSS::Parse::Lite', 'adaptor' => 'CSS::Adaptor::Pretty'});
$css_l->read_file("t/css_simple");
print $css_l->output();

print(('='x60)."\n");

my $css_l = new CSS({'parser' => 'CSS::Parse::Lite', 'adaptor' => 'CSS::Adaptor::Debug'});
$css_l->read_file("t/css_simple");
print $css_l->output();

print(('='x60)."\n");