The following interfaces are defined below: SVGStyleElement.


Interface SVGStyleElement

The SVGStyleElement interface corresponds to the 'style' element.


IDL Definition
interface SVGStyleElement : SVGElement { 
           attribute DOMString xmlspace;
                       // raises DOMException on setting
           attribute DOMString type;
                       // raises DOMException on setting
           attribute DOMString media;
                       // raises DOMException on setting
           attribute DOMString title;
                       // raises DOMException on setting
};

Attributes
DOMString xmlspace
Corresponds to attribute xml:space on the given element.
Exceptions on setting
DOMException
NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly.
DOMString type
Corresponds to attribute type on the given 'style' element.
Exceptions on setting
DOMException
NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly.
DOMString media
Corresponds to attribute media on the given 'style' element.
Exceptions on setting
DOMException
NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly.
DOMString title
Corresponds to attribute title on the given 'style' element.
Exceptions on setting
DOMException
NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly.