File Coverage

lib/HTML/Object/DOM/Element/Heading.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/Heading.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::Heading;
15             BEGIN
16             {
17 4     4   3788 use strict;
  4         23  
  4         170  
18 4     4   32 use warnings;
  4         10  
  4         259  
19 4     4   31 use parent qw( HTML::Object::DOM::Element );
  4         14  
  4         31  
20 4     4   353 use vars qw( $VERSION );
  4         13  
  4         271  
21 4     4   38 use HTML::Object::DOM::Element::Shared qw( :heading );
  4         14  
  4         675  
22 4     4   91 our $VERSION = 'v0.2.0';
23             };
24              
25 4     4   24 use strict;
  4         9  
  4         130  
26 4     4   28 use warnings;
  4         14  
  4         639  
27              
28             sub init
29             {
30 5     5 1 439 my $self = shift( @_ );
31 5         507 $self->{_init_strict_use_sub} = 1;
32 5 50       48 $self->SUPER::init( @_ ) || return( $self->pass_error );
33 5 50       27 $self->{tag} = 'heading' if( !CORE::length( "$self->{tag}" ) );
34 5         57 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::Heading - HTML Object DOM Heading Class
48              
49             =head1 SYNOPSIS
50              
51             use HTML::Object::DOM::Element::Heading;
52             my $heading = HTML::Object::DOM::Element::Heading->new ||
53             die( HTML::Object::DOM::Element::Heading->error, "\n" );
54              
55             =head1 VERSION
56              
57             v0.2.0
58              
59             =head1 DESCRIPTION
60              
61             This interface represents the different heading elements, C<h1> through C<h6>. It inherits methods and properties from the L<HTML::Object::DOM::Element> interface.
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::Heading |
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 attribute indicating alignment of the heading 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/HTMLHeadingElement/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/HTMLHeadingElement>, L<Mozilla documentation on heading element|https://developer.mozilla.org/en-US/docs/Web/HTML/Element/heading>
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