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

NAME

HTML::Object::DOM::Element::UList - HTML Object DOM UList Class

SYNOPSIS

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

VERSION

    v0.2.0

DESCRIPTION

This interface provides special properties (beyond those defined on the regular HTML::Object::DOM::Element interface it also has available to it by inheritance) for manipulating unordered list elements.

INHERITANCE

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

PROPERTIES

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

compact

Is a boolean value indicating that spacing between list items should be reduced. This property reflects the compact HTML attribute only, it does not consider the line-height CSS property used for that behavior in modern pages.

See also Mozilla documentation

type

Is a string value reflecting the HTML attribute representing the type and defining the kind of marker to be used to display. The values are browser dependent and have never been standardized.

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