File Coverage

lib/HTML/Object/DOM/Element/Head.pm
Criterion Covered Total %
statement 24 25 96.0
branch 2 4 50.0
condition n/a
subroutine 8 9 88.8
pod 2 2 100.0
total 36 40 90.0


line stmt bran cond sub pod time code
1             ##----------------------------------------------------------------------------
2             ## HTML Object - ~/lib/HTML/Object/DOM/Element/Head.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::Head;
15             BEGIN
16             {
17 14     14   12622 use strict;
  14         40  
  14         575  
18 14     14   95 use warnings;
  14         35  
  14         682  
19 14     14   85 use parent qw( HTML::Object::DOM::Element );
  14         41  
  14         196  
20 14     14   1423 use vars qw( $VERSION );
  14         45  
  14         1002  
21 14     14   347 our $VERSION = 'v0.2.0';
22             };
23              
24 14     14   84 use strict;
  14         37  
  14         372  
25 14     14   80 use warnings;
  14         50  
  14         2508  
26              
27             sub init
28             {
29 18     18 1 1670 my $self = shift( @_ );
30 18         2095 $self->{_init_strict_use_sub} = 1;
31 18 50       187 $self->SUPER::init( @_ ) || return( $self->pass_error );
32 18 50       96 $self->{tag} = 'head' if( !CORE::length( "$self->{tag}" ) );
33 18         241 return( $self );
34             }
35              
36             # Note: property profile
37 0     0 1   sub profile : lvalue { return( shift->_set_get_property( 'profile', @_ ) ); }
38              
39             1;
40             # NOTE: POD
41             __END__
42              
43             =encoding utf-8
44              
45             =head1 NAME
46              
47             HTML::Object::DOM::Element::Head - HTML Object DOM Head Class
48              
49             =head1 SYNOPSIS
50              
51             use HTML::Object::DOM::Element::Head;
52             my $head = HTML::Object::DOM::Element::Head->new ||
53             die( HTML::Object::DOM::Element::Head->error, "\n" );
54              
55             =head1 VERSION
56              
57             v0.2.0
58              
59             =head1 DESCRIPTION
60              
61             This interface contains the descriptive information, or metadata, for a document. This object inherits all of the properties and methods described in 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::Head |
67             +-----------------------+ +---------------------------+ +-------------------------+ +----------------------------+ +----------------------------------+
68              
69             =head1 PROPERTIES
70              
71             Inherits properties from its parent L<HTML::Object::DOM::Element>
72              
73             =head2 profile
74              
75             Is a string representing the URIs of one or more metadata profiles (white space separated).
76              
77             See also L<Mozilla documentation|https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadElement/profile>
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/HTMLHeadElement>, L<Mozilla documentation on head element|https://developer.mozilla.org/en-US/docs/Web/HTML/Element/head>
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