File Coverage

lib/HTML/Object/DOM/Element/Picture.pm
Criterion Covered Total %
statement 19 24 79.1
branch 0 4 0.0
condition n/a
subroutine 7 8 87.5
pod 1 1 100.0
total 27 37 72.9


line stmt bran cond sub pod time code
1             ##----------------------------------------------------------------------------
2             ## HTML Object - ~/lib/HTML/Object/DOM/Element/Picture.pm
3             ## Version v0.2.0
4             ## Copyright(c) 2022 DEGUEST Pte. Ltd.
5             ## Author: Jacques Deguest <jack@deguest.jp>
6             ## Created 2022/01/06
7             ## Modified 2022/09/18
8             ## All rights reserved
9             ##
10             ##
11             ## This program is free software; you can redistribute it and/or modify it
12             ## under the same terms as Perl itself.
13             ##----------------------------------------------------------------------------
14             package HTML::Object::DOM::Element::Picture;
15             BEGIN
16             {
17 1     1   994 use strict;
  1         1  
  1         29  
18 1     1   5 use warnings;
  1         2  
  1         26  
19 1     1   5 use parent qw( HTML::Object::DOM::Element );
  1         2  
  1         4  
20 1     1   61 use vars qw( $VERSION );
  1         2  
  1         42  
21 1     1   29 our $VERSION = 'v0.2.0';
22             };
23              
24 1     1   6 use strict;
  1         2  
  1         19  
25 1     1   5 use warnings;
  1         8  
  1         135  
26              
27             sub init
28             {
29 0     0 1   my $self = shift( @_ );
30 0           $self->{_init_strict_use_sub} = 1;
31 0 0         $self->SUPER::init( @_ ) || return( $self->pass_error );
32 0 0         $self->{tag} = 'picture' if( !CORE::length( "$self->{tag}" ) );
33 0           return( $self );
34             }
35              
36             1;
37             # NOTE: POD
38             __END__
39              
40             =encoding utf-8
41              
42             =head1 NAME
43              
44             HTML::Object::DOM::Element::Picture - HTML Object DOM Picture Class
45              
46             =head1 SYNOPSIS
47              
48             use HTML::Object::DOM::Element::Picture;
49             my $picture = HTML::Object::DOM::Element::Picture->new ||
50             die( HTML::Object::DOM::Element::Picture->error, "\n" );
51              
52             =head1 VERSION
53              
54             v0.2.0
55              
56             =head1 DESCRIPTION
57              
58             Experimental: This is reportedly an experimental technology. Check the Browser compatibility table carefully before using this in production.
59              
60             =head1 INHERITANCE
61              
62             +-----------------------+ +---------------------------+ +-------------------------+ +----------------------------+ +-------------------------------------+
63             | HTML::Object::Element | --> | HTML::Object::EventTarget | --> | HTML::Object::DOM::Node | --> | HTML::Object::DOM::Element | --> | HTML::Object::DOM::Element::Picture |
64             +-----------------------+ +---------------------------+ +-------------------------+ +----------------------------+ +-------------------------------------+
65              
66             =head1 PROPERTIES
67              
68             Inherits properties from its parent L<HTML::Object::DOM::Element>
69              
70             =head1 METHODS
71              
72             Inherits methods from its parent L<HTML::Object::DOM::Element>
73              
74             =head1 AUTHOR
75              
76             Jacques Deguest E<lt>F<jack@deguest.jp>E<gt>
77              
78             =head1 SEE ALSO
79              
80             L<Mozilla documentation|https://developer.mozilla.org/en-US/docs/Web/API/HTMLPictureElement>, L<Mozilla documentation on picture element|https://developer.mozilla.org/en-US/docs/Web/HTML/Element/picture>
81              
82             =head1 COPYRIGHT & LICENSE
83              
84             Copyright(c) 2022 DEGUEST Pte. Ltd.
85              
86             All rights reserved
87              
88             This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
89              
90             =cut