1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
package CSS::DOM::StyleSheetList;
$VERSION = '0.17';
require CSS::DOM::Array;
@ISA = 'CSS::DOM::Array';
!()__END__()!
=head1 NAME
CSS::DOM::StyleSheetList - Style sheet list class for CSS::DOM
=head1 VERSION
Version 0.17
=head1 DESCRIPTION
This module implements style sheet lists for L<CSS::DOM>. It implements the
StyleSheetList DOM interface.
This simply inherits from L<CSS::DOM::Array> without adding anything
extra.
=head1 SEE ALSO
L<CSS::DOM>
L<CSS::DOM::Array>
|