public interface CSS2Properties
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.
| Modifier and Type | Method and Description |
|---|---|
String |
getAzimuth()
See the azimuth property definition in CSS2.
|
String |
getBackground()
See the background property definition in CSS2.
|
String |
getBackgroundAttachment()
See the background-attachment property definition in CSS2.
|
String |
getBackgroundColor()
See the background-color property definition in CSS2.
|
String |
getBackgroundImage()
See the background-image property definition in CSS2.
|
String |
getBackgroundPosition()
See the background-position property definition in CSS2.
|
String |
getBackgroundRepeat()
See the background-repeat property definition in CSS2.
|
String |
getBorder()
See the border property definition in CSS2.
|
String |
getBorderBottom()
See the border-bottom property definition in CSS2.
|
String |
getBorderBottomColor()
See the border-bottom-color property definition in CSS2.
|
String |
getBorderBottomStyle()
See the border-bottom-style property definition in CSS2.
|
String |
getBorderBottomWidth()
See the border-bottom-width property definition in CSS2.
|
String |
getBorderCollapse()
See the border-collapse property definition in CSS2.
|
String |
getBorderColor()
See the border-color property definition in CSS2.
|
String |
getBorderLeft()
See the border-left property definition in CSS2.
|
String |
getBorderLeftColor()
See the border-left-color property definition in CSS2.
|
String |
getBorderLeftStyle()
See the border-left-style property definition in CSS2.
|
String |
getBorderLeftWidth()
See the border-left-width property definition in CSS2.
|
String |
getBorderRight()
See the border-right property definition in CSS2.
|
String |
getBorderRightColor()
See the border-right-color property definition in CSS2.
|
String |
getBorderRightStyle()
See the border-right-style property definition in CSS2.
|
String |
getBorderRightWidth()
See the border-right-width property definition in CSS2.
|
String |
getBorderSpacing()
See the border-spacing property definition in CSS2.
|
String |
getBorderStyle()
See the border-style property definition in CSS2.
|
String |
getBorderTop()
See the border-top property definition in CSS2.
|
String |
getBorderTopColor()
See the border-top-color property definition in CSS2.
|
String |
getBorderTopStyle()
See the border-top-style property definition in CSS2.
|
String |
getBorderTopWidth()
See the border-top-width property definition in CSS2.
|
String |
getBorderWidth()
See the border-width property definition in CSS2.
|
String |
getBottom()
See the bottom property definition in CSS2.
|
String |
getCaptionSide()
See the caption-side property definition in CSS2.
|
String |
getClear()
See the clear property definition in CSS2.
|
String |
getClip()
See the clip property definition in CSS2.
|
String |
getColor()
See the color property definition in CSS2.
|
String |
getContent()
See the content property definition in CSS2.
|
String |
getCounterIncrement()
See the counter-increment property definition in CSS2.
|
String |
getCounterReset()
See the counter-reset property definition in CSS2.
|
String |
getCssFloat()
See the float property definition in CSS2.
|
String |
getCue()
See the cue property definition in CSS2.
|
String |
getCueAfter()
See the cue-after property definition in CSS2.
|
String |
getCueBefore()
See the cue-before property definition in CSS2.
|
String |
getCursor()
See the cursor property definition in CSS2.
|
String |
getDirection()
See the direction property definition in CSS2.
|
String |
getDisplay()
See the display property definition in CSS2.
|
String |
getElevation()
See the elevation property definition in CSS2.
|
String |
getEmptyCells()
See the empty-cells property definition in CSS2.
|
String |
getFont()
See the font property definition in CSS2.
|
String |
getFontFamily()
See the font-family property definition in CSS2.
|
String |
getFontSize()
See the font-size property definition in CSS2.
|
String |
getFontSizeAdjust()
See the font-size-adjust property definition in CSS2.
|
String |
getFontStretch()
See the font-stretch property definition in CSS2.
|
String |
getFontStyle()
See the font-style property definition in CSS2.
|
String |
getFontVariant()
See the font-variant property definition in CSS2.
|
String |
getFontWeight()
See the font-weight property definition in CSS2.
|
String |
getHeight()
See the height property definition in CSS2.
|
String |
getLeft()
See the left property definition in CSS2.
|
String |
getLetterSpacing()
See the letter-spacing property definition in CSS2.
|
String |
getLineHeight()
See the line-height property definition in CSS2.
|
String |
getListStyle()
See the list-style property definition in CSS2.
|
String |
getListStyleImage()
See the list-style-image property definition in CSS2.
|
String |
getListStylePosition()
See the list-style-position property definition in CSS2.
|
String |
getListStyleType()
See the list-style-type property definition in CSS2.
|
String |
getMargin()
See the margin property definition in CSS2.
|
String |
getMarginBottom()
See the margin-bottom property definition in CSS2.
|
String |
getMarginLeft()
See the margin-left property definition in CSS2.
|
String |
getMarginRight()
See the margin-right property definition in CSS2.
|
String |
getMarginTop()
See the margin-top property definition in CSS2.
|
String |
getMarkerOffset()
See the marker-offset property definition in CSS2.
|
String |
getMarks()
See the marks property definition in CSS2.
|
String |
getMaxHeight()
See the max-height property definition in CSS2.
|
String |
getMaxWidth()
See the max-width property definition in CSS2.
|
String |
getMinHeight()
See the min-height property definition in CSS2.
|
String |
getMinWidth()
See the min-width property definition in CSS2.
|
String |
getOrphans()
See the orphans property definition in CSS2.
|
String |
getOutline()
See the outline property definition in CSS2.
|
String |
getOutlineColor()
See the outline-color property definition in CSS2.
|
String |
getOutlineStyle()
See the outline-style property definition in CSS2.
|
String |
getOutlineWidth()
See the outline-width property definition in CSS2.
|
String |
getOverflow()
See the overflow property definition in CSS2.
|
String |
getPadding()
See the padding property definition in CSS2.
|
String |
getPaddingBottom()
See the padding-bottom property definition in CSS2.
|
String |
getPaddingLeft()
See the padding-left property definition in CSS2.
|
String |
getPaddingRight()
See the padding-right property definition in CSS2.
|
String |
getPaddingTop()
See the padding-top property definition in CSS2.
|
String |
getPage()
See the page property definition in CSS2.
|
String |
getPageBreakAfter()
See the page-break-after property definition in CSS2.
|
String |
getPageBreakBefore()
See the page-break-before property definition in CSS2.
|
String |
getPageBreakInside()
See the page-break-inside property definition in CSS2.
|
String |
getPause()
See the pause property definition in CSS2.
|
String |
getPauseAfter()
See the pause-after property definition in CSS2.
|
String |
getPauseBefore()
See the pause-before property definition in CSS2.
|
String |
getPitch()
See the pitch property definition in CSS2.
|
String |
getPitchRange()
See the pitch-range property definition in CSS2.
|
String |
getPlayDuring()
See the play-during property definition in CSS2.
|
String |
getPosition()
See the position property definition in CSS2.
|
String |
getQuotes()
See the quotes property definition in CSS2.
|
String |
getRichness()
See the richness property definition in CSS2.
|
String |
getRight()
See the right property definition in CSS2.
|
String |
getSize()
See the size property definition in CSS2.
|
String |
getSpeak()
See the speak property definition in CSS2.
|
String |
getSpeakHeader()
See the speak-header property definition in CSS2.
|
String |
getSpeakNumeral()
See the speak-numeral property definition in CSS2.
|
String |
getSpeakPunctuation()
See the speak-punctuation property definition in CSS2.
|
String |
getSpeechRate()
See the speech-rate property definition in CSS2.
|
String |
getStress()
See the stress property definition in CSS2.
|
String |
getTableLayout()
See the table-layout property definition in CSS2.
|
String |
getTextAlign()
See the text-align property definition in CSS2.
|
String |
getTextDecoration()
See the text-decoration property definition in CSS2.
|
String |
getTextIndent()
See the text-indent property definition in CSS2.
|
String |
getTextShadow()
See the text-shadow property definition in CSS2.
|
String |
getTextTransform()
See the text-transform property definition in CSS2.
|
String |
getTop()
See the top property definition in CSS2.
|
String |
getUnicodeBidi()
See the unicode-bidi property definition in CSS2.
|
String |
getVerticalAlign()
See the vertical-align property definition in CSS2.
|
String |
getVisibility()
See the visibility property definition in CSS2.
|
String |
getVoiceFamily()
See the voice-family property definition in CSS2.
|
String |
getVolume()
See the volume property definition in CSS2.
|
String |
getWhiteSpace()
See the white-space property definition in CSS2.
|
String |
getWidows()
See the widows property definition in CSS2.
|
String |
getWidth()
See the width property definition in CSS2.
|
String |
getWordSpacing()
See the word-spacing property definition in CSS2.
|
String |
getZIndex()
See the z-index property definition in CSS2.
|
void |
setAzimuth(String
See the azimuth property definition in CSS2.
|
void |
setBackground(String
See the background property definition in CSS2.
|
void |
setBackgroundAttachment(String
See the background-attachment property definition in CSS2.
|
void |
setBackgroundColor(String
See the background-color property definition in CSS2.
|
void |
setBackgroundImage(String
See the background-image property definition in CSS2.
|
void |
setBackgroundPosition(String
See the background-position property definition in CSS2.
|
void |
setBackgroundRepeat(String
See the background-repeat property definition in CSS2.
|
void |
setBorder(String
See the border property definition in CSS2.
|
void |
setBorderBottom(String
See the border-bottom property definition in CSS2.
|
void |
setBorderBottomColor(String
See the border-bottom-color property definition in CSS2.
|
void |
setBorderBottomStyle(String
See the border-bottom-style property definition in CSS2.
|
void |
setBorderBottomWidth(String
See the border-bottom-width property definition in CSS2.
|
void |
setBorderCollapse(String
See the border-collapse property definition in CSS2.
|
void |
setBorderColor(String
See the border-color property definition in CSS2.
|
void |
setBorderLeft(String
See the border-left property definition in CSS2.
|
void |
setBorderLeftColor(String
See the border-left-color property definition in CSS2.
|
void |
setBorderLeftStyle(String
See the border-left-style property definition in CSS2.
|
void |
setBorderLeftWidth(String
See the border-left-width property definition in CSS2.
|
void |
setBorderRight(String
See the border-right property definition in CSS2.
|
void |
setBorderRightColor(String
See the border-right-color property definition in CSS2.
|
void |
setBorderRightStyle(String
See the border-right-style property definition in CSS2.
|
void |
setBorderRightWidth(String
See the border-right-width property definition in CSS2.
|
void |
setBorderSpacing(String
See the border-spacing property definition in CSS2.
|
void |
setBorderStyle(String
See the border-style property definition in CSS2.
|
void |
setBorderTop(String
See the border-top property definition in CSS2.
|
void |
setBorderTopColor(String
See the border-top-color property definition in CSS2.
|
void |
setBorderTopStyle(String
See the border-top-style property definition in CSS2.
|
void |
setBorderTopWidth(String
See the border-top-width property definition in CSS2.
|
void |
setBorderWidth(String
See the border-width property definition in CSS2.
|
void |
setBottom(String
See the bottom property definition in CSS2.
|
void |
setCaptionSide(String
See the caption-side property definition in CSS2.
|
void |
setClear(String
See the clear property definition in CSS2.
|
void |
setClip(String
See the clip property definition in CSS2.
|
void |
setColor(String
See the color property definition in CSS2.
|
void |
setContent(String
See the content property definition in CSS2.
|
void |
setCounterIncrement(String
See the counter-increment property definition in CSS2.
|
void |
setCounterReset(String
See the counter-reset property definition in CSS2.
|
void |
setCssFloat(String
See the float property definition in CSS2.
|
void |
setCue(String
See the cue property definition in CSS2.
|
void |
setCueAfter(String
See the cue-after property definition in CSS2.
|
void |
setCueBefore(String
See the cue-before property definition in CSS2.
|
void |
setCursor(String
See the cursor property definition in CSS2.
|
void |
setDirection(String
See the direction property definition in CSS2.
|
void |
setDisplay(String
See the display property definition in CSS2.
|
void |
setElevation(String
See the elevation property definition in CSS2.
|
void |
setEmptyCells(String
See the empty-cells property definition in CSS2.
|
void |
setFont(String
See the font property definition in CSS2.
|
void |
setFontFamily(String
See the font-family property definition in CSS2.
|
void |
setFontSize(String
See the font-size property definition in CSS2.
|
void |
setFontSizeAdjust(String
See the font-size-adjust property definition in CSS2.
|
void |
setFontStretch(String
See the font-stretch property definition in CSS2.
|
void |
setFontStyle(String
See the font-style property definition in CSS2.
|
void |
setFontVariant(String
See the font-variant property definition in CSS2.
|
void |
setFontWeight(String
See the font-weight property definition in CSS2.
|
void |
setHeight(String
See the height property definition in CSS2.
|
void |
setLeft(String
See the left property definition in CSS2.
|
void |
setLetterSpacing(String
See the letter-spacing property definition in CSS2.
|
void |
setLineHeight(String
See the line-height property definition in CSS2.
|
void |
setListStyle(String
See the list-style property definition in CSS2.
|
void |
setListStyleImage(String
See the list-style-image property definition in CSS2.
|
void |
setListStylePosition(String
See the list-style-position property definition in CSS2.
|
void |
setListStyleType(String
See the list-style-type property definition in CSS2.
|
void |
setMargin(String
See the margin property definition in CSS2.
|
void |
setMarginBottom(String
See the margin-bottom property definition in CSS2.
|
void |
setMarginLeft(String
See the margin-left property definition in CSS2.
|
void |
setMarginRight(String
See the margin-right property definition in CSS2.
|
void |
setMarginTop(String
See the margin-top property definition in CSS2.
|
void |
setMarkerOffset(String
See the marker-offset property definition in CSS2.
|
void |
setMarks(String
See the marks property definition in CSS2.
|
void |
setMaxHeight(String
See the max-height property definition in CSS2.
|
void |
setMaxWidth(String
See the max-width property definition in CSS2.
|
void |
setMinHeight(String
See the min-height property definition in CSS2.
|
void |
setMinWidth(String
See the min-width property definition in CSS2.
|
void |
setOrphans(String
See the orphans property definition in CSS2.
|
void |
setOutline(String
See the outline property definition in CSS2.
|
void |
setOutlineColor(String
See the outline-color property definition in CSS2.
|
void |
setOutlineStyle(String
See the outline-style property definition in CSS2.
|
void |
setOutlineWidth(String
See the outline-width property definition in CSS2.
|
void |
setOverflow(String
See the overflow property definition in CSS2.
|
void |
setPadding(String
See the padding property definition in CSS2.
|
void |
setPaddingBottom(String
See the padding-bottom property definition in CSS2.
|
void |
setPaddingLeft(String
See the padding-left property definition in CSS2.
|
void |
setPaddingRight(String
See the padding-right property definition in CSS2.
|
void |
setPaddingTop(String
See the padding-top property definition in CSS2.
|
void |
setPage(String
See the page property definition in CSS2.
|
void |
setPageBreakAfter(String
See the page-break-after property definition in CSS2.
|
void |
setPageBreakBefore(String
See the page-break-before property definition in CSS2.
|
void |
setPageBreakInside(String
See the page-break-inside property definition in CSS2.
|
void |
setPause(String
See the pause property definition in CSS2.
|
void |
setPauseAfter(String
See the pause-after property definition in CSS2.
|
void |
setPauseBefore(String
See the pause-before property definition in CSS2.
|
void |
setPitch(String
See the pitch property definition in CSS2.
|
void |
setPitchRange(String
See the pitch-range property definition in CSS2.
|
void |
setPlayDuring(String
See the play-during property definition in CSS2.
|
void |
setPosition(String
See the position property definition in CSS2.
|
void |
setQuotes(String
See the quotes property definition in CSS2.
|
void |
setRichness(String
See the richness property definition in CSS2.
|
void |
setRight(String
See the right property definition in CSS2.
|
void |
setSize(String
See the size property definition in CSS2.
|
void |
setSpeak(String
See the speak property definition in CSS2.
|
void |
setSpeakHeader(String
See the speak-header property definition in CSS2.
|
void |
setSpeakNumeral(String
See the speak-numeral property definition in CSS2.
|
void |
setSpeakPunctuation(String
See the speak-punctuation property definition in CSS2.
|
void |
setSpeechRate(String
See the speech-rate property definition in CSS2.
|
void |
setStress(String
See the stress property definition in CSS2.
|
void |
setTableLayout(String
See the table-layout property definition in CSS2.
|
void |
setTextAlign(String
See the text-align property definition in CSS2.
|
void |
setTextDecoration(String
See the text-decoration property definition in CSS2.
|
void |
setTextIndent(String
See the text-indent property definition in CSS2.
|
void |
setTextShadow(String
See the text-shadow property definition in CSS2.
|
void |
setTextTransform(String
See the text-transform property definition in CSS2.
|
void |
setTop(String
See the top property definition in CSS2.
|
void |
setUnicodeBidi(String
See the unicode-bidi property definition in CSS2.
|
void |
setVerticalAlign(String
See the vertical-align property definition in CSS2.
|
void |
setVisibility(String
See the visibility property definition in CSS2.
|
void |
setVoiceFamily(String
See the voice-family property definition in CSS2.
|
void |
setVolume(String
See the volume property definition in CSS2.
|
void |
setWhiteSpace(String
See the white-space property definition in CSS2.
|
void |
setWidows(String
See the widows property definition in CSS2.
|
void |
setWidth(String
See the width property definition in CSS2.
|
void |
setWordSpacing(String
See the word-spacing property definition in CSS2.
|
void |
setZIndex(String
See the z-index property definition in CSS2.
|
StringgetAzimuth()
void setAzimuth(Stringazimuth) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetBackground()
void setBackground(Stringbackground) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetBackgroundAttachment()
void setBackgroundAttachment(StringbackgroundAttachment) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetBackgroundColor()
void setBackgroundColor(StringbackgroundColor) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetBackgroundImage()
void setBackgroundImage(StringbackgroundImage) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetBackgroundPosition()
void setBackgroundPosition(StringbackgroundPosition) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetBackgroundRepeat()
void setBackgroundRepeat(StringbackgroundRepeat) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetBorder()
void setBorder(Stringborder) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetBorderCollapse()
void setBorderCollapse(StringborderCollapse) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetBorderColor()
void setBorderColor(StringborderColor) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetBorderSpacing()
void setBorderSpacing(StringborderSpacing) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetBorderStyle()
void setBorderStyle(StringborderStyle) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetBorderTop()
void setBorderTop(StringborderTop) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetBorderRight()
void setBorderRight(StringborderRight) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetBorderBottom()
void setBorderBottom(StringborderBottom) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetBorderLeft()
void setBorderLeft(StringborderLeft) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetBorderTopColor()
void setBorderTopColor(StringborderTopColor) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetBorderRightColor()
void setBorderRightColor(StringborderRightColor) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetBorderBottomColor()
void setBorderBottomColor(StringborderBottomColor) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetBorderLeftColor()
void setBorderLeftColor(StringborderLeftColor) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetBorderTopStyle()
void setBorderTopStyle(StringborderTopStyle) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetBorderRightStyle()
void setBorderRightStyle(StringborderRightStyle) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetBorderBottomStyle()
void setBorderBottomStyle(StringborderBottomStyle) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetBorderLeftStyle()
void setBorderLeftStyle(StringborderLeftStyle) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetBorderTopWidth()
void setBorderTopWidth(StringborderTopWidth) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetBorderRightWidth()
void setBorderRightWidth(StringborderRightWidth) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetBorderBottomWidth()
void setBorderBottomWidth(StringborderBottomWidth) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetBorderLeftWidth()
void setBorderLeftWidth(StringborderLeftWidth) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetBorderWidth()
void setBorderWidth(StringborderWidth) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetBottom()
void setBottom(Stringbottom) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetCaptionSide()
void setCaptionSide(StringcaptionSide) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetClear()
void setClear(Stringclear) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetClip()
void setClip(Stringclip) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetColor()
void setColor(Stringcolor) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetContent()
void setContent(Stringcontent) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetCounterIncrement()
void setCounterIncrement(StringcounterIncrement) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetCounterReset()
void setCounterReset(StringcounterReset) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetCue()
void setCue(Stringcue) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetCueAfter()
void setCueAfter(StringcueAfter) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetCueBefore()
void setCueBefore(StringcueBefore) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetCursor()
void setCursor(Stringcursor) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetDirection()
void setDirection(Stringdirection) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetDisplay()
void setDisplay(Stringdisplay) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetElevation()
void setElevation(Stringelevation) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetEmptyCells()
void setEmptyCells(StringemptyCells) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetCssFloat()
void setCssFloat(StringcssFloat) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetFont()
void setFont(Stringfont) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetFontFamily()
void setFontFamily(StringfontFamily) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetFontSize()
void setFontSize(StringfontSize) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetFontSizeAdjust()
void setFontSizeAdjust(StringfontSizeAdjust) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetFontStretch()
void setFontStretch(StringfontStretch) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetFontStyle()
void setFontStyle(StringfontStyle) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetFontVariant()
void setFontVariant(StringfontVariant) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetFontWeight()
void setFontWeight(StringfontWeight) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetHeight()
void setHeight(Stringheight) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetLeft()
void setLeft(Stringleft) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetLetterSpacing()
void setLetterSpacing(StringletterSpacing) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetLineHeight()
void setLineHeight(StringlineHeight) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetListStyle()
void setListStyle(StringlistStyle) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetListStyleImage()
void setListStyleImage(StringlistStyleImage) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetListStylePosition()
void setListStylePosition(StringlistStylePosition) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetListStyleType()
void setListStyleType(StringlistStyleType) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetMargin()
void setMargin(Stringmargin) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetMarginTop()
void setMarginTop(StringmarginTop) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetMarginRight()
void setMarginRight(StringmarginRight) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetMarginBottom()
void setMarginBottom(StringmarginBottom) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetMarginLeft()
void setMarginLeft(StringmarginLeft) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetMarkerOffset()
void setMarkerOffset(StringmarkerOffset) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetMarks()
void setMarks(Stringmarks) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetMaxHeight()
void setMaxHeight(StringmaxHeight) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetMaxWidth()
void setMaxWidth(StringmaxWidth) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetMinHeight()
void setMinHeight(StringminHeight) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetMinWidth()
void setMinWidth(StringminWidth) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetOrphans()
void setOrphans(Stringorphans) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetOutline()
void setOutline(Stringoutline) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetOutlineColor()
void setOutlineColor(StringoutlineColor) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetOutlineStyle()
void setOutlineStyle(StringoutlineStyle) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetOutlineWidth()
void setOutlineWidth(StringoutlineWidth) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetOverflow()
void setOverflow(Stringoverflow) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetPadding()
void setPadding(Stringpadding) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetPaddingTop()
void setPaddingTop(StringpaddingTop) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetPaddingRight()
void setPaddingRight(StringpaddingRight) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetPaddingBottom()
void setPaddingBottom(StringpaddingBottom) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetPaddingLeft()
void setPaddingLeft(StringpaddingLeft) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetPage()
void setPage(Stringpage) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetPageBreakAfter()
void setPageBreakAfter(StringpageBreakAfter) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetPageBreakBefore()
void setPageBreakBefore(StringpageBreakBefore) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetPageBreakInside()
void setPageBreakInside(StringpageBreakInside) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetPause()
void setPause(Stringpause) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetPauseAfter()
void setPauseAfter(StringpauseAfter) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetPauseBefore()
void setPauseBefore(StringpauseBefore) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetPitch()
void setPitch(Stringpitch) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetPitchRange()
void setPitchRange(StringpitchRange) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetPlayDuring()
void setPlayDuring(StringplayDuring) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetPosition()
void setPosition(Stringposition) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetQuotes()
void setQuotes(Stringquotes) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetRichness()
void setRichness(Stringrichness) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetRight()
void setRight(Stringright) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetSize()
void setSize(Stringsize) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetSpeak()
void setSpeak(Stringspeak) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetSpeakHeader()
void setSpeakHeader(StringspeakHeader) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetSpeakNumeral()
void setSpeakNumeral(StringspeakNumeral) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetSpeakPunctuation()
void setSpeakPunctuation(StringspeakPunctuation) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetSpeechRate()
void setSpeechRate(StringspeechRate) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetStress()
void setStress(Stringstress) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetTableLayout()
void setTableLayout(StringtableLayout) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetTextAlign()
void setTextAlign(StringtextAlign) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetTextDecoration()
void setTextDecoration(StringtextDecoration) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetTextIndent()
void setTextIndent(StringtextIndent) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetTextShadow()
void setTextShadow(StringtextShadow) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetTextTransform()
void setTextTransform(StringtextTransform) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetTop()
void setTop(Stringtop) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetUnicodeBidi()
void setUnicodeBidi(StringunicodeBidi) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetVerticalAlign()
void setVerticalAlign(StringverticalAlign) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetVisibility()
void setVisibility(Stringvisibility) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetVoiceFamily()
void setVoiceFamily(StringvoiceFamily) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetVolume()
void setVolume(Stringvolume) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetWhiteSpace()
void setWhiteSpace(StringwhiteSpace) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetWidows()
void setWidows(Stringwidows) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetWidth()
void setWidth(Stringwidth) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetWordSpacing()
void setWordSpacing(StringwordSpacing) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
StringgetZIndex()
void setZIndex(StringzIndex) throws DOMException
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.