The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

Search results for "dist:HTML-Object module::HTML-DOM"

HTML::Object::DOM - HTML Object DOM Class River stage one • 1 direct dependent • 2 total dependents

This module implement DOM-like interface to HTML objects and inherits from HTML::Object, so you can call this module instead, to parse HTML data and it the resulting tree of objects will have DOM capabilities. DOM stands for Document Object Model. Th...

JDEGUEST/HTML-Object-v0.5.0 - 04 May 2024 11:59:40 UTC

HTML::Object::DOM::Number - HTML Object DOM Number River stage one • 1 direct dependent • 2 total dependents

This interface represents and manipulates numbers like 37 or -9.25. It inherits from Module::Generic::Number...

JDEGUEST/HTML-Object-v0.5.0 - 04 May 2024 11:59:40 UTC

HTML::Object::DOM::File - HTML Object DOM File Class River stage one • 1 direct dependent • 2 total dependents

The "File" interface provides information about files and allows access to their content. File objects are generally retrieved from a HTML::Object::DOM::FileList object returned using the "<input"> files method. It inherits from Module::Generic::File...

JDEGUEST/HTML-Object-v0.5.0 - 04 May 2024 11:59:40 UTC

HTML::Object::DOM::Node - HTML Object DOM Node Class River stage one • 1 direct dependent • 2 total dependents

This module implement the properties and methods for HTML DOM nodes. It inherits from HTML::Object::EventTarget and is used by HTML::Object::DOM::Element...

JDEGUEST/HTML-Object-v0.5.0 - 04 May 2024 11:59:40 UTC

HTML::Object::DOM::List - HTML Object DOM List Abstract Class River stage one • 1 direct dependent • 2 total dependents

This is an abstract class designed to be inherited by HTML::Object::DOM::TextTrackCueList, HTML::Object::DOM::TextTrackList and HTML::Object::DOM::VideoTrackList It inherits from HTML::Object::EventTarget...

JDEGUEST/HTML-Object-v0.5.0 - 04 May 2024 11:59:40 UTC

HTML::Object::DOM::Collection - HTML Object DOM Collection River stage one • 1 direct dependent • 2 total dependents

The "Collection" interface represents a generic collection (array-like object inheriting from Module::Generic::Array) of a list of elements (in document order) and offers methods and properties for selecting from that list. This is fundamentally diff...

JDEGUEST/HTML-Object-v0.5.0 - 04 May 2024 11:59:40 UTC

HTML::Object::DOM::FileList - HTML Object DOM FileList Class River stage one • 1 direct dependent • 2 total dependents

An object of this type is returned by the "files" in HTML::Object::DOM::Element::Input property of the HTML "<input"> element; this lets you access a list of files you would have set or added, removed, etc.. It inherits from Module::Generic::Array No...

JDEGUEST/HTML-Object-v0.5.0 - 04 May 2024 11:59:40 UTC

HTML::Object::DOM::NodeList - HTML Object DOM NodeList Class River stage one • 1 direct dependent • 2 total dependents

"NodeList" objects are collections of nodes, usually returned by properties such as "childNodes" in HTML::Object::DOM::Node and methods such as "querySelectorAll" in HTML::Object::DOM::Document....

JDEGUEST/HTML-Object-v0.5.0 - 04 May 2024 11:59:40 UTC

HTML::Object::DOM::Document - HTML Object DOM Document Class River stage one • 1 direct dependent • 2 total dependents

This module represents an HTML document. It inherits from HTML::Object::Document and HTML::Object::DOM::Element It is the top object in the hierarchy and thus has no parent. It should contain only one child, the "html" element, and has one associated...

JDEGUEST/HTML-Object-v0.5.0 - 04 May 2024 11:59:40 UTC

HTML::Object::DOM::Declaration - HTML Object DOM DTD River stage one • 1 direct dependent • 2 total dependents

This module implements an HTTML declaration for the DOM. It inherits from HTML::Object::Declaration and HTTML::Object::DOM::Node...

JDEGUEST/HTML-Object-v0.5.0 - 04 May 2024 11:59:40 UTC

HTML::Object - HTML Parser, Modifier and Query Interface River stage one • 1 direct dependent • 2 total dependents

This module is yet another HTML parser, manipulation and query interface, but probably the most comprehensive one. It uses the C parser from HTML::Parser and has the unique particularity that it does not try to decode the entire html document tree on...

JDEGUEST/HTML-Object-v0.5.0 - 04 May 2024 11:59:40 UTC

HTML::Object::DOM::AudioTrack - HTML Object DOM AudioTrack Class River stage one • 1 direct dependent • 2 total dependents

The "AudioTrack" interface represents a single audio track from one of the HTML media elements, <audio> or <video>....

JDEGUEST/HTML-Object-v0.5.0 - 04 May 2024 11:59:40 UTC

HTML::Object::DOM::VideoTrack - HTML Object DOM VideoTrack Class River stage one • 1 direct dependent • 2 total dependents

The "VideoTrack" interface represents a single video track from a <video> element. To get a "VideoTrack" for a given media element, use the element's videoTracks property, which returns a VideoTrackList object from which you can get the individual tr...

JDEGUEST/HTML-Object-v0.5.0 - 04 May 2024 11:59:40 UTC

HTML::Object::DOM::XPathResult - HTML Object DOM XPath Result Class River stage one • 1 direct dependent • 2 total dependents

The "XPathResult" interface represents the results generated by evaluating an XPath expression within the context of a given node. The method you can access vary depending on the type of results returned. The XPath evaluation can return a boolean, a ...

JDEGUEST/HTML-Object-v0.5.0 - 04 May 2024 11:59:40 UTC

HTML::Object::DOM::VideoTrackList - HTML Object DOM VideoTrackList Class River stage one • 1 direct dependent • 2 total dependents

The "VideoTrackList" interface is used to represent a list of the video tracks contained within a <video> element, with each track represented by a separate "VideoTrack" object in the list. It inherits from HTML::Object::EventTarget....

JDEGUEST/HTML-Object-v0.5.0 - 04 May 2024 11:59:40 UTC

HTML::Object::DOM::Element::Media - HTML Object DOM Media Class River stage one • 1 direct dependent • 2 total dependents

This interface adds to HTML::Object::DOM::Element the properties and methods needed to support basic media-related capabilities that are common to audio and video....

JDEGUEST/HTML-Object-v0.5.0 - 04 May 2024 11:59:40 UTC

HTML::Object::XPath - HTML Object XPath Class River stage one • 1 direct dependent • 2 total dependents

This module implements the XPath engine used by HTML::Object::XQuery to provide a jQuery-like interface to query the parsed DOM object....

JDEGUEST/HTML-Object-v0.5.0 - 04 May 2024 11:59:40 UTC

HTML::Object::Event - HTML Object Event Class River stage one • 1 direct dependent • 2 total dependents

This module represents an event which takes place in the DOM. Of course, unlike a web browser environment, there is no user interaction here, so all event "fired" are triggered programatically. Events are attached to HTML elements One element can hav...

JDEGUEST/HTML-Object-v0.5.0 - 04 May 2024 11:59:40 UTC

HTML::Object::Closing - HTML Object Closing Tag Class River stage one • 1 direct dependent • 2 total dependents

This module represents the end of a tag for tags that are not empty. Thos objects are in the dom by necessity, but are not used directly. They are always attached to the object of another HTML element This module inherits from HTML::Object::Element...

JDEGUEST/HTML-Object-v0.5.0 - 04 May 2024 11:59:40 UTC

HTML::Object::DOM::Root - HTML Object River stage one • 1 direct dependent • 2 total dependents

This module implements a Root in DOM. It inherits from HTML::Object::Root and HTML::Object::DOM::Node...

JDEGUEST/HTML-Object-v0.5.0 - 04 May 2024 11:59:40 UTC
34 results (0.089 seconds)