File Coverage

blib/lib/SMIL/Transition.pm
Criterion Covered Total %
statement 3 6 50.0
branch n/a
condition n/a
subroutine 1 2 50.0
pod 0 1 0.0
total 4 9 44.4


line stmt bran cond sub pod time code
1             package SMIL::Transition;
2             $VERSION = "0.898";
3 1     1   7 use SMIL::XMLTag;
  1         3  
  1         201  
4             @ISA = qw( SMIL::XMLTag );
5              
6             my @validAttrs = ( 'id', 'type', 'subtype', 'borderColor', 'borderWidth',
7             'direction', 'dur', 'endProgress', 'fadeColor',
8             'horzRepeat', 'startProgress', 'vertRepeat' );
9              
10             sub init {
11 0     0 0   my $self = shift;
12 0           $self->SUPER::init( "transition" );
13 0           $self->setAttributes( @_ );
14             }
15              
16             1;