File Coverage

lib/HTML/Object/DOM/Element/Div.pm
Criterion Covered Total %
statement 27 27 100.0
branch 2 4 50.0
condition n/a
subroutine 9 9 100.0
pod 1 1 100.0
total 39 41 95.1


line stmt bran cond sub pod time code
1             ##----------------------------------------------------------------------------
2             ## HTML Object - ~/lib/HTML/Object/DOM/Element/Div.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::Div;
15             BEGIN
16             {
17 14     14   12574 use strict;
  14         39  
  14         531  
18 14     14   93 use warnings;
  14         39  
  14         647  
19 14     14   107 use parent qw( HTML::Object::DOM::Element );
  14         49  
  14         143  
20 14     14   1396 use vars qw( $VERSION );
  14         46  
  14         961  
21 14     14   1815 use HTML::Object::DOM::Element::Shared qw( :div );
  14         49  
  14         2736  
22 14     14   466 our $VERSION = 'v0.2.0';
23             };
24              
25 14     14   122 use strict;
  14         41  
  14         327  
26 14     14   75 use warnings;
  14         39  
  14         2241  
27              
28             sub init
29             {
30 58     58 1 5183 my $self = shift( @_ );
31 58         2332 $self->{_init_strict_use_sub} = 1;
32 58 50       489 $self->SUPER::init( @_ ) || return( $self->pass_error );
33 58 50       284 $self->{tag} = 'div' if( !CORE::length( "$self->{tag}" ) );
34 58         733 return( $self );
35             }
36              
37             # Note: property align inherited
38              
39             1;
40             # NOTE: POD
41             __END__
42              
43             =encoding utf-8
44              
45             =head1 NAME
46              
47             HTML::Object::DOM::Element::Div - HTML Object DOM Div Class
48              
49             =head1 SYNOPSIS
50              
51             use HTML::Object::DOM::Element::Div;
52             my $div = HTML::Object::DOM::Element::Div->new ||
53             die( HTML::Object::DOM::Element::Div->error, "\n" );
54              
55             =head1 VERSION
56              
57             v0.2.0
58              
59             =head1 DESCRIPTION
60              
61             This interface provides special properties (beyond the regular L<HTML::Object::DOM::Element> interface it also has available to it by inheritance) for manipulating <div> elements.
62              
63             =head1 INHERITANCE
64              
65             +-----------------------+ +---------------------------+ +-------------------------+ +----------------------------+ +---------------------------------+
66             | HTML::Object::Element | --> | HTML::Object::EventTarget | --> | HTML::Object::DOM::Node | --> | HTML::Object::DOM::Element | --> | HTML::Object::DOM::Element::Div |
67             +-----------------------+ +---------------------------+ +-------------------------+ +----------------------------+ +---------------------------------+
68              
69             =head1 PROPERTIES
70              
71             Inherits properties from its parent L<HTML::Object::DOM::Element>
72              
73             =head2 align
74              
75             Is a string representing an enumerated property indicating alignment of the element's contents with respect to the surrounding context. The possible values are "left", "right", "justify", and "center".
76              
77             See also L<Mozilla documentation|https://developer.mozilla.org/en-US/docs/Web/API/HTMLDivElement/align>
78              
79             =head1 METHODS
80              
81             Inherits methods from its parent L<HTML::Object::DOM::Element>
82              
83             =head1 AUTHOR
84              
85             Jacques Deguest E<lt>F<jack@deguest.jp>E<gt>
86              
87             =head1 SEE ALSO
88              
89             L<Mozilla documentation|https://developer.mozilla.org/en-US/docs/Web/API/HTMLDivElement>, L<Mozilla documentation on div element|https://developer.mozilla.org/en-US/docs/Web/HTML/Element/div>
90              
91             =head1 COPYRIGHT & LICENSE
92              
93             Copyright(c) 2022 DEGUEST Pte. Ltd.
94              
95             All rights reserved
96              
97             This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
98              
99             =cut