Interface CSS2Properties
-
- All Known Implementing Classes:
AbstractCSS2Properties,ComputedCSS2Properties,CSS2PropertiesImpl,LocalCSS2Properties
public interface CSS2PropertiesTheCSS2Propertiesinterface represents a convenience mechanism for retrieving and setting properties within aCSSStyleDeclaration. The attributes of this interface correspond to all the properties specified in CSS2. Getting an attribute of this interface is equivalent to calling thegetPropertyValuemethod of theCSSStyleDeclarationinterface. Setting an attribute of this interface is equivalent to calling thesetPropertymethod of theCSSStyleDeclarationinterface.A conformant implementation of the CSS module is not required to implement the
CSS2Propertiesinterface. If an implementation does implement this interface, the expectation is that language-specific methods can be used to cast from an instance of theCSSStyleDeclarationinterface to theCSS2Propertiesinterface.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
marginproperty is set, for example, themarginTop,marginRight,marginBottomandmarginLeftproperties 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
fontproperty 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-widthvalue 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, andborder-[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
fontproperty with a value of "menu", querying for the values of the component longhand properties should return the empty string.See also the Document Object Model (DOM) Level 2 Style Specification.
- Since:
- DOM Level 2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetAzimuth()See the azimuth property definition in CSS2.java.lang.StringgetBackground()See the background property definition in CSS2.java.lang.StringgetBackgroundAttachment()See the background-attachment property definition in CSS2.java.lang.StringgetBackgroundColor()See the background-color property definition in CSS2.java.lang.StringgetBackgroundImage()See the background-image property definition in CSS2.java.lang.StringgetBackgroundPosition()See the background-position property definition in CSS2.java.lang.StringgetBackgroundRepeat()See the background-repeat property definition in CSS2.java.lang.StringgetBorder()See the border property definition in CSS2.java.lang.StringgetBorderBottom()See the border-bottom property definition in CSS2.java.lang.StringgetBorderBottomColor()See the border-bottom-color property definition in CSS2.java.lang.StringgetBorderBottomStyle()See the border-bottom-style property definition in CSS2.java.lang.StringgetBorderBottomWidth()See the border-bottom-width property definition in CSS2.java.lang.StringgetBorderCollapse()See the border-collapse property definition in CSS2.java.lang.StringgetBorderColor()See the border-color property definition in CSS2.java.lang.StringgetBorderLeft()See the border-left property definition in CSS2.java.lang.StringgetBorderLeftColor()See the border-left-color property definition in CSS2.java.lang.StringgetBorderLeftStyle()See the border-left-style property definition in CSS2.java.lang.StringgetBorderLeftWidth()See the border-left-width property definition in CSS2.java.lang.StringgetBorderRight()See the border-right property definition in CSS2.java.lang.StringgetBorderRightColor()See the border-right-color property definition in CSS2.java.lang.StringgetBorderRightStyle()See the border-right-style property definition in CSS2.java.lang.StringgetBorderRightWidth()See the border-right-width property definition in CSS2.java.lang.StringgetBorderSpacing()See the border-spacing property definition in CSS2.java.lang.StringgetBorderStyle()See the border-style property definition in CSS2.java.lang.StringgetBorderTop()See the border-top property definition in CSS2.java.lang.StringgetBorderTopColor()See the border-top-color property definition in CSS2.java.lang.StringgetBorderTopStyle()See the border-top-style property definition in CSS2.java.lang.StringgetBorderTopWidth()See the border-top-width property definition in CSS2.java.lang.StringgetBorderWidth()See the border-width property definition in CSS2.java.lang.StringgetBottom()See the bottom property definition in CSS2.java.lang.StringgetCaptionSide()See the caption-side property definition in CSS2.java.lang.StringgetClear()See the clear property definition in CSS2.java.lang.StringgetClip()See the clip property definition in CSS2.java.lang.StringgetColor()See the color property definition in CSS2.java.lang.StringgetContent()See the content property definition in CSS2.java.lang.StringgetCounterIncrement()See the counter-increment property definition in CSS2.java.lang.StringgetCounterReset()See the counter-reset property definition in CSS2.java.lang.StringgetCssFloat()See the float property definition in CSS2.java.lang.StringgetCue()See the cue property definition in CSS2.java.lang.StringgetCueAfter()See the cue-after property definition in CSS2.java.lang.StringgetCueBefore()See the cue-before property definition in CSS2.java.lang.StringgetCursor()See the cursor property definition in CSS2.java.lang.StringgetDirection()See the direction property definition in CSS2.java.lang.StringgetDisplay()See the display property definition in CSS2.java.lang.StringgetElevation()See the elevation property definition in CSS2.java.lang.StringgetEmptyCells()See the empty-cells property definition in CSS2.java.lang.StringgetFont()See the font property definition in CSS2.java.lang.StringgetFontFamily()See the font-family property definition in CSS2.java.lang.StringgetFontSize()See the font-size property definition in CSS2.java.lang.StringgetFontSizeAdjust()See the font-size-adjust property definition in CSS2.java.lang.StringgetFontStretch()See the font-stretch property definition in CSS2.java.lang.StringgetFontStyle()See the font-style property definition in CSS2.java.lang.StringgetFontVariant()See the font-variant property definition in CSS2.java.lang.StringgetFontWeight()See the font-weight property definition in CSS2.java.lang.StringgetHeight()See the height property definition in CSS2.java.lang.StringgetLeft()See the left property definition in CSS2.java.lang.StringgetLetterSpacing()See the letter-spacing property definition in CSS2.java.lang.StringgetLineHeight()See the line-height property definition in CSS2.java.lang.StringgetListStyle()See the list-style property definition in CSS2.java.lang.StringgetListStyleImage()See the list-style-image property definition in CSS2.java.lang.StringgetListStylePosition()See the list-style-position property definition in CSS2.java.lang.StringgetListStyleType()See the list-style-type property definition in CSS2.java.lang.StringgetMargin()See the margin property definition in CSS2.java.lang.StringgetMarginBottom()See the margin-bottom property definition in CSS2.java.lang.StringgetMarginLeft()See the margin-left property definition in CSS2.java.lang.StringgetMarginRight()See the margin-right property definition in CSS2.java.lang.StringgetMarginTop()See the margin-top property definition in CSS2.java.lang.StringgetMarkerOffset()See the marker-offset property definition in CSS2.java.lang.StringgetMarks()See the marks property definition in CSS2.java.lang.StringgetMaxHeight()See the max-height property definition in CSS2.java.lang.StringgetMaxWidth()See the max-width property definition in CSS2.java.lang.StringgetMinHeight()See the min-height property definition in CSS2.java.lang.StringgetMinWidth()See the min-width property definition in CSS2.java.lang.StringgetOrphans()See the orphans property definition in CSS2.java.lang.StringgetOutline()See the outline property definition in CSS2.java.lang.StringgetOutlineColor()See the outline-color property definition in CSS2.java.lang.StringgetOutlineStyle()See the outline-style property definition in CSS2.java.lang.StringgetOutlineWidth()See the outline-width property definition in CSS2.java.lang.StringgetOverflow()See the overflow property definition in CSS2.java.lang.StringgetPadding()See the padding property definition in CSS2.java.lang.StringgetPaddingBottom()See the padding-bottom property definition in CSS2.java.lang.StringgetPaddingLeft()See the padding-left property definition in CSS2.java.lang.StringgetPaddingRight()See the padding-right property definition in CSS2.java.lang.StringgetPaddingTop()See the padding-top property definition in CSS2.java.lang.StringgetPage()See the page property definition in CSS2.java.lang.StringgetPageBreakAfter()See the page-break-after property definition in CSS2.java.lang.StringgetPageBreakBefore()See the page-break-before property definition in CSS2.java.lang.StringgetPageBreakInside()See the page-break-inside property definition in CSS2.java.lang.StringgetPause()See the pause property definition in CSS2.java.lang.StringgetPauseAfter()See the pause-after property definition in CSS2.java.lang.StringgetPauseBefore()See the pause-before property definition in CSS2.java.lang.StringgetPitch()See the pitch property definition in CSS2.java.lang.StringgetPitchRange()See the pitch-range property definition in CSS2.java.lang.StringgetPlayDuring()See the play-during property definition in CSS2.java.lang.StringgetPosition()See the position property definition in CSS2.java.lang.StringgetQuotes()See the quotes property definition in CSS2.java.lang.StringgetRichness()See the richness property definition in CSS2.java.lang.StringgetRight()See the right property definition in CSS2.java.lang.StringgetSize()See the size property definition in CSS2.java.lang.StringgetSpeak()See the speak property definition in CSS2.java.lang.StringgetSpeakHeader()See the speak-header property definition in CSS2.java.lang.StringgetSpeakNumeral()See the speak-numeral property definition in CSS2.java.lang.StringgetSpeakPunctuation()See the speak-punctuation property definition in CSS2.java.lang.StringgetSpeechRate()See the speech-rate property definition in CSS2.java.lang.StringgetStress()See the stress property definition in CSS2.java.lang.StringgetTableLayout()See the table-layout property definition in CSS2.java.lang.StringgetTextAlign()See the text-align property definition in CSS2.java.lang.StringgetTextDecoration()See the text-decoration property definition in CSS2.java.lang.StringgetTextIndent()See the text-indent property definition in CSS2.java.lang.StringgetTextShadow()See the text-shadow property definition in CSS2.java.lang.StringgetTextTransform()See the text-transform property definition in CSS2.java.lang.StringgetTop()See the top property definition in CSS2.java.lang.StringgetUnicodeBidi()See the unicode-bidi property definition in CSS2.java.lang.StringgetVerticalAlign()See the vertical-align property definition in CSS2.java.lang.StringgetVisibility()See the visibility property definition in CSS2.java.lang.StringgetVoiceFamily()See the voice-family property definition in CSS2.java.lang.StringgetVolume()See the volume property definition in CSS2.java.lang.StringgetWhiteSpace()See the white-space property definition in CSS2.java.lang.StringgetWidows()See the widows property definition in CSS2.java.lang.StringgetWidth()See the width property definition in CSS2.java.lang.StringgetWordSpacing()See the word-spacing property definition in CSS2.java.lang.StringgetZIndex()See the z-index property definition in CSS2.voidsetAzimuth(java.lang.String azimuth)voidsetBackground(java.lang.String background)voidsetBackgroundAttachment(java.lang.String backgroundAttachment)voidsetBackgroundColor(java.lang.String backgroundColor)voidsetBackgroundImage(java.lang.String backgroundImage)voidsetBackgroundPosition(java.lang.String backgroundPosition)voidsetBackgroundRepeat(java.lang.String backgroundRepeat)voidsetBorder(java.lang.String border)voidsetBorderBottom(java.lang.String borderBottom)voidsetBorderBottomColor(java.lang.String borderBottomColor)voidsetBorderBottomStyle(java.lang.String borderBottomStyle)voidsetBorderBottomWidth(java.lang.String borderBottomWidth)voidsetBorderCollapse(java.lang.String borderCollapse)voidsetBorderColor(java.lang.String borderColor)voidsetBorderLeft(java.lang.String borderLeft)voidsetBorderLeftColor(java.lang.String borderLeftColor)voidsetBorderLeftStyle(java.lang.String borderLeftStyle)voidsetBorderLeftWidth(java.lang.String borderLeftWidth)voidsetBorderRight(java.lang.String borderRight)voidsetBorderRightColor(java.lang.String borderRightColor)voidsetBorderRightStyle(java.lang.String borderRightStyle)voidsetBorderRightWidth(java.lang.String borderRightWidth)voidsetBorderSpacing(java.lang.String borderSpacing)voidsetBorderStyle(java.lang.String borderStyle)voidsetBorderTop(java.lang.String borderTop)voidsetBorderTopColor(java.lang.String borderTopColor)voidsetBorderTopStyle(java.lang.String borderTopStyle)voidsetBorderTopWidth(java.lang.String borderTopWidth)voidsetBorderWidth(java.lang.String borderWidth)voidsetBottom(java.lang.String bottom)voidsetCaptionSide(java.lang.String captionSide)voidsetClear(java.lang.String clear)voidsetClip(java.lang.String clip)voidsetColor(java.lang.String color)voidsetContent(java.lang.String content)voidsetCounterIncrement(java.lang.String counterIncrement)voidsetCounterReset(java.lang.String counterReset)voidsetCssFloat(java.lang.String cssFloat)voidsetCue(java.lang.String cue)voidsetCueAfter(java.lang.String cueAfter)voidsetCueBefore(java.lang.String cueBefore)voidsetCursor(java.lang.String cursor)voidsetDirection(java.lang.String direction)voidsetDisplay(java.lang.String display)voidsetElevation(java.lang.String elevation)voidsetEmptyCells(java.lang.String emptyCells)voidsetFont(java.lang.String font)voidsetFontFamily(java.lang.String fontFamily)voidsetFontSize(java.lang.String fontSize)voidsetFontSizeAdjust(java.lang.String fontSizeAdjust)voidsetFontStretch(java.lang.String fontStretch)voidsetFontStyle(java.lang.String fontStyle)voidsetFontVariant(java.lang.String fontVariant)voidsetFontWeight(java.lang.String fontWeight)voidsetHeight(java.lang.String height)voidsetLeft(java.lang.String left)voidsetLetterSpacing(java.lang.String letterSpacing)voidsetLineHeight(java.lang.String lineHeight)voidsetListStyle(java.lang.String listStyle)voidsetListStyleImage(java.lang.String listStyleImage)voidsetListStylePosition(java.lang.String listStylePosition)voidsetListStyleType(java.lang.String listStyleType)voidsetMargin(java.lang.String margin)voidsetMarginBottom(java.lang.String marginBottom)voidsetMarginLeft(java.lang.String marginLeft)voidsetMarginRight(java.lang.String marginRight)voidsetMarginTop(java.lang.String marginTop)voidsetMarkerOffset(java.lang.String markerOffset)voidsetMarks(java.lang.String marks)voidsetMaxHeight(java.lang.String maxHeight)voidsetMaxWidth(java.lang.String maxWidth)voidsetMinHeight(java.lang.String minHeight)voidsetMinWidth(java.lang.String minWidth)voidsetOrphans(java.lang.String orphans)voidsetOutline(java.lang.String outline)voidsetOutlineColor(java.lang.String outlineColor)voidsetOutlineStyle(java.lang.String outlineStyle)voidsetOutlineWidth(java.lang.String outlineWidth)voidsetOverflow(java.lang.String overflow)voidsetPadding(java.lang.String padding)voidsetPaddingBottom(java.lang.String paddingBottom)voidsetPaddingLeft(java.lang.String paddingLeft)voidsetPaddingRight(java.lang.String paddingRight)voidsetPaddingTop(java.lang.String paddingTop)voidsetPage(java.lang.String page)voidsetPageBreakAfter(java.lang.String pageBreakAfter)voidsetPageBreakBefore(java.lang.String pageBreakBefore)voidsetPageBreakInside(java.lang.String pageBreakInside)voidsetPause(java.lang.String pause)voidsetPauseAfter(java.lang.String pauseAfter)voidsetPauseBefore(java.lang.String pauseBefore)voidsetPitch(java.lang.String pitch)voidsetPitchRange(java.lang.String pitchRange)voidsetPlayDuring(java.lang.String playDuring)voidsetPosition(java.lang.String position)voidsetQuotes(java.lang.String quotes)voidsetRichness(java.lang.String richness)voidsetRight(java.lang.String right)voidsetSize(java.lang.String size)voidsetSpeak(java.lang.String speak)voidsetSpeakHeader(java.lang.String speakHeader)voidsetSpeakNumeral(java.lang.String speakNumeral)voidsetSpeakPunctuation(java.lang.String speakPunctuation)voidsetSpeechRate(java.lang.String speechRate)voidsetStress(java.lang.String stress)voidsetTableLayout(java.lang.String tableLayout)voidsetTextAlign(java.lang.String textAlign)voidsetTextDecoration(java.lang.String textDecoration)voidsetTextIndent(java.lang.String textIndent)voidsetTextShadow(java.lang.String textShadow)voidsetTextTransform(java.lang.String textTransform)voidsetTop(java.lang.String top)voidsetUnicodeBidi(java.lang.String unicodeBidi)voidsetVerticalAlign(java.lang.String verticalAlign)voidsetVisibility(java.lang.String visibility)voidsetVoiceFamily(java.lang.String voiceFamily)voidsetVolume(java.lang.String volume)voidsetWhiteSpace(java.lang.String whiteSpace)voidsetWidows(java.lang.String widows)voidsetWidth(java.lang.String width)voidsetWordSpacing(java.lang.String wordSpacing)voidsetZIndex(java.lang.String zIndex)
-
-
-
Method Detail
-
getAzimuth
java.lang.String getAzimuth()
See the azimuth property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setAzimuth
void setAzimuth(java.lang.String azimuth) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getBackground
java.lang.String getBackground()
See the background property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBackground
void setBackground(java.lang.String background) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getBackgroundAttachment
java.lang.String getBackgroundAttachment()
See the background-attachment property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBackgroundAttachment
void setBackgroundAttachment(java.lang.String backgroundAttachment) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getBackgroundColor
java.lang.String getBackgroundColor()
See the background-color property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBackgroundColor
void setBackgroundColor(java.lang.String backgroundColor) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getBackgroundImage
java.lang.String getBackgroundImage()
See the background-image property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBackgroundImage
void setBackgroundImage(java.lang.String backgroundImage) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getBackgroundPosition
java.lang.String getBackgroundPosition()
See the background-position property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBackgroundPosition
void setBackgroundPosition(java.lang.String backgroundPosition) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getBackgroundRepeat
java.lang.String getBackgroundRepeat()
See the background-repeat property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBackgroundRepeat
void setBackgroundRepeat(java.lang.String backgroundRepeat) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getBorder
java.lang.String getBorder()
See the border property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorder
void setBorder(java.lang.String border) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getBorderCollapse
java.lang.String getBorderCollapse()
See the border-collapse property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderCollapse
void setBorderCollapse(java.lang.String borderCollapse) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getBorderColor
java.lang.String getBorderColor()
See the border-color property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderColor
void setBorderColor(java.lang.String borderColor) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getBorderSpacing
java.lang.String getBorderSpacing()
See the border-spacing property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderSpacing
void setBorderSpacing(java.lang.String borderSpacing) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getBorderStyle
java.lang.String getBorderStyle()
See the border-style property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderStyle
void setBorderStyle(java.lang.String borderStyle) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getBorderTop
java.lang.String getBorderTop()
See the border-top property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderTop
void setBorderTop(java.lang.String borderTop) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getBorderRight
java.lang.String getBorderRight()
See the border-right property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderRight
void setBorderRight(java.lang.String borderRight) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getBorderBottom
java.lang.String getBorderBottom()
See the border-bottom property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderBottom
void setBorderBottom(java.lang.String borderBottom) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getBorderLeft
java.lang.String getBorderLeft()
See the border-left property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderLeft
void setBorderLeft(java.lang.String borderLeft) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getBorderTopColor
java.lang.String getBorderTopColor()
See the border-top-color property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderTopColor
void setBorderTopColor(java.lang.String borderTopColor) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getBorderRightColor
java.lang.String getBorderRightColor()
See the border-right-color property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderRightColor
void setBorderRightColor(java.lang.String borderRightColor) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getBorderBottomColor
java.lang.String getBorderBottomColor()
See the border-bottom-color property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderBottomColor
void setBorderBottomColor(java.lang.String borderBottomColor) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getBorderLeftColor
java.lang.String getBorderLeftColor()
See the border-left-color property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderLeftColor
void setBorderLeftColor(java.lang.String borderLeftColor) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getBorderTopStyle
java.lang.String getBorderTopStyle()
See the border-top-style property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderTopStyle
void setBorderTopStyle(java.lang.String borderTopStyle) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getBorderRightStyle
java.lang.String getBorderRightStyle()
See the border-right-style property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderRightStyle
void setBorderRightStyle(java.lang.String borderRightStyle) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getBorderBottomStyle
java.lang.String getBorderBottomStyle()
See the border-bottom-style property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderBottomStyle
void setBorderBottomStyle(java.lang.String borderBottomStyle) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getBorderLeftStyle
java.lang.String getBorderLeftStyle()
See the border-left-style property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderLeftStyle
void setBorderLeftStyle(java.lang.String borderLeftStyle) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getBorderTopWidth
java.lang.String getBorderTopWidth()
See the border-top-width property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderTopWidth
void setBorderTopWidth(java.lang.String borderTopWidth) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getBorderRightWidth
java.lang.String getBorderRightWidth()
See the border-right-width property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderRightWidth
void setBorderRightWidth(java.lang.String borderRightWidth) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getBorderBottomWidth
java.lang.String getBorderBottomWidth()
See the border-bottom-width property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderBottomWidth
void setBorderBottomWidth(java.lang.String borderBottomWidth) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getBorderLeftWidth
java.lang.String getBorderLeftWidth()
See the border-left-width property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderLeftWidth
void setBorderLeftWidth(java.lang.String borderLeftWidth) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getBorderWidth
java.lang.String getBorderWidth()
See the border-width property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBorderWidth
void setBorderWidth(java.lang.String borderWidth) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getBottom
java.lang.String getBottom()
See the bottom property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setBottom
void setBottom(java.lang.String bottom) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getCaptionSide
java.lang.String getCaptionSide()
See the caption-side property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setCaptionSide
void setCaptionSide(java.lang.String captionSide) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getClear
java.lang.String getClear()
See the clear property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setClear
void setClear(java.lang.String clear) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getClip
java.lang.String getClip()
See the clip property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setClip
void setClip(java.lang.String clip) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getColor
java.lang.String getColor()
See the color property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setColor
void setColor(java.lang.String color) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getContent
java.lang.String getContent()
See the content property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setContent
void setContent(java.lang.String content) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getCounterIncrement
java.lang.String getCounterIncrement()
See the counter-increment property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setCounterIncrement
void setCounterIncrement(java.lang.String counterIncrement) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getCounterReset
java.lang.String getCounterReset()
See the counter-reset property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setCounterReset
void setCounterReset(java.lang.String counterReset) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getCue
java.lang.String getCue()
See the cue property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setCue
void setCue(java.lang.String cue) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getCueAfter
java.lang.String getCueAfter()
See the cue-after property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setCueAfter
void setCueAfter(java.lang.String cueAfter) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getCueBefore
java.lang.String getCueBefore()
See the cue-before property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setCueBefore
void setCueBefore(java.lang.String cueBefore) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getCursor
java.lang.String getCursor()
See the cursor property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setCursor
void setCursor(java.lang.String cursor) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getDirection
java.lang.String getDirection()
See the direction property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setDirection
void setDirection(java.lang.String direction) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getDisplay
java.lang.String getDisplay()
See the display property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setDisplay
void setDisplay(java.lang.String display) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getElevation
java.lang.String getElevation()
See the elevation property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setElevation
void setElevation(java.lang.String elevation) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getEmptyCells
java.lang.String getEmptyCells()
See the empty-cells property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setEmptyCells
void setEmptyCells(java.lang.String emptyCells) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getCssFloat
java.lang.String getCssFloat()
See the float property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setCssFloat
void setCssFloat(java.lang.String cssFloat) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getFont
java.lang.String getFont()
See the font property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setFont
void setFont(java.lang.String font) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getFontFamily
java.lang.String getFontFamily()
See the font-family property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setFontFamily
void setFontFamily(java.lang.String fontFamily) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getFontSize
java.lang.String getFontSize()
See the font-size property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setFontSize
void setFontSize(java.lang.String fontSize) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getFontSizeAdjust
java.lang.String getFontSizeAdjust()
See the font-size-adjust property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setFontSizeAdjust
void setFontSizeAdjust(java.lang.String fontSizeAdjust) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getFontStretch
java.lang.String getFontStretch()
See the font-stretch property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setFontStretch
void setFontStretch(java.lang.String fontStretch) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getFontStyle
java.lang.String getFontStyle()
See the font-style property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setFontStyle
void setFontStyle(java.lang.String fontStyle) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getFontVariant
java.lang.String getFontVariant()
See the font-variant property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setFontVariant
void setFontVariant(java.lang.String fontVariant) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getFontWeight
java.lang.String getFontWeight()
See the font-weight property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setFontWeight
void setFontWeight(java.lang.String fontWeight) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getHeight
java.lang.String getHeight()
See the height property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setHeight
void setHeight(java.lang.String height) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getLeft
java.lang.String getLeft()
See the left property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setLeft
void setLeft(java.lang.String left) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getLetterSpacing
java.lang.String getLetterSpacing()
See the letter-spacing property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setLetterSpacing
void setLetterSpacing(java.lang.String letterSpacing) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getLineHeight
java.lang.String getLineHeight()
See the line-height property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setLineHeight
void setLineHeight(java.lang.String lineHeight) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getListStyle
java.lang.String getListStyle()
See the list-style property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setListStyle
void setListStyle(java.lang.String listStyle) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getListStyleImage
java.lang.String getListStyleImage()
See the list-style-image property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setListStyleImage
void setListStyleImage(java.lang.String listStyleImage) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getListStylePosition
java.lang.String getListStylePosition()
See the list-style-position property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setListStylePosition
void setListStylePosition(java.lang.String listStylePosition) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getListStyleType
java.lang.String getListStyleType()
See the list-style-type property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setListStyleType
void setListStyleType(java.lang.String listStyleType) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getMargin
java.lang.String getMargin()
See the margin property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setMargin
void setMargin(java.lang.String margin) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getMarginTop
java.lang.String getMarginTop()
See the margin-top property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setMarginTop
void setMarginTop(java.lang.String marginTop) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getMarginRight
java.lang.String getMarginRight()
See the margin-right property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setMarginRight
void setMarginRight(java.lang.String marginRight) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getMarginBottom
java.lang.String getMarginBottom()
See the margin-bottom property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setMarginBottom
void setMarginBottom(java.lang.String marginBottom) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getMarginLeft
java.lang.String getMarginLeft()
See the margin-left property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setMarginLeft
void setMarginLeft(java.lang.String marginLeft) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getMarkerOffset
java.lang.String getMarkerOffset()
See the marker-offset property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setMarkerOffset
void setMarkerOffset(java.lang.String markerOffset) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getMarks
java.lang.String getMarks()
See the marks property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setMarks
void setMarks(java.lang.String marks) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getMaxHeight
java.lang.String getMaxHeight()
See the max-height property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setMaxHeight
void setMaxHeight(java.lang.String maxHeight) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getMaxWidth
java.lang.String getMaxWidth()
See the max-width property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setMaxWidth
void setMaxWidth(java.lang.String maxWidth) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getMinHeight
java.lang.String getMinHeight()
See the min-height property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setMinHeight
void setMinHeight(java.lang.String minHeight) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getMinWidth
java.lang.String getMinWidth()
See the min-width property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setMinWidth
void setMinWidth(java.lang.String minWidth) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getOrphans
java.lang.String getOrphans()
See the orphans property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setOrphans
void setOrphans(java.lang.String orphans) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getOutline
java.lang.String getOutline()
See the outline property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setOutline
void setOutline(java.lang.String outline) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getOutlineColor
java.lang.String getOutlineColor()
See the outline-color property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setOutlineColor
void setOutlineColor(java.lang.String outlineColor) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getOutlineStyle
java.lang.String getOutlineStyle()
See the outline-style property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setOutlineStyle
void setOutlineStyle(java.lang.String outlineStyle) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getOutlineWidth
java.lang.String getOutlineWidth()
See the outline-width property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setOutlineWidth
void setOutlineWidth(java.lang.String outlineWidth) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getOverflow
java.lang.String getOverflow()
See the overflow property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setOverflow
void setOverflow(java.lang.String overflow) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getPadding
java.lang.String getPadding()
See the padding property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setPadding
void setPadding(java.lang.String padding) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getPaddingTop
java.lang.String getPaddingTop()
See the padding-top property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setPaddingTop
void setPaddingTop(java.lang.String paddingTop) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getPaddingRight
java.lang.String getPaddingRight()
See the padding-right property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setPaddingRight
void setPaddingRight(java.lang.String paddingRight) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getPaddingBottom
java.lang.String getPaddingBottom()
See the padding-bottom property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setPaddingBottom
void setPaddingBottom(java.lang.String paddingBottom) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getPaddingLeft
java.lang.String getPaddingLeft()
See the padding-left property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setPaddingLeft
void setPaddingLeft(java.lang.String paddingLeft) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getPage
java.lang.String getPage()
See the page property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setPage
void setPage(java.lang.String page) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getPageBreakAfter
java.lang.String getPageBreakAfter()
See the page-break-after property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setPageBreakAfter
void setPageBreakAfter(java.lang.String pageBreakAfter) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getPageBreakBefore
java.lang.String getPageBreakBefore()
See the page-break-before property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setPageBreakBefore
void setPageBreakBefore(java.lang.String pageBreakBefore) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getPageBreakInside
java.lang.String getPageBreakInside()
See the page-break-inside property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setPageBreakInside
void setPageBreakInside(java.lang.String pageBreakInside) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getPause
java.lang.String getPause()
See the pause property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setPause
void setPause(java.lang.String pause) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getPauseAfter
java.lang.String getPauseAfter()
See the pause-after property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setPauseAfter
void setPauseAfter(java.lang.String pauseAfter) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getPauseBefore
java.lang.String getPauseBefore()
See the pause-before property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setPauseBefore
void setPauseBefore(java.lang.String pauseBefore) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getPitch
java.lang.String getPitch()
See the pitch property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setPitch
void setPitch(java.lang.String pitch) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getPitchRange
java.lang.String getPitchRange()
See the pitch-range property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setPitchRange
void setPitchRange(java.lang.String pitchRange) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getPlayDuring
java.lang.String getPlayDuring()
See the play-during property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setPlayDuring
void setPlayDuring(java.lang.String playDuring) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getPosition
java.lang.String getPosition()
See the position property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setPosition
void setPosition(java.lang.String position) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getQuotes
java.lang.String getQuotes()
See the quotes property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setQuotes
void setQuotes(java.lang.String quotes) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getRichness
java.lang.String getRichness()
See the richness property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setRichness
void setRichness(java.lang.String richness) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getRight
java.lang.String getRight()
See the right property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setRight
void setRight(java.lang.String right) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getSize
java.lang.String getSize()
See the size property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setSize
void setSize(java.lang.String size) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getSpeak
java.lang.String getSpeak()
See the speak property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setSpeak
void setSpeak(java.lang.String speak) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getSpeakHeader
java.lang.String getSpeakHeader()
See the speak-header property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setSpeakHeader
void setSpeakHeader(java.lang.String speakHeader) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getSpeakNumeral
java.lang.String getSpeakNumeral()
See the speak-numeral property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setSpeakNumeral
void setSpeakNumeral(java.lang.String speakNumeral) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getSpeakPunctuation
java.lang.String getSpeakPunctuation()
See the speak-punctuation property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setSpeakPunctuation
void setSpeakPunctuation(java.lang.String speakPunctuation) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getSpeechRate
java.lang.String getSpeechRate()
See the speech-rate property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setSpeechRate
void setSpeechRate(java.lang.String speechRate) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getStress
java.lang.String getStress()
See the stress property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setStress
void setStress(java.lang.String stress) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getTableLayout
java.lang.String getTableLayout()
See the table-layout property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setTableLayout
void setTableLayout(java.lang.String tableLayout) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getTextAlign
java.lang.String getTextAlign()
See the text-align property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setTextAlign
void setTextAlign(java.lang.String textAlign) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getTextDecoration
java.lang.String getTextDecoration()
See the text-decoration property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setTextDecoration
void setTextDecoration(java.lang.String textDecoration) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getTextIndent
java.lang.String getTextIndent()
See the text-indent property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setTextIndent
void setTextIndent(java.lang.String textIndent) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getTextShadow
java.lang.String getTextShadow()
See the text-shadow property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setTextShadow
void setTextShadow(java.lang.String textShadow) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getTextTransform
java.lang.String getTextTransform()
See the text-transform property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setTextTransform
void setTextTransform(java.lang.String textTransform) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getTop
java.lang.String getTop()
See the top property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setTop
void setTop(java.lang.String top) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getUnicodeBidi
java.lang.String getUnicodeBidi()
See the unicode-bidi property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setUnicodeBidi
void setUnicodeBidi(java.lang.String unicodeBidi) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getVerticalAlign
java.lang.String getVerticalAlign()
See the vertical-align property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setVerticalAlign
void setVerticalAlign(java.lang.String verticalAlign) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getVisibility
java.lang.String getVisibility()
See the visibility property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setVisibility
void setVisibility(java.lang.String visibility) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getVoiceFamily
java.lang.String getVoiceFamily()
See the voice-family property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setVoiceFamily
void setVoiceFamily(java.lang.String voiceFamily) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getVolume
java.lang.String getVolume()
See the volume property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setVolume
void setVolume(java.lang.String volume) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getWhiteSpace
java.lang.String getWhiteSpace()
See the white-space property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setWhiteSpace
void setWhiteSpace(java.lang.String whiteSpace) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getWidows
java.lang.String getWidows()
See the widows property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setWidows
void setWidows(java.lang.String widows) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getWidth
java.lang.String getWidth()
See the width property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setWidth
void setWidth(java.lang.String width) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getWordSpacing
java.lang.String getWordSpacing()
See the word-spacing property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setWordSpacing
void setWordSpacing(java.lang.String wordSpacing) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
getZIndex
java.lang.String getZIndex()
See the z-index property definition in CSS2.- Throws:
org.w3c.dom.DOMException- SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
-
setZIndex
void setZIndex(java.lang.String zIndex) throws org.w3c.dom.DOMException- Throws:
org.w3c.dom.DOMException
-
-