NAME
HTML::HTML5::DOM::HTMLScriptElement - implementation of the HTMLScriptElement interface of the HTML DOM
DESCRIPTION
HTML::HTML5::DOM::HTMLScriptElement is an implementation of the HTMLScriptElement interface of the HTML DOM. See HTML::HTML5::DOM for a list of the conventions that have been used when translating the DOM to Perl.
HTML Elements
This class applies to the following HTML elements.
{http://www.w3.org/1999/xhtml}script
Inheritance
HTML::HTML5::DOM::HTMLScriptElement inherits methods from the following Perl classes.
Additional Methods
As well as its inherited methods, this class provides the following methods.
async
Called with no arguments, is a shortcut for
$elem->hasAttribute("async")
. If called with a true argument, willsetAttribute
; if called with a false argument willremoveAttribute
.charset
Called with no arguments, is a shortcut for
$elem->getAttribute("charset")
. Called with a defined argument, acts assetAttribute
. Called with undef as an argument, acts asremoveAttribute
.defer
Called with no arguments, is a shortcut for
$elem->hasAttribute("defer")
. If called with a true argument, willsetAttribute
; if called with a false argument willremoveAttribute
.src
Called with no arguments, is a shortcut for
$elem->getAttribute("src")
but as a blessed URI object. Called with a defined argument, acts assetAttribute
. Called with undef as an argument, acts asremoveAttribute
.text
Called with no arguments, acts as an alias for
$elem->textContent
. Called with an arguments, sets the content for the element. Any existing content will be overwritten. If multiple arguments are provided, they'll be joined using "\n".type
Called with no arguments, is a shortcut for
$elem->getAttribute("type")
. Called with a defined argument, acts assetAttribute
. Called with undef as an argument, acts asremoveAttribute
.
BUGS
http://rt.cpan.org/Dist/Display.html?Queue=HTML-HTML5-DOM.
SEE ALSO
AUTHOR
Toby Inkster <tobyink@cpan.org>.
COPYRIGHT AND LICENCE
This software is copyright (c) 2012, 2014 by Toby Inkster.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
DISCLAIMER OF WARRANTIES
THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.