File Coverage

lib/HTML/Object/DOM/Element/Paragraph.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/Paragraph.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::Paragraph;
15             BEGIN
16             {
17 9     9   7877 use strict;
  9         24  
  9         366  
18 9     9   52 use warnings;
  9         19  
  9         390  
19 9     9   59 use parent qw( HTML::Object::DOM::Element );
  9         33  
  9         83  
20 9     9   864 use vars qw( $VERSION );
  9         35  
  9         630  
21 9     9   624 use HTML::Object::DOM::Element::Shared qw( :paragraph );
  9         30  
  9         1625  
22 9     9   226 our $VERSION = 'v0.2.0';
23             };
24              
25 9     9   62 use strict;
  9         20  
  9         303  
26 9     9   55 use warnings;
  9         23  
  9         1375  
27              
28             sub init
29             {
30 17     17 1 1502 my $self = shift( @_ );
31 17         1281 $self->{_init_strict_use_sub} = 1;
32 17 50       161 $self->SUPER::init( @_ ) || return( $self->pass_error );
33 17 50       101 $self->{tag} = 'paragraph' if( !CORE::length( "$self->{tag}" ) );
34 17         203 return( $self );
35             }
36              
37             # Note: property align is inherited
38              
39             1;
40             # NOTE: POD
41             __END__
42              
43             =encoding utf-8
44              
45             =head1 NAME
46              
47             HTML::Object::DOM::Element::Paragraph - HTML Object DOM Paragraph Class
48              
49             =head1 SYNOPSIS
50              
51             use HTML::Object::DOM::Element::Paragraph;
52             my $paragraph = HTML::Object::DOM::Element::Paragraph->new ||
53             die( HTML::Object::DOM::Element::Paragraph->error, "\n" );
54              
55             =head1 VERSION
56              
57             v0.2.0
58              
59             =head1 DESCRIPTION
60              
61             This interface provides special properties (beyond those of the regular L<HTML::Object::DOM::Element> object interface it inherits) for manipulating <p> 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::Paragraph |
67             +-----------------------+ +---------------------------+ +-------------------------+ +----------------------------+ +---------------------------------------+
68              
69             =head1 PROPERTIES
70              
71             Inherits properties from its parent L<HTML::Object::DOM::Element>
72              
73             =head2 align
74              
75             A string representing an enumerated property indicating alignment of the element's contents with respect to the surrounding context. The possible values are C<left>, C<right>, C<justify>, and C<center>.
76              
77             See also L<Mozilla documentation|https://developer.mozilla.org/en-US/docs/Web/API/HTMLParagraphElement/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/HTMLParagraphElement>, L<Mozilla documentation on paragraph element|https://developer.mozilla.org/en-US/docs/Web/HTML/Element/paragraph>
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