NAME
HTML::Object::DOM::Element::Map - HTML Object DOM Map Class
SYNOPSIS
use HTML::Object::DOM::Element::Map;
my $map = HTML::Object::DOM::Element::Map->new ||
die( HTML::Object::DOM::Element::Map->error, "\n" );
VERSION
v0.2.0
DESCRIPTION
This interface provides special properties and methods (beyond those of the regular object HTML::Object::Element interface it also has available to it by inheritance) for manipulating the layout and presentation of map
elements.
INHERITANCE
+-----------------------+ +---------------------------+ +-------------------------+ +----------------------------+ +---------------------------------+
| HTML::Object::Element | --> | HTML::Object::EventTarget | --> | HTML::Object::DOM::Node | --> | HTML::Object::DOM::Element | --> | HTML::Object::DOM::Element::Map |
+-----------------------+ +---------------------------+ +-------------------------+ +----------------------------+ +---------------------------------+
PROPERTIES
Inherits properties from its parent HTML::Object::DOM::Element
areas
Is a live HTML::Object::DOM::Collection representing the <area elements|HTML::Object::DOM::Element::Area> associated to this <map>.
See also Mozilla documentation
name
Is a string representing the <map
> element for referencing it other context. If the id attribute is set, this must have the same value; and it cannot be undef
or empty.
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 map element
COPYRIGHT & LICENSE
Copyright(c) 2021 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.