Module jdk.xml.dom

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 Detail

      • getAzimuth

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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

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

        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.