NAME
HTML::Object::DOM::Element::HR - HTML Object DOM HR Class
SYNOPSIS
use HTML::Object::DOM::Element::HR;
my $hr = HTML::Object::DOM::Element::HR->new ||
die( HTML::Object::DOM::Element::HR->error, "\n" );
VERSION
v0.2.0
DESCRIPTION
This interface provides special properties (beyond those of the HTML::Object::DOM::Element interface it also has available to it by inheritance) for manipulating <hr> elements.
INHERITANCE
+-----------------------+ +---------------------------+ +-------------------------+ +----------------------------+ +--------------------------------+
| HTML::Object::Element | --> | HTML::Object::EventTarget | --> | HTML::Object::DOM::Node | --> | HTML::Object::DOM::Element | --> | HTML::Object::DOM::Element::HR |
+-----------------------+ +---------------------------+ +-------------------------+ +----------------------------+ +--------------------------------+
PROPERTIES
Inherits properties from its parent HTML::Object::DOM::Element
align
Is a string, an enumerated attribute indicating alignment of the rule with respect to the surrounding context.
See also Mozilla documentation
color
Is a string representing the name of the color of the rule.
See also Mozilla documentation
noshade
Is a boolean value that sets the rule to have no shading.
See also Mozilla documentation
size
Is a string representing the height of the rule.
See also Mozilla documentation
width
Is a string representing the width of the rule on the page.
See also Mozilla documentation
METHODS
Inherits methods from its parent HTML::Object::DOM::Element
AUTHOR
Jacques Deguest <jack@deguest.jp>
SEE ALSO
Mozilla documentation, Mozilla documentation on hr element
COPYRIGHT & LICENSE
Copyright(c) 2022 DEGUEST Pte. Ltd.
All rights reserved
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.