HTML::DOM::Element::Link - A Perl class for representing 'link' elements in an HTML DOM tree
use HTML::DOM; $doc = HTML::DOM->new; $elem = $doc->createElement('link');
$elem->charset('iso-8859-1'); # set attribute $elem->href; # get attribute $elem->tagName; # etc
This class implements 'link' elements in an HTML::DOM tree. It implements the HTMLLinkElement DOM interface and inherits from the HTML::DOM::Element manpage (q.v.).
In addition to those inherited from HTML::DOM::Element and its superclasses, this class implements the following DOM methods:
Returns a boolean. Pass an argument to set it.
Each of these returns the corresponding HTML attribute. If you pass an argument, it will become the new value of the attribute, and the old value will be returned.
Unless the 'rel' attribute is set to 'stylesheet', this returns null.
Otherwise it returns a style sheet (a the CSS::DOM manpage object), empty by default
(since
fetching URLs is
something HTML::DOM doesn't do). You can set the contents of the style
sheet by passing CSS code to its read_string method.