Interface CSS2Properties


public interface CSS2Properties
The 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:
1.4, DOM Level 2
  • Method Details Link icon

    • getAzimuth Link icon

      String getAzimuth()
      See the azimuth property definition in CSS2.
    • setAzimuth Link icon

      void setAzimuth(String azimuth) throws DOMException
      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.
    • getBackground Link icon

      String getBackground()
      See the background property definition in CSS2.
    • setBackground Link icon

      void setBackground(String background) throws DOMException
      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.
    • getBackgroundAttachment Link icon

      String getBackgroundAttachment()
      See the background-attachment property definition in CSS2.
    • setBackgroundAttachment Link icon

      void setBackgroundAttachment(String backgroundAttachment) throws DOMException
      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.
    • getBackgroundColor Link icon

      String getBackgroundColor()
      See the background-color property definition in CSS2.
    • setBackgroundColor Link icon

      void setBackgroundColor(String backgroundColor) throws DOMException
      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.
    • getBackgroundImage Link icon

      String getBackgroundImage()
      See the background-image property definition in CSS2.
    • setBackgroundImage Link icon

      void setBackgroundImage(String backgroundImage) throws DOMException
      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.
    • getBackgroundPosition Link icon

      String getBackgroundPosition()
      See the background-position property definition in CSS2.
    • setBackgroundPosition Link icon

      void setBackgroundPosition(String backgroundPosition) throws DOMException
      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.
    • getBackgroundRepeat Link icon

      String getBackgroundRepeat()
      See the background-repeat property definition in CSS2.
    • setBackgroundRepeat Link icon

      void setBackgroundRepeat(String backgroundRepeat) throws DOMException
      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.
    • getBorder Link icon

      String getBorder()
      See the border property definition in CSS2.
    • setBorder Link icon

      void setBorder(String border) throws DOMException
      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.
    • getBorderCollapse Link icon

      String getBorderCollapse()
      See the border-collapse property definition in CSS2.
    • setBorderCollapse Link icon

      void setBorderCollapse(String borderCollapse) throws DOMException
      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.
    • getBorderColor Link icon

      String getBorderColor()
      See the border-color property definition in CSS2.
    • setBorderColor Link icon

      void setBorderColor(String borderColor) throws DOMException
      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.
    • getBorderSpacing Link icon

      String getBorderSpacing()
      See the border-spacing property definition in CSS2.
    • setBorderSpacing Link icon

      void setBorderSpacing(String borderSpacing) throws DOMException
      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.
    • getBorderStyle Link icon

      String getBorderStyle()
      See the border-style property definition in CSS2.
    • setBorderStyle Link icon

      void setBorderStyle(String borderStyle) throws DOMException
      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.
    • getBorderTop Link icon

      String getBorderTop()
      See the border-top property definition in CSS2.
    • setBorderTop Link icon

      void setBorderTop(String borderTop) throws DOMException
      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.
    • getBorderRight Link icon

      String getBorderRight()
      See the border-right property definition in CSS2.
    • setBorderRight Link icon

      void setBorderRight(String borderRight) throws DOMException
      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.
    • getBorderBottom Link icon

      String getBorderBottom()
      See the border-bottom property definition in CSS2.
    • setBorderBottom Link icon

      void setBorderBottom(String borderBottom) throws DOMException
      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.
    • getBorderLeft Link icon

      String getBorderLeft()
      See the border-left property definition in CSS2.
    • setBorderLeft Link icon

      void setBorderLeft(String borderLeft) throws DOMException
      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.
    • getBorderTopColor Link icon

      String getBorderTopColor()
      See the border-top-color property definition in CSS2.
    • setBorderTopColor Link icon

      void setBorderTopColor(String borderTopColor) throws DOMException
      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.
    • getBorderRightColor Link icon

      String getBorderRightColor()
      See the border-right-color property definition in CSS2.
    • setBorderRightColor Link icon

      void setBorderRightColor(String borderRightColor) throws DOMException
      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.
    • getBorderBottomColor Link icon

      String getBorderBottomColor()
      See the border-bottom-color property definition in CSS2.
    • setBorderBottomColor Link icon

      void setBorderBottomColor(String borderBottomColor) throws DOMException
      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.
    • getBorderLeftColor Link icon

      String getBorderLeftColor()
      See the border-left-color property definition in CSS2.
    • setBorderLeftColor Link icon

      void setBorderLeftColor(String borderLeftColor) throws DOMException
      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.
    • getBorderTopStyle Link icon

      String getBorderTopStyle()
      See the border-top-style property definition in CSS2.
    • setBorderTopStyle Link icon

      void setBorderTopStyle(String borderTopStyle) throws DOMException
      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.
    • getBorderRightStyle Link icon

      String getBorderRightStyle()
      See the border-right-style property definition in CSS2.
    • setBorderRightStyle Link icon

      void setBorderRightStyle(String borderRightStyle) throws DOMException
      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.
    • getBorderBottomStyle Link icon

      String getBorderBottomStyle()
      See the border-bottom-style property definition in CSS2.
    • setBorderBottomStyle Link icon

      void setBorderBottomStyle(String borderBottomStyle) throws DOMException
      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.
    • getBorderLeftStyle Link icon

      String getBorderLeftStyle()
      See the border-left-style property definition in CSS2.
    • setBorderLeftStyle Link icon

      void setBorderLeftStyle(String borderLeftStyle) throws DOMException
      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.
    • getBorderTopWidth Link icon

      String getBorderTopWidth()
      See the border-top-width property definition in CSS2.
    • setBorderTopWidth Link icon

      void setBorderTopWidth(String borderTopWidth) throws DOMException
      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.
    • getBorderRightWidth Link icon

      String getBorderRightWidth()
      See the border-right-width property definition in CSS2.
    • setBorderRightWidth Link icon

      void setBorderRightWidth(String borderRightWidth) throws DOMException
      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.
    • getBorderBottomWidth Link icon

      String getBorderBottomWidth()
      See the border-bottom-width property definition in CSS2.
    • setBorderBottomWidth Link icon

      void setBorderBottomWidth(String borderBottomWidth) throws DOMException
      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.
    • getBorderLeftWidth Link icon

      String getBorderLeftWidth()
      See the border-left-width property definition in CSS2.
    • setBorderLeftWidth Link icon

      void setBorderLeftWidth(String borderLeftWidth) throws DOMException
      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.
    • getBorderWidth Link icon

      String getBorderWidth()
      See the border-width property definition in CSS2.
    • setBorderWidth Link icon

      void setBorderWidth(String borderWidth) throws DOMException
      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.
    • getBottom Link icon

      String getBottom()
      See the bottom property definition in CSS2.
    • setBottom Link icon

      void setBottom(String bottom) throws DOMException
      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.
    • getCaptionSide Link icon

      String getCaptionSide()
      See the caption-side property definition in CSS2.
    • setCaptionSide Link icon

      void setCaptionSide(String captionSide) throws DOMException
      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.
    • getClear Link icon

      String getClear()
      See the clear property definition in CSS2.
    • setClear Link icon

      void setClear(String clear) throws DOMException
      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.
    • getClip Link icon

      String getClip()
      See the clip property definition in CSS2.
    • setClip Link icon

      void setClip(String clip) throws DOMException
      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.
    • getColor Link icon

      String getColor()
      See the color property definition in CSS2.
    • setColor Link icon

      void setColor(String color) throws DOMException
      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.
    • getContent Link icon

      String getContent()
      See the content property definition in CSS2.
    • setContent Link icon

      void setContent(String content) throws DOMException
      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.
    • getCounterIncrement Link icon

      String getCounterIncrement()
      See the counter-increment property definition in CSS2.
    • setCounterIncrement Link icon

      void setCounterIncrement(String counterIncrement) throws DOMException
      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.
    • getCounterReset Link icon

      String getCounterReset()
      See the counter-reset property definition in CSS2.
    • setCounterReset Link icon

      void setCounterReset(String counterReset) throws DOMException
      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.
    • getCue Link icon

      String getCue()
      See the cue property definition in CSS2.
    • setCue Link icon

      void setCue(String cue) throws DOMException
      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.
    • getCueAfter Link icon

      String getCueAfter()
      See the cue-after property definition in CSS2.
    • setCueAfter Link icon

      void setCueAfter(String cueAfter) throws DOMException
      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.
    • getCueBefore Link icon

      String getCueBefore()
      See the cue-before property definition in CSS2.
    • setCueBefore Link icon

      void setCueBefore(String cueBefore) throws DOMException
      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.
    • getCursor Link icon

      String getCursor()
      See the cursor property definition in CSS2.
    • setCursor Link icon

      void setCursor(String cursor) throws DOMException
      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.
    • getDirection Link icon

      String getDirection()
      See the direction property definition in CSS2.
    • setDirection Link icon

      void setDirection(String direction) throws DOMException
      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.
    • getDisplay Link icon

      String getDisplay()
      See the display property definition in CSS2.
    • setDisplay Link icon

      void setDisplay(String display) throws DOMException
      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.
    • getElevation Link icon

      String getElevation()
      See the elevation property definition in CSS2.
    • setElevation Link icon

      void setElevation(String elevation) throws DOMException
      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.
    • getEmptyCells Link icon

      String getEmptyCells()
      See the empty-cells property definition in CSS2.
    • setEmptyCells Link icon

      void setEmptyCells(String emptyCells) throws DOMException
      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.
    • getCssFloat Link icon

      String getCssFloat()
      See the float property definition in CSS2.
    • setCssFloat Link icon

      void setCssFloat(String cssFloat) throws DOMException
      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.
    • getFont Link icon

      String getFont()
      See the font property definition in CSS2.
    • setFont Link icon

      void setFont(String font) throws DOMException
      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.
    • getFontFamily Link icon

      String getFontFamily()
      See the font-family property definition in CSS2.
    • setFontFamily Link icon

      void setFontFamily(String fontFamily) throws DOMException
      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.
    • getFontSize Link icon

      String getFontSize()
      See the font-size property definition in CSS2.
    • setFontSize Link icon

      void setFontSize(String fontSize) throws DOMException
      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.
    • getFontSizeAdjust Link icon

      String getFontSizeAdjust()
      See the font-size-adjust property definition in CSS2.
    • setFontSizeAdjust Link icon

      void setFontSizeAdjust(String fontSizeAdjust) throws DOMException
      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.
    • getFontStretch Link icon

      String getFontStretch()
      See the font-stretch property definition in CSS2.
    • setFontStretch Link icon

      void setFontStretch(String fontStretch) throws DOMException
      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.
    • getFontStyle Link icon

      String getFontStyle()
      See the font-style property definition in CSS2.
    • setFontStyle Link icon

      void setFontStyle(String fontStyle) throws DOMException
      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.
    • getFontVariant Link icon

      String getFontVariant()
      See the font-variant property definition in CSS2.
    • setFontVariant Link icon

      void setFontVariant(String fontVariant) throws DOMException
      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.
    • getFontWeight Link icon

      String getFontWeight()
      See the font-weight property definition in CSS2.
    • setFontWeight Link icon

      void setFontWeight(String fontWeight) throws DOMException
      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.
    • getHeight Link icon

      String getHeight()
      See the height property definition in CSS2.
    • setHeight Link icon

      void setHeight(String height) throws DOMException
      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.
    • getLeft Link icon

      String getLeft()
      See the left property definition in CSS2.
    • setLeft Link icon

      void setLeft(String left) throws DOMException
      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.
    • getLetterSpacing Link icon

      String getLetterSpacing()
      See the letter-spacing property definition in CSS2.
    • setLetterSpacing Link icon

      void setLetterSpacing(String letterSpacing) throws DOMException
      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.
    • getLineHeight Link icon

      String getLineHeight()
      See the line-height property definition in CSS2.
    • setLineHeight Link icon

      void setLineHeight(String lineHeight) throws DOMException
      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.
    • getListStyle Link icon

      String getListStyle()
      See the list-style property definition in CSS2.
    • setListStyle Link icon

      void setListStyle(String listStyle) throws DOMException
      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.
    • getListStyleImage Link icon

      String getListStyleImage()
      See the list-style-image property definition in CSS2.
    • setListStyleImage Link icon

      void setListStyleImage(String listStyleImage) throws DOMException
      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.
    • getListStylePosition Link icon

      String getListStylePosition()
      See the list-style-position property definition in CSS2.
    • setListStylePosition Link icon

      void setListStylePosition(String listStylePosition) throws DOMException
      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.
    • getListStyleType Link icon

      String getListStyleType()
      See the list-style-type property definition in CSS2.
    • setListStyleType Link icon

      void setListStyleType(String listStyleType) throws DOMException
      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.
    • getMargin Link icon

      String getMargin()
      See the margin property definition in CSS2.
    • setMargin Link icon

      void setMargin(String margin) throws DOMException
      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.
    • getMarginTop Link icon

      String getMarginTop()
      See the margin-top property definition in CSS2.
    • setMarginTop Link icon

      void setMarginTop(String marginTop) throws DOMException
      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.
    • getMarginRight Link icon

      String getMarginRight()
      See the margin-right property definition in CSS2.
    • setMarginRight Link icon

      void setMarginRight(String marginRight) throws DOMException
      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.
    • getMarginBottom Link icon

      String getMarginBottom()
      See the margin-bottom property definition in CSS2.
    • setMarginBottom Link icon

      void setMarginBottom(String marginBottom) throws DOMException
      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.
    • getMarginLeft Link icon

      String getMarginLeft()
      See the margin-left property definition in CSS2.
    • setMarginLeft Link icon

      void setMarginLeft(String marginLeft) throws DOMException
      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.
    • getMarkerOffset Link icon

      String getMarkerOffset()
      See the marker-offset property definition in CSS2.
    • setMarkerOffset Link icon

      void setMarkerOffset(String markerOffset) throws DOMException
      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.
    • getMarks Link icon

      String getMarks()
      See the marks property definition in CSS2.
    • setMarks Link icon

      void setMarks(String marks) throws DOMException
      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.
    • getMaxHeight Link icon

      String getMaxHeight()
      See the max-height property definition in CSS2.
    • setMaxHeight Link icon

      void setMaxHeight(String maxHeight) throws DOMException
      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.
    • getMaxWidth Link icon

      String getMaxWidth()
      See the max-width property definition in CSS2.
    • setMaxWidth Link icon

      void setMaxWidth(String maxWidth) throws DOMException
      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.
    • getMinHeight Link icon

      String getMinHeight()
      See the min-height property definition in CSS2.
    • setMinHeight Link icon

      void setMinHeight(String minHeight) throws DOMException
      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.
    • getMinWidth Link icon

      String getMinWidth()
      See the min-width property definition in CSS2.
    • setMinWidth Link icon

      void setMinWidth(String minWidth) throws DOMException
      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.
    • getOrphans Link icon

      String getOrphans()
      See the orphans property definition in CSS2.
    • setOrphans Link icon

      void setOrphans(String orphans) throws DOMException
      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.
    • getOutline Link icon

      String getOutline()
      See the outline property definition in CSS2.
    • setOutline Link icon

      void setOutline(String outline) throws DOMException
      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.
    • getOutlineColor Link icon

      String getOutlineColor()
      See the outline-color property definition in CSS2.
    • setOutlineColor Link icon

      void setOutlineColor(String outlineColor) throws DOMException
      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.
    • getOutlineStyle Link icon

      String getOutlineStyle()
      See the outline-style property definition in CSS2.
    • setOutlineStyle Link icon

      void setOutlineStyle(String outlineStyle) throws DOMException
      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.
    • getOutlineWidth Link icon

      String getOutlineWidth()
      See the outline-width property definition in CSS2.
    • setOutlineWidth Link icon

      void setOutlineWidth(String outlineWidth) throws DOMException
      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.
    • getOverflow Link icon

      String getOverflow()
      See the overflow property definition in CSS2.
    • setOverflow Link icon

      void setOverflow(String overflow) throws DOMException
      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.
    • getPadding Link icon

      String getPadding()
      See the padding property definition in CSS2.
    • setPadding Link icon

      void setPadding(String padding) throws DOMException
      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.
    • getPaddingTop Link icon

      String getPaddingTop()
      See the padding-top property definition in CSS2.
    • setPaddingTop Link icon

      void setPaddingTop(String paddingTop) throws DOMException
      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.
    • getPaddingRight Link icon

      String getPaddingRight()
      See the padding-right property definition in CSS2.
    • setPaddingRight Link icon

      void setPaddingRight(String paddingRight) throws DOMException
      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.
    • getPaddingBottom Link icon

      String getPaddingBottom()
      See the padding-bottom property definition in CSS2.
    • setPaddingBottom Link icon

      void setPaddingBottom(String paddingBottom) throws DOMException
      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.
    • getPaddingLeft Link icon

      String getPaddingLeft()
      See the padding-left property definition in CSS2.
    • setPaddingLeft Link icon

      void setPaddingLeft(String paddingLeft) throws DOMException
      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.
    • getPage Link icon

      String getPage()
      See the page property definition in CSS2.
    • setPage Link icon

      void setPage(String page) throws DOMException
      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.
    • getPageBreakAfter Link icon

      String getPageBreakAfter()
      See the page-break-after property definition in CSS2.
    • setPageBreakAfter Link icon

      void setPageBreakAfter(String pageBreakAfter) throws DOMException
      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.
    • getPageBreakBefore Link icon

      String getPageBreakBefore()
      See the page-break-before property definition in CSS2.
    • setPageBreakBefore Link icon

      void setPageBreakBefore(String pageBreakBefore) throws DOMException
      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.
    • getPageBreakInside Link icon

      String getPageBreakInside()
      See the page-break-inside property definition in CSS2.
    • setPageBreakInside Link icon

      void setPageBreakInside(String pageBreakInside) throws DOMException
      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.
    • getPause Link icon

      String getPause()
      See the pause property definition in CSS2.
    • setPause Link icon

      void setPause(String pause) throws DOMException
      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.
    • getPauseAfter Link icon

      String getPauseAfter()
      See the pause-after property definition in CSS2.
    • setPauseAfter Link icon

      void setPauseAfter(String pauseAfter) throws DOMException
      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.
    • getPauseBefore Link icon

      String getPauseBefore()
      See the pause-before property definition in CSS2.
    • setPauseBefore Link icon

      void setPauseBefore(String pauseBefore) throws DOMException
      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.
    • getPitch Link icon

      String getPitch()
      See the pitch property definition in CSS2.
    • setPitch Link icon

      void setPitch(String pitch) throws DOMException
      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.
    • getPitchRange Link icon

      String getPitchRange()
      See the pitch-range property definition in CSS2.
    • setPitchRange Link icon

      void setPitchRange(String pitchRange) throws DOMException
      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.
    • getPlayDuring Link icon

      String getPlayDuring()
      See the play-during property definition in CSS2.
    • setPlayDuring Link icon

      void setPlayDuring(String playDuring) throws DOMException
      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.
    • getPosition Link icon

      String getPosition()
      See the position property definition in CSS2.
    • setPosition Link icon

      void setPosition(String position) throws DOMException
      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.
    • getQuotes Link icon

      String getQuotes()
      See the quotes property definition in CSS2.
    • setQuotes Link icon

      void setQuotes(String quotes) throws DOMException
      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.
    • getRichness Link icon

      String getRichness()
      See the richness property definition in CSS2.
    • setRichness Link icon

      void setRichness(String richness) throws DOMException
      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.
    • getRight Link icon

      String getRight()
      See the right property definition in CSS2.
    • setRight Link icon

      void setRight(String right) throws DOMException
      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.
    • getSize Link icon

      String getSize()
      See the size property definition in CSS2.
    • setSize Link icon

      void setSize(String size) throws DOMException
      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.
    • getSpeak Link icon

      String getSpeak()
      See the speak property definition in CSS2.
    • setSpeak Link icon

      void setSpeak(String speak) throws DOMException
      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.
    • getSpeakHeader Link icon

      String getSpeakHeader()
      See the speak-header property definition in CSS2.
    • setSpeakHeader Link icon

      void setSpeakHeader(String speakHeader) throws DOMException
      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.
    • getSpeakNumeral Link icon

      String getSpeakNumeral()
      See the speak-numeral property definition in CSS2.
    • setSpeakNumeral Link icon

      void setSpeakNumeral(String speakNumeral) throws DOMException
      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.
    • getSpeakPunctuation Link icon

      String getSpeakPunctuation()
      See the speak-punctuation property definition in CSS2.
    • setSpeakPunctuation Link icon

      void setSpeakPunctuation(String speakPunctuation) throws DOMException
      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.
    • getSpeechRate Link icon

      String getSpeechRate()
      See the speech-rate property definition in CSS2.
    • setSpeechRate Link icon

      void setSpeechRate(String speechRate) throws DOMException
      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.
    • getStress Link icon

      String getStress()
      See the stress property definition in CSS2.
    • setStress Link icon

      void setStress(String stress) throws DOMException
      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.
    • getTableLayout Link icon

      String getTableLayout()
      See the table-layout property definition in CSS2.
    • setTableLayout Link icon

      void setTableLayout(String tableLayout) throws DOMException
      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.
    • getTextAlign Link icon

      String getTextAlign()
      See the text-align property definition in CSS2.
    • setTextAlign Link icon

      void setTextAlign(String textAlign) throws DOMException
      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.
    • getTextDecoration Link icon

      String getTextDecoration()
      See the text-decoration property definition in CSS2.
    • setTextDecoration Link icon

      void setTextDecoration(String textDecoration) throws DOMException
      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.
    • getTextIndent Link icon

      String getTextIndent()
      See the text-indent property definition in CSS2.
    • setTextIndent Link icon

      void setTextIndent(String textIndent) throws DOMException
      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.
    • getTextShadow Link icon

      String getTextShadow()
      See the text-shadow property definition in CSS2.
    • setTextShadow Link icon

      void setTextShadow(String textShadow) throws DOMException
      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.
    • getTextTransform Link icon

      String getTextTransform()
      See the text-transform property definition in CSS2.
    • setTextTransform Link icon

      void setTextTransform(String textTransform) throws DOMException
      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.
    • getTop Link icon

      String getTop()
      See the top property definition in CSS2.
    • setTop Link icon

      void setTop(String top) throws DOMException
      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.
    • getUnicodeBidi Link icon

      String getUnicodeBidi()
      See the unicode-bidi property definition in CSS2.
    • setUnicodeBidi Link icon

      void setUnicodeBidi(String unicodeBidi) throws DOMException
      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.
    • getVerticalAlign Link icon

      String getVerticalAlign()
      See the vertical-align property definition in CSS2.
    • setVerticalAlign Link icon

      void setVerticalAlign(String verticalAlign) throws DOMException
      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.
    • getVisibility Link icon

      String getVisibility()
      See the visibility property definition in CSS2.
    • setVisibility Link icon

      void setVisibility(String visibility) throws DOMException
      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.
    • getVoiceFamily Link icon

      String getVoiceFamily()
      See the voice-family property definition in CSS2.
    • setVoiceFamily Link icon

      void setVoiceFamily(String voiceFamily) throws DOMException
      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.
    • getVolume Link icon

      String getVolume()
      See the volume property definition in CSS2.
    • setVolume Link icon

      void setVolume(String volume) throws DOMException
      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.
    • getWhiteSpace Link icon

      String getWhiteSpace()
      See the white-space property definition in CSS2.
    • setWhiteSpace Link icon

      void setWhiteSpace(String whiteSpace) throws DOMException
      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.
    • getWidows Link icon

      String getWidows()
      See the widows property definition in CSS2.
    • setWidows Link icon

      void setWidows(String widows) throws DOMException
      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.
    • getWidth Link icon

      String getWidth()
      See the width property definition in CSS2.
    • setWidth Link icon

      void setWidth(String width) throws DOMException
      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.
    • getWordSpacing Link icon

      String getWordSpacing()
      See the word-spacing property definition in CSS2.
    • setWordSpacing Link icon

      void setWordSpacing(String wordSpacing) throws DOMException
      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.
    • getZIndex Link icon

      String getZIndex()
      See the z-index property definition in CSS2.
    • setZIndex Link icon

      void setZIndex(String zIndex) throws DOMException
      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.