File Coverage

lib/HTML/Object/DOM/Element/Pre.pm
Criterion Covered Total %
statement 22 27 81.4
branch 0 4 0.0
condition n/a
subroutine 8 9 88.8
pod 1 1 100.0
total 31 41 75.6


line stmt bran cond sub pod time code
1             ##----------------------------------------------------------------------------
2             ## HTML Object - ~/lib/HTML/Object/DOM/Element/Pre.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::Pre;
15             BEGIN
16             {
17 1     1   1015 use strict;
  1         2  
  1         29  
18 1     1   5 use warnings;
  1         2  
  1         35  
19 1     1   6 use parent qw( HTML::Object::DOM::Element );
  1         1  
  1         5  
20 1     1   71 use vars qw( $VERSION );
  1         1  
  1         39  
21 1     1   17 use HTML::Object::DOM::Element::Shared qw( :pre );
  1         2  
  1         106  
22 1     1   23 our $VERSION = 'v0.2.0';
23             };
24              
25 1     1   5 use strict;
  1         11  
  1         24  
26 1     1   5 use warnings;
  1         2  
  1         127  
27              
28             sub init
29             {
30 0     0 1   my $self = shift( @_ );
31 0           $self->{_init_strict_use_sub} = 1;
32 0 0         $self->SUPER::init( @_ ) || return( $self->pass_error );
33 0 0         $self->{tag} = 'pre' if( !CORE::length( "$self->{tag}" ) );
34 0           return( $self );
35             }
36              
37             # Note: property width inherited
38              
39             1;
40             # NOTE: POD
41             __END__
42              
43             =encoding utf-8
44              
45             =head1 NAME
46              
47             HTML::Object::DOM::Element::Pre - HTML Object DOM Pre Class
48              
49             =head1 SYNOPSIS
50              
51             use HTML::Object::DOM::Element::Pre;
52             my $pre = HTML::Object::DOM::Element::Pre->new ||
53             die( HTML::Object::DOM::Element::Pre->error, "\n" );
54              
55             =head1 VERSION
56              
57             v0.2.0
58              
59             =head1 DESCRIPTION
60              
61             This interface exposes specific properties and methods (beyond those of the L<HTML::Object::DOM::Element> interface it also has available to it by inheritance) for manipulating a block of preformatted text (<pre>).
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::Pre |
67             +-----------------------+ +---------------------------+ +-------------------------+ +----------------------------+ +---------------------------------+
68              
69             =head1 PROPERTIES
70              
71             Inherits properties from its parent L<HTML::Object::DOM::Element>
72              
73             =head2 width
74              
75             Is a long value reflecting the obsolete width attribute, containing a fixed-size length for the <pre> element.
76              
77             See also L<Mozilla documentation|https://developer.mozilla.org/en-US/docs/Web/API/HTMLPreElement/width>
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/HTMLPreElement>
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