GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
HTML::DOM::View(3) User Contributed Perl Documentation HTML::DOM::View(3)

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

Version 0.058

  use HTML::DOM;
  $doc = HTML::DOM->new;
  $view = new MyView;
  
  $doc->defaultView($view);
  
  
  package MyView;
  BEGIN { @ISA = 'HTML::DOM::View'; }
  use HTML::DOM::View;

  sub new {
      my $self = bless {}, shift; # doesn't have to be a hash
      my $doc = shift;
      $self->document($doc);
      return $self
  }

  # ...

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.

$view->document
Returns the document associated with the view.

You may pass an argument to set it, in which case the old value is returned. This attribute holds a weak reference to the object.

$view->getComputedStyle( $elem )
$view->getComputedStyle( $elem, $pseudo_elem )
Returns the computed style as a CSS::DOM::Style object. $pseudo_elem is the name of the pseudo-element, with or without the initial colons (1 or 2).

$view->ua_style_sheet( $string )
$view->user_style_sheet( $string )
These are called by "getComputedStyle" and are expected to return the user agent and user style sheets, respectively, as CSS::DOM objects.

HTML::DOM
2018-02-02 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.