| blib/lib/SMIL/MediaAttributes.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 3 | 3 | 100.0 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 1 | 1 | 100.0 |
| pod | n/a | ||
| total | 4 | 4 | 100.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | package SMIL::MediaAttributes; | ||||||
| 2 | |||||||
| 3 | 1 | 1 | 1536 | use SMIL::SystemSwitches; | |||
| 1 | 8 | ||||||
| 1 | 608 | ||||||
| 4 | |||||||
| 5 | $VERSION = "0.898"; | ||||||
| 6 | |||||||
| 7 | require Exporter; | ||||||
| 8 | @ISA = qw( Exporter ); | ||||||
| 9 | @EXPORT = qw( @mediaAttributes @timeAtts ); | ||||||
| 10 | |||||||
| 11 | @timeAtts = ( "begin", "end", "clip-end", "start", "dur", "clip-begin", ); | ||||||
| 12 | @mediaAttributes = ( @timeAtts, @systemSwitchAttributes, | ||||||
| 13 | "fill", "src", "region", "id", "transition" ); | ||||||
| 14 |