NAME
HTML::Object::DOM::Element::Embed - HTML Object DOM Embed Class
SYNOPSIS
use HTML::Object::DOM::Element::Embed;
my $embed = HTML::Object::DOM::Element::Embed->new ||
die( HTML::Object::DOM::Element::Embed->error, "\n" );
VERSION
v0.2.0
DESCRIPTION
This interface provides special properties (beyond the regular HTML::Object::Element interface it also has available to it by inheritance) for manipulating <embed> elements.
INHERITANCE
+-----------------------+ +---------------------------+ +-------------------------+ +----------------------------+ +-----------------------------------+
| HTML::Object::Element | --> | HTML::Object::EventTarget | --> | HTML::Object::DOM::Node | --> | HTML::Object::DOM::Element | --> | HTML::Object::DOM::Element::Embed |
+-----------------------+ +---------------------------+ +-------------------------+ +----------------------------+ +-----------------------------------+
PROPERTIES
Inherits properties from its parent HTML::Object::DOM::Element
align
Is a string representing an enumerated property indicating alignment of the element's contents with respect to the surrounding context. The possible values are left, right, center, and justify.
See also Mozilla documentation
height
Is a string reflecting the height HTML attribute, containing the displayed height of the resource.
See also Mozilla documentation
name
Is a string representing the name of the embedded object.
See also Mozilla documentation
src
Is a string that reflects the src HTML attribute, containing the address of the resource.
See also Mozilla documentation
type
Is a string that reflects the type HTML attribute, containing the type of the resource.
See also Mozilla documentation
width
Is a string that reflects the width HTML attribute, containing the displayed width of the resource.
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 embed 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.