Interface CSS2Properties
- All Known Implementing Classes:
AbstractCSS2Properties
,ComputedCSS2Properties
,CSS2PropertiesImpl
,LocalCSS2Properties
CSS2Properties
interface represents a convenience
mechanism for retrieving and setting properties within a
CSSStyleDeclaration
. The attributes of this interface
correspond to all the properties specified in CSS2. Getting an attribute
of this interface is equivalent to calling the
getPropertyValue
method of the
CSSStyleDeclaration
interface. Setting an attribute of this
interface is equivalent to calling the setProperty
method of
the CSSStyleDeclaration
interface.
A conformant implementation of the CSS module is not required to
implement the CSS2Properties
interface. If an implementation
does implement this interface, the expectation is that language-specific
methods can be used to cast from an instance of the
CSSStyleDeclaration
interface to the
CSS2Properties
interface.
If an implementation does implement this interface, it is expected to
understand the specific syntax of the shorthand properties, and apply
their semantics; when the margin
property is set, for
example, the marginTop
, marginRight
,
marginBottom
and marginLeft
properties are
actually being set by the underlying implementation.
When dealing with CSS "shorthand" properties, the shorthand properties should be decomposed into their component longhand properties as appropriate, and when querying for their value, the form returned should be the shortest form exactly equivalent to the declarations made in the ruleset. However, if there is no shorthand declaration that could be added to the ruleset without changing in any way the rules already declared in the ruleset (i.e., by adding longhand rules that were previously not declared in the ruleset), then the empty string should be returned for the shorthand property.
For example, querying for the font
property should not
return "normal normal normal 14pt/normal Arial, sans-serif", when "14pt
Arial, sans-serif" suffices. (The normals are initial values, and are
implied by use of the longhand property.)
If the values for all the longhand properties that compose a particular
string are the initial values, then a string consisting of all the
initial values should be returned (e.g. a border-width
value
of "medium" should be returned as such, not as "").
For some shorthand properties that take missing values from other
sides, such as the margin
, padding
, and
border-[width|style|color]
properties, the minimum number of
sides possible should be used; i.e., "0px 10px" will be returned instead
of "0px 10px 0px 10px".
If the value of a shorthand property can not be decomposed into its
component longhand properties, as is the case for the font
property with a value of "menu", querying for the values of the component
longhand properties should return the empty string.
See also the Document Object Model (DOM) Level 2 Style Specification.
- Since:
- DOM Level 2
-
Method Summary
Modifier and TypeMethodDescriptionSee the azimuth property definition in CSS2.See the background property definition in CSS2.See the background-attachment property definition in CSS2.See the background-color property definition in CSS2.See the background-image property definition in CSS2.See the background-position property definition in CSS2.See the background-repeat property definition in CSS2.See the border property definition in CSS2.See the border-bottom property definition in CSS2.See the border-bottom-color property definition in CSS2.See the border-bottom-style property definition in CSS2.See the border-bottom-width property definition in CSS2.See the border-collapse property definition in CSS2.See the border-color property definition in CSS2.See the border-left property definition in CSS2.See the border-left-color property definition in CSS2.See the border-left-style property definition in CSS2.See the border-left-width property definition in CSS2.See the border-right property definition in CSS2.See the border-right-color property definition in CSS2.See the border-right-style property definition in CSS2.See the border-right-width property definition in CSS2.See the border-spacing property definition in CSS2.See the border-style property definition in CSS2.See the border-top property definition in CSS2.See the border-top-color property definition in CSS2.See the border-top-style property definition in CSS2.See the border-top-width property definition in CSS2.See the border-width property definition in CSS2.See the bottom property definition in CSS2.See the caption-side property definition in CSS2.getClear()
See the clear property definition in CSS2.getClip()
See the clip property definition in CSS2.getColor()
See the color property definition in CSS2.See the content property definition in CSS2.See the counter-increment property definition in CSS2.See the counter-reset property definition in CSS2.See the float property definition in CSS2.getCue()
See the cue property definition in CSS2.See the cue-after property definition in CSS2.See the cue-before property definition in CSS2.See the cursor property definition in CSS2.See the direction property definition in CSS2.See the display property definition in CSS2.See the elevation property definition in CSS2.See the empty-cells property definition in CSS2.getFont()
See the font property definition in CSS2.See the font-family property definition in CSS2.See the font-size property definition in CSS2.See the font-size-adjust property definition in CSS2.See the font-stretch property definition in CSS2.See the font-style property definition in CSS2.See the font-variant property definition in CSS2.See the font-weight property definition in CSS2.See the height property definition in CSS2.getLeft()
See the left property definition in CSS2.See the letter-spacing property definition in CSS2.See the line-height property definition in CSS2.See the list-style property definition in CSS2.See the list-style-image property definition in CSS2.See the list-style-position property definition in CSS2.See the list-style-type property definition in CSS2.See the margin property definition in CSS2.See the margin-bottom property definition in CSS2.See the margin-left property definition in CSS2.See the margin-right property definition in CSS2.See the margin-top property definition in CSS2.See the marker-offset property definition in CSS2.getMarks()
See the marks property definition in CSS2.See the max-height property definition in CSS2.See the max-width property definition in CSS2.See the min-height property definition in CSS2.See the min-width property definition in CSS2.See the orphans property definition in CSS2.See the outline property definition in CSS2.See the outline-color property definition in CSS2.See the outline-style property definition in CSS2.See the outline-width property definition in CSS2.See the overflow property definition in CSS2.See the padding property definition in CSS2.See the padding-bottom property definition in CSS2.See the padding-left property definition in CSS2.See the padding-right property definition in CSS2.See the padding-top property definition in CSS2.getPage()
See the page property definition in CSS2.See the page-break-after property definition in CSS2.See the page-break-before property definition in CSS2.See the page-break-inside property definition in CSS2.getPause()
See the pause property definition in CSS2.See the pause-after property definition in CSS2.See the pause-before property definition in CSS2.getPitch()
See the pitch property definition in CSS2.See the pitch-range property definition in CSS2.See the play-during property definition in CSS2.See the position property definition in CSS2.See the quotes property definition in CSS2.See the richness property definition in CSS2.getRight()
See the right property definition in CSS2.getSize()
See the size property definition in CSS2.getSpeak()
See the speak property definition in CSS2.See the speak-header property definition in CSS2.See the speak-numeral property definition in CSS2.See the speak-punctuation property definition in CSS2.See the speech-rate property definition in CSS2.See the stress property definition in CSS2.See the table-layout property definition in CSS2.See the text-align property definition in CSS2.See the text-decoration property definition in CSS2.See the text-indent property definition in CSS2.See the text-shadow property definition in CSS2.See the text-transform property definition in CSS2.getTop()
See the top property definition in CSS2.See the unicode-bidi property definition in CSS2.See the vertical-align property definition in CSS2.See the visibility property definition in CSS2.See the voice-family property definition in CSS2.See the volume property definition in CSS2.See the white-space property definition in CSS2.See the widows property definition in CSS2.getWidth()
See the width property definition in CSS2.See the word-spacing property definition in CSS2.See the z-index property definition in CSS2.void
setAzimuth
(String azimuth) void
setBackground
(String background) void
setBackgroundAttachment
(String backgroundAttachment) void
setBackgroundColor
(String backgroundColor) void
setBackgroundImage
(String backgroundImage) void
setBackgroundPosition
(String backgroundPosition) void
setBackgroundRepeat
(String backgroundRepeat) void
void
setBorderBottom
(String borderBottom) void
setBorderBottomColor
(String borderBottomColor) void
setBorderBottomStyle
(String borderBottomStyle) void
setBorderBottomWidth
(String borderBottomWidth) void
setBorderCollapse
(String borderCollapse) void
setBorderColor
(String borderColor) void
setBorderLeft
(String borderLeft) void
setBorderLeftColor
(String borderLeftColor) void
setBorderLeftStyle
(String borderLeftStyle) void
setBorderLeftWidth
(String borderLeftWidth) void
setBorderRight
(String borderRight) void
setBorderRightColor
(String borderRightColor) void
setBorderRightStyle
(String borderRightStyle) void
setBorderRightWidth
(String borderRightWidth) void
setBorderSpacing
(String borderSpacing) void
setBorderStyle
(String borderStyle) void
setBorderTop
(String borderTop) void
setBorderTopColor
(String borderTopColor) void
setBorderTopStyle
(String borderTopStyle) void
setBorderTopWidth
(String borderTopWidth) void
setBorderWidth
(String borderWidth) void
void
setCaptionSide
(String captionSide) void
void
void
void
setContent
(String content) void
setCounterIncrement
(String counterIncrement) void
setCounterReset
(String counterReset) void
setCssFloat
(String cssFloat) void
void
setCueAfter
(String cueAfter) void
setCueBefore
(String cueBefore) void
void
setDirection
(String direction) void
setDisplay
(String display) void
setElevation
(String elevation) void
setEmptyCells
(String emptyCells) void
void
setFontFamily
(String fontFamily) void
setFontSize
(String fontSize) void
setFontSizeAdjust
(String fontSizeAdjust) void
setFontStretch
(String fontStretch) void
setFontStyle
(String fontStyle) void
setFontVariant
(String fontVariant) void
setFontWeight
(String fontWeight) void
void
void
setLetterSpacing
(String letterSpacing) void
setLineHeight
(String lineHeight) void
setListStyle
(String listStyle) void
setListStyleImage
(String listStyleImage) void
setListStylePosition
(String listStylePosition) void
setListStyleType
(String listStyleType) void
void
setMarginBottom
(String marginBottom) void
setMarginLeft
(String marginLeft) void
setMarginRight
(String marginRight) void
setMarginTop
(String marginTop) void
setMarkerOffset
(String markerOffset) void
void
setMaxHeight
(String maxHeight) void
setMaxWidth
(String maxWidth) void
setMinHeight
(String minHeight) void
setMinWidth
(String minWidth) void
setOrphans
(String orphans) void
setOutline
(String outline) void
setOutlineColor
(String outlineColor) void
setOutlineStyle
(String outlineStyle) void
setOutlineWidth
(String outlineWidth) void
setOverflow
(String overflow) void
setPadding
(String padding) void
setPaddingBottom
(String paddingBottom) void
setPaddingLeft
(String paddingLeft) void
setPaddingRight
(String paddingRight) void
setPaddingTop
(String paddingTop) void
void
setPageBreakAfter
(String pageBreakAfter) void
setPageBreakBefore
(String pageBreakBefore) void
setPageBreakInside
(String pageBreakInside) void
void
setPauseAfter
(String pauseAfter) void
setPauseBefore
(String pauseBefore) void
void
setPitchRange
(String pitchRange) void
setPlayDuring
(String playDuring) void
setPosition
(String position) void
void
setRichness
(String richness) void
void
void
void
setSpeakHeader
(String speakHeader) void
setSpeakNumeral
(String speakNumeral) void
setSpeakPunctuation
(String speakPunctuation) void
setSpeechRate
(String speechRate) void
void
setTableLayout
(String tableLayout) void
setTextAlign
(String textAlign) void
setTextDecoration
(String textDecoration) void
setTextIndent
(String textIndent) void
setTextShadow
(String textShadow) void
setTextTransform
(String textTransform) void
void
setUnicodeBidi
(String unicodeBidi) void
setVerticalAlign
(String verticalAlign) void
setVisibility
(String visibility) void
setVoiceFamily
(String voiceFamily) void
void
setWhiteSpace
(String whiteSpace) void
void
void
setWordSpacing
(String wordSpacing) void
-
Method Details
-
getAzimuth
String getAzimuth()See the azimuth property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setAzimuth
- Throws:
DOMException
-
getBackground
String getBackground()See the background property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBackground
- Throws:
DOMException
-
getBackgroundAttachment
String getBackgroundAttachment()See the background-attachment property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBackgroundAttachment
- Throws:
DOMException
-
getBackgroundColor
String getBackgroundColor()See the background-color property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBackgroundColor
- Throws:
DOMException
-
getBackgroundImage
String getBackgroundImage()See the background-image property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBackgroundImage
- Throws:
DOMException
-
getBackgroundPosition
String getBackgroundPosition()See the background-position property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBackgroundPosition
- Throws:
DOMException
-
getBackgroundRepeat
String getBackgroundRepeat()See the background-repeat property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBackgroundRepeat
- Throws:
DOMException
-
getBorder
String getBorder()See the border property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorder
- Throws:
DOMException
-
getBorderCollapse
String getBorderCollapse()See the border-collapse property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderCollapse
- Throws:
DOMException
-
getBorderColor
String getBorderColor()See the border-color property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderColor
- Throws:
DOMException
-
getBorderSpacing
String getBorderSpacing()See the border-spacing property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderSpacing
- Throws:
DOMException
-
getBorderStyle
String getBorderStyle()See the border-style property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderStyle
- Throws:
DOMException
-
getBorderTop
String getBorderTop()See the border-top property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderTop
- Throws:
DOMException
-
getBorderRight
String getBorderRight()See the border-right property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderRight
- Throws:
DOMException
-
getBorderBottom
String getBorderBottom()See the border-bottom property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderBottom
- Throws:
DOMException
-
getBorderLeft
String getBorderLeft()See the border-left property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderLeft
- Throws:
DOMException
-
getBorderTopColor
String getBorderTopColor()See the border-top-color property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderTopColor
- Throws:
DOMException
-
getBorderRightColor
String getBorderRightColor()See the border-right-color property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderRightColor
- Throws:
DOMException
-
getBorderBottomColor
String getBorderBottomColor()See the border-bottom-color property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderBottomColor
- Throws:
DOMException
-
getBorderLeftColor
String getBorderLeftColor()See the border-left-color property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderLeftColor
- Throws:
DOMException
-
getBorderTopStyle
String getBorderTopStyle()See the border-top-style property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderTopStyle
- Throws:
DOMException
-
getBorderRightStyle
String getBorderRightStyle()See the border-right-style property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderRightStyle
- Throws:
DOMException
-
getBorderBottomStyle
String getBorderBottomStyle()See the border-bottom-style property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderBottomStyle
- Throws:
DOMException
-
getBorderLeftStyle
String getBorderLeftStyle()See the border-left-style property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderLeftStyle
- Throws:
DOMException
-
getBorderTopWidth
String getBorderTopWidth()See the border-top-width property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderTopWidth
- Throws:
DOMException
-
getBorderRightWidth
String getBorderRightWidth()See the border-right-width property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderRightWidth
- Throws:
DOMException
-
getBorderBottomWidth
String getBorderBottomWidth()See the border-bottom-width property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderBottomWidth
- Throws:
DOMException
-
getBorderLeftWidth
String getBorderLeftWidth()See the border-left-width property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderLeftWidth
- Throws:
DOMException
-
getBorderWidth
String getBorderWidth()See the border-width property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderWidth
- Throws:
DOMException
-
getBottom
String getBottom()See the bottom property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBottom
- Throws:
DOMException
-
getCaptionSide
String getCaptionSide()See the caption-side property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setCaptionSide
- Throws:
DOMException
-
getClear
String getClear()See the clear property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setClear
- Throws:
DOMException
-
getClip
String getClip()See the clip property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setClip
- Throws:
DOMException
-
getColor
String getColor()See the color property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setColor
- Throws:
DOMException
-
getContent
String getContent()See the content property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setContent
- Throws:
DOMException
-
getCounterIncrement
String getCounterIncrement()See the counter-increment property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setCounterIncrement
- Throws:
DOMException
-
getCounterReset
String getCounterReset()See the counter-reset property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setCounterReset
- Throws:
DOMException
-
getCue
String getCue()See the cue property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setCue
- Throws:
DOMException
-
getCueAfter
String getCueAfter()See the cue-after property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setCueAfter
- Throws:
DOMException
-
getCueBefore
String getCueBefore()See the cue-before property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setCueBefore
- Throws:
DOMException
-
getCursor
String getCursor()See the cursor property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setCursor
- Throws:
DOMException
-
getDirection
String getDirection()See the direction property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setDirection
- Throws:
DOMException
-
getDisplay
String getDisplay()See the display property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setDisplay
- Throws:
DOMException
-
getElevation
String getElevation()See the elevation property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setElevation
- Throws:
DOMException
-
getEmptyCells
String getEmptyCells()See the empty-cells property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setEmptyCells
- Throws:
DOMException
-
getCssFloat
String getCssFloat()See the float property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setCssFloat
- Throws:
DOMException
-
getFont
String getFont()See the font property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setFont
- Throws:
DOMException
-
getFontFamily
String getFontFamily()See the font-family property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setFontFamily
- Throws:
DOMException
-
getFontSize
String getFontSize()See the font-size property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setFontSize
- Throws:
DOMException
-
getFontSizeAdjust
String getFontSizeAdjust()See the font-size-adjust property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setFontSizeAdjust
- Throws:
DOMException
-
getFontStretch
String getFontStretch()See the font-stretch property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setFontStretch
- Throws:
DOMException
-
getFontStyle
String getFontStyle()See the font-style property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setFontStyle
- Throws:
DOMException
-
getFontVariant
String getFontVariant()See the font-variant property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setFontVariant
- Throws:
DOMException
-
getFontWeight
String getFontWeight()See the font-weight property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setFontWeight
- Throws:
DOMException
-
getHeight
String getHeight()See the height property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setHeight
- Throws:
DOMException
-
getLeft
String getLeft()See the left property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setLeft
- Throws:
DOMException
-
getLetterSpacing
String getLetterSpacing()See the letter-spacing property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setLetterSpacing
- Throws:
DOMException
-
getLineHeight
String getLineHeight()See the line-height property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setLineHeight
- Throws:
DOMException
-
getListStyle
String getListStyle()See the list-style property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setListStyle
- Throws:
DOMException
-
getListStyleImage
String getListStyleImage()See the list-style-image property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setListStyleImage
- Throws:
DOMException
-
getListStylePosition
String getListStylePosition()See the list-style-position property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setListStylePosition
- Throws:
DOMException
-
getListStyleType
String getListStyleType()See the list-style-type property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setListStyleType
- Throws:
DOMException
-
getMargin
String getMargin()See the margin property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setMargin
- Throws:
DOMException
-
getMarginTop
String getMarginTop()See the margin-top property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setMarginTop
- Throws:
DOMException
-
getMarginRight
String getMarginRight()See the margin-right property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setMarginRight
- Throws:
DOMException
-
getMarginBottom
String getMarginBottom()See the margin-bottom property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setMarginBottom
- Throws:
DOMException
-
getMarginLeft
String getMarginLeft()See the margin-left property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setMarginLeft
- Throws:
DOMException
-
getMarkerOffset
String getMarkerOffset()See the marker-offset property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setMarkerOffset
- Throws:
DOMException
-
getMarks
String getMarks()See the marks property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setMarks
- Throws:
DOMException
-
getMaxHeight
String getMaxHeight()See the max-height property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setMaxHeight
- Throws:
DOMException
-
getMaxWidth
String getMaxWidth()See the max-width property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setMaxWidth
- Throws:
DOMException
-
getMinHeight
String getMinHeight()See the min-height property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setMinHeight
- Throws:
DOMException
-
getMinWidth
String getMinWidth()See the min-width property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setMinWidth
- Throws:
DOMException
-
getOrphans
String getOrphans()See the orphans property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setOrphans
- Throws:
DOMException
-
getOutline
String getOutline()See the outline property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setOutline
- Throws:
DOMException
-
getOutlineColor
String getOutlineColor()See the outline-color property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setOutlineColor
- Throws:
DOMException
-
getOutlineStyle
String getOutlineStyle()See the outline-style property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setOutlineStyle
- Throws:
DOMException
-
getOutlineWidth
String getOutlineWidth()See the outline-width property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setOutlineWidth
- Throws:
DOMException
-
getOverflow
String getOverflow()See the overflow property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setOverflow
- Throws:
DOMException
-
getPadding
String getPadding()See the padding property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setPadding
- Throws:
DOMException
-
getPaddingTop
String getPaddingTop()See the padding-top property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setPaddingTop
- Throws:
DOMException
-
getPaddingRight
String getPaddingRight()See the padding-right property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setPaddingRight
- Throws:
DOMException
-
getPaddingBottom
String getPaddingBottom()See the padding-bottom property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setPaddingBottom
- Throws:
DOMException
-
getPaddingLeft
String getPaddingLeft()See the padding-left property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setPaddingLeft
- Throws:
DOMException
-
getPage
String getPage()See the page property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setPage
- Throws:
DOMException
-
getPageBreakAfter
String getPageBreakAfter()See the page-break-after property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setPageBreakAfter
- Throws:
DOMException
-
getPageBreakBefore
String getPageBreakBefore()See the page-break-before property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setPageBreakBefore
- Throws:
DOMException
-
getPageBreakInside
String getPageBreakInside()See the page-break-inside property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setPageBreakInside
- Throws:
DOMException
-
getPause
String getPause()See the pause property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setPause
- Throws:
DOMException
-
getPauseAfter
String getPauseAfter()See the pause-after property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setPauseAfter
- Throws:
DOMException
-
getPauseBefore
String getPauseBefore()See the pause-before property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setPauseBefore
- Throws:
DOMException
-
getPitch
String getPitch()See the pitch property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setPitch
- Throws:
DOMException
-
getPitchRange
String getPitchRange()See the pitch-range property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setPitchRange
- Throws:
DOMException
-
getPlayDuring
String getPlayDuring()See the play-during property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setPlayDuring
- Throws:
DOMException
-
getPosition
String getPosition()See the position property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setPosition
- Throws:
DOMException
-
getQuotes
String getQuotes()See the quotes property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setQuotes
- Throws:
DOMException
-
getRichness
String getRichness()See the richness property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setRichness
- Throws:
DOMException
-
getRight
String getRight()See the right property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setRight
- Throws:
DOMException
-
getSize
String getSize()See the size property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setSize
- Throws:
DOMException
-
getSpeak
String getSpeak()See the speak property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setSpeak
- Throws:
DOMException
-
getSpeakHeader
String getSpeakHeader()See the speak-header property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setSpeakHeader
- Throws:
DOMException
-
getSpeakNumeral
String getSpeakNumeral()See the speak-numeral property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setSpeakNumeral
- Throws:
DOMException
-
getSpeakPunctuation
String getSpeakPunctuation()See the speak-punctuation property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setSpeakPunctuation
- Throws:
DOMException
-
getSpeechRate
String getSpeechRate()See the speech-rate property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setSpeechRate
- Throws:
DOMException
-
getStress
String getStress()See the stress property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setStress
- Throws:
DOMException
-
getTableLayout
String getTableLayout()See the table-layout property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setTableLayout
- Throws:
DOMException
-
getTextAlign
String getTextAlign()See the text-align property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setTextAlign
- Throws:
DOMException
-
getTextDecoration
String getTextDecoration()See the text-decoration property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setTextDecoration
- Throws:
DOMException
-
getTextIndent
String getTextIndent()See the text-indent property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setTextIndent
- Throws:
DOMException
-
getTextShadow
String getTextShadow()See the text-shadow property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setTextShadow
- Throws:
DOMException
-
getTextTransform
String getTextTransform()See the text-transform property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setTextTransform
- Throws:
DOMException
-
getTop
String getTop()See the top property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setTop
- Throws:
DOMException
-
getUnicodeBidi
String getUnicodeBidi()See the unicode-bidi property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setUnicodeBidi
- Throws:
DOMException
-
getVerticalAlign
String getVerticalAlign()See the vertical-align property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setVerticalAlign
- Throws:
DOMException
-
getVisibility
String getVisibility()See the visibility property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setVisibility
- Throws:
DOMException
-
getVoiceFamily
String getVoiceFamily()See the voice-family property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setVoiceFamily
- Throws:
DOMException
-
getVolume
String getVolume()See the volume property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setVolume
- Throws:
DOMException
-
getWhiteSpace
String getWhiteSpace()See the white-space property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setWhiteSpace
- Throws:
DOMException
-
getWidows
String getWidows()See the widows property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setWidows
- Throws:
DOMException
-
getWidth
String getWidth()See the width property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setWidth
- Throws:
DOMException
-
getWordSpacing
String getWordSpacing()See the word-spacing property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setWordSpacing
- Throws:
DOMException
-
getZIndex
String getZIndex()See the z-index property definition in CSS2.- Throws:
DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setZIndex
- Throws:
DOMException
-