| org.w3c.dom.css.CSS2PlayDuring
CSS2PlayDuring | public interface CSS2PlayDuring extends CSSValue(Code) | | The CSS2PlayDuring interface represents the play-during CSS
Level 2 property.
For this extension of the CSSValue interface, the
valueType attribute of the underlying CSSValue
interface shall be CSS_CUSTOM .
See also the Document Object Model (DOM) Level 2 Specification.
since: DOM Level 2 |
getMix | public boolean getMix()(Code) | | true if the sound should be mixed. It will be ignored if
the attribute doesn't contain a uri .
exception: DOMException - NO_MODIFICATION_ALLOWED_ERR: Raised if this declaration is readonly. |
getPlayDuringIdentifier | public String getPlayDuringIdentifier()(Code) | | One of "inherit" , "auto" ,
"none" or the empty string if the
playDuringType is CSS_UNKNOWN . On setting,
it will set the uri to the empty string and
mix and repeat to false .
exception: DOMException - SYNTAX_ERR: Raised if the specified CSS string value has a syntax error and is unparsable. NO_MODIFICATION_ALLOWED_ERR: Raised if this declaration is readonly. |
getPlayDuringType | public short getPlayDuringType()(Code) | | A code defining the type of the value as defined in
CSSvalue . It would be one of CSS_UNKNOWN or
CSS_IDENT .
|
getRepeat | public boolean getRepeat()(Code) | | true if the sound should be repeated. It will be ignored
if the attribute doesn't contain a uri .
exception: DOMException - NO_MODIFICATION_ALLOWED_ERR: Raised if this declaration is readonly. |
getUri | public String getUri()(Code) | | The sound specified by the uri . It will set the
playDuringType attribute to CSS_UNKNOWN .
exception: DOMException - SYNTAX_ERR: Raised if the specified CSS string value has a syntax error and is unparsable. NO_MODIFICATION_ALLOWED_ERR: Raised if this declaration is readonly. |
|
|