The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

HTML::Object::DOM::Element::Base - HTML Object

SYNOPSIS

    use HTML::Object::DOM::Element::Base;
    my $base = HTML::Object::DOM::Element::Base->new || 
        die( HTML::Object::DOM::Element::Base->error, "\n" );

VERSION

    v0.2.0

DESCRIPTION

This interface contains the base URI for a document. This object inherits all of the properties and methods as described in the HTML::Object::Element interface.

INHERITANCE

    +-----------------------+     +---------------------------+     +-------------------------+     +----------------------------+     +----------------------------------+
    | HTML::Object::Element | --> | HTML::Object::EventTarget | --> | HTML::Object::DOM::Node | --> | HTML::Object::DOM::Element | --> | HTML::Object::DOM::Element::Base |
    +-----------------------+     +---------------------------+     +-------------------------+     +----------------------------+     +----------------------------------+

PROPERTIES

Inherits properties from its parent HTML::Object::DOM::Element

href

Is a string that reflects the href HTML attribute, containing a base URL for relative URLs in the document.

See also Mozilla documentation

target

Is a string that reflects the target HTML attribute, containing a default target browsing context or frame for elements that do not have a target reference specified.

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 base 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.