HTML::DOM::Implementation - HTML::DOM's 'DOMImplementation' object


HTML-DOM documentation  | view source Contained in the HTML-DOM distribution.

Index


NAME

Top

HTML::DOM::Implementation - HTML::DOM's 'DOMImplementation' object

SYNOPSIS

Top

  $impl = $HTML::DOM::Implementation::it;
  $impl->hasFeature('HTML', '1.0'); # returns true
  $impl->hasFeature('XML' , '1.0'); # returns false

DESCRIPTION

Top

This singleton class provides HTML::DOM's 'DOMImplementation' object. There is no constructor. The object itself is accessible as $HTML::DOM::Implementation::it or HTML::DOM->implementation.

THE ONLY METHOD

Top

$implementation->hasFeature( $name, $version )

This returns true or false depending on whether the feature is supported. $name is case-tolerant. $version is optional. The supported features are listed under DESCRIPTION in HTML::DOM. If $version is '1.0', this method only returns true for 'Core' and 'HTML'.

SEE ALSO

Top

HTML::DOM


HTML-DOM documentation  | view source Contained in the HTML-DOM distribution.