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

NAME

HTML::DOM::View - A Perl class for representing an HTML Document's 'defaultView'

SYNOPSIS

  use HTML::DOM;
  $doc = HTML::DOM->new;

  $view = $doc->defaultView;
  $view->document; # returns $doc

DESCRIPTION

This class is used for an HTML::DOM object's 'default view.' It implements the AbstractView DOM interface.

METHODS

$view = new HTML::DOM::View $doc;

Normally you don't need to call this constructor, but it's listed here for completeness' sake.

$view->document

Returns the document associated with the view.

SEE ALSO

HTML::DOM