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-DOM DOM"

HTML::DOM - A Perl implementation of the HTML Document Object Model River stage two • 10 direct dependents • 11 total dependents

This module implements the HTML Document Object Model by extending the HTML::Tree modules. The HTML::DOM class serves both as an HTML parser and as the document class. The following DOM modules are currently supported: Feature Version (aka level) ---...

SPROUT/HTML-DOM-0.058 - 03 Feb 2018 06:12:46 UTC

HTML::DOM::Attr - A Perl class for representing attribute nodes in an HTML DOM tree River stage two • 10 direct dependents • 11 total dependents

This class is used for attribute nodes in an HTML::DOM tree. It implements the Node and Attr DOM interfaces and inherits from HTML::DOM::EventTarget. An attribute node stringifies to its value. As a boolean it is true, even if its value is false....

SPROUT/HTML-DOM-0.058 - 03 Feb 2018 06:12:46 UTC

HTML::DOM::View - A Perl class for representing an HTML Document's 'defaultView' River stage two • 10 direct dependents • 11 total dependents

This class is used for an HTML::DOM object's 'default view.' It implements the AbstractView DOM interface. It is an inside-out class, so you can subclass it without being constrained to any particular object structure....

SPROUT/HTML-DOM-0.058 - 03 Feb 2018 06:12:46 UTC

HTML::DOM::Text - A Perl class for representing text nodes in an HTML DOM tree River stage two • 10 direct dependents • 11 total dependents

This class implements the Text interface for HTML::DOM. It inherits from HTML::DOM::CharacterData, which inherits from HTML::DOM::Node....

SPROUT/HTML-DOM-0.058 - 03 Feb 2018 06:12:46 UTC

HTML::DOM::Node - A Perl class for representing the nodes of an HTML DOM tree River stage two • 10 direct dependents • 11 total dependents

This is the base class for all nodes in an HTML::DOM tree. (See "CLASSES AND DOM INTERFACES" in HTML::DOM.) It implements the Node interface, and, indirectly, the EventTarget interface (see HTML::DOM::EventTarget....

SPROUT/HTML-DOM-0.058 - 03 Feb 2018 06:12:46 UTC

HTML::DOM::Event - A Perl class for HTML DOM Event objects River stage two • 10 direct dependents • 11 total dependents

This class provides event objects for HTML::DOM, which objects are passed to event handlers when they are triggered. It implements the W3C DOM's Event interface and serves as a base class for more specific event classes....

SPROUT/HTML-DOM-0.058 - 03 Feb 2018 06:12:46 UTC

HTML::DOM::Comment - A Perl class for representing text nodes in an HTML DOM tree River stage two • 10 direct dependents • 11 total dependents

This class implements the Comment interface for HTML::DOM. It inherits from HTML::DOM::CharacterData, which inherits from HTML::DOM::Node....

SPROUT/HTML-DOM-0.058 - 03 Feb 2018 06:12:46 UTC

HTML::DOM::Element - A Perl class for representing elements in an HTML DOM tree River stage two • 10 direct dependents • 11 total dependents

This class represents elements in an HTML::DOM tree. It is the base class for other element classes (see "CLASSES AND DOM INTERFACES" in HTML::DOM.) It implements the Element and HTMLElement DOM interfaces....

SPROUT/HTML-DOM-0.058 - 03 Feb 2018 06:12:46 UTC

HTML::DOM::NodeList - Simple node list class for HTML::DOM River stage two • 10 direct dependents • 11 total dependents

This implements the NodeList interface as described in the W3C's DOM standard. In addition to the methods below, you can use a node list object as an array. This class actually only implements those node lists that are based on array references (as r...

SPROUT/HTML-DOM-0.058 - 03 Feb 2018 06:12:46 UTC

HTML::DOM::Event::UI - A Perl class for HTML DOM UIEvent objects River stage two • 10 direct dependents • 11 total dependents

This class provides UIEvent objects for HTML::DOM, which objects are passed to event handlers for certain event types when they are invoked. It inherits from HTML::DOM::Event....

SPROUT/HTML-DOM-0.058 - 03 Feb 2018 06:12:46 UTC

HTML::DOM::Interface - A list of HTML::DOM's interface members in machine-readable format River stage two • 10 direct dependents • 11 total dependents

The synopsis should tell you almost everything you need to know. But be warned that "$foo & TYPE" is meaningless when "$foo & METHOD" and "$foo & VOID" are both true. For more gory details, look at the source code. In fact, here it is:...

SPROUT/HTML-DOM-0.058 - 03 Feb 2018 06:12:46 UTC

HTML::DOM::Exception - The Exception interface for HTML::DOM River stage two • 10 direct dependents • 11 total dependents

This module implementations the W3C's DOMException and EventException interfaces. HTML::DOM::Exception objects stringify to the message passed to the constructer and numify to the error number (see below, under 'EXPORTS')....

SPROUT/HTML-DOM-0.058 - 03 Feb 2018 06:12:46 UTC

HTML::DOM::Element::A - A Perl class for representing 'a' elements in an HTML DOM tree River stage two • 10 direct dependents • 11 total dependents

This class implements 'a' elements in HTML::DOM trees. It implements the HTMLAnchorElement DOM interface and inherits from HTML::DOM::Element (q.v.)....

SPROUT/HTML-DOM-0.058 - 03 Feb 2018 06:12:46 UTC

HTML::DOM::Collection - A Perl implementation of the HTMLCollection interface River stage two • 10 direct dependents • 11 total dependents

This implements the HTMLCollection interface as described in the W3C's DOM standard. This class is actually just a wrapper around the NodeList classes. In addition to the methods below, you can use a collection as a hash and as an array (both read-on...

SPROUT/HTML-DOM-0.058 - 03 Feb 2018 06:12:46 UTC

HTML::DOM::Element::P - A Perl class for representing 'p' elements in an HTML DOM tree River stage two • 10 direct dependents • 11 total dependents

This class implements 'p' elements in an HTML::DOM tree. It implements the HTMLParagraphElement DOM interface and inherits from HTML::DOM::Element (q.v.)....

SPROUT/HTML-DOM-0.058 - 03 Feb 2018 06:12:46 UTC

HTML::DOM::Element::HR - A Perl class for representing 'hr' elements in an HTML DOM tree River stage two • 10 direct dependents • 11 total dependents

This class implements 'hr' elements in HTML::DOM trees. It implements the HTMLHRElement DOM interface and inherits from HTML::DOM::Element (q.v.)....

SPROUT/HTML-DOM-0.058 - 03 Feb 2018 06:12:46 UTC

HTML::DOM::Element::UL - A Perl class for representing 'ul' elements in an HTML DOM tree River stage two • 10 direct dependents • 11 total dependents

This class implements 'ul' elements in an HTML::DOM tree. It implements the HTMLUListElement DOM interface and inherits from HTML::DOM::Element (q.v.)....

SPROUT/HTML-DOM-0.058 - 03 Feb 2018 06:12:46 UTC

HTML::DOM::Element::LI - A Perl class for representing 'li' elements in an HTML DOM tree River stage two • 10 direct dependents • 11 total dependents

This class implements 'li' elements in an HTML::DOM tree. It implements the HTMLLIElement DOM interface and inherits from HTML::DOM::Element (q.v.)....

SPROUT/HTML-DOM-0.058 - 03 Feb 2018 06:12:46 UTC

HTML::DOM::Element::Br - A Perl class for representing 'br' elements in an HTML DOM tree River stage two • 10 direct dependents • 11 total dependents

This class implements 'br' elements in an HTML::DOM tree. It implements the HTMLBRElement DOM interface and inherits from HTML::DOM::Element (q.v.)....

SPROUT/HTML-DOM-0.058 - 03 Feb 2018 06:12:46 UTC

HTML::DOM::EventTarget - Perl implementation of the DOM EventTarget interface River stage two • 10 direct dependents • 11 total dependents

This class provides the W3C's EventTarget DOM interface. It serves as a base class for HTML::DOM::Node and HTML::DOM::Attr, but any class you write can inherit from it. This class provides the methods listed under "METHODS", but will also use a few o...

SPROUT/HTML-DOM-0.058 - 03 Feb 2018 06:12:46 UTC
78 results (0.043 seconds)