org.w3c.dom.css
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 |
---|---|
java.lang.String |
getAzimuth()
See the azimuth property definition in CSS2.
|
java.lang.String |
getBackground()
See the background property definition in CSS2.
|
java.lang.String |
getBackgroundAttachment()
See the background-attachment property definition in CSS2.
|
java.lang.String |
getBackgroundColor()
See the background-color property definition in CSS2.
|
java.lang.String |
getBackgroundImage()
See the background-image property definition in CSS2.
|
java.lang.String |
getBackgroundPosition()
See the background-position property definition in CSS2.
|
java.lang.String |
getBackgroundRepeat()
See the background-repeat property definition in CSS2.
|
java.lang.String |
getBorder()
See the border property definition in CSS2.
|
java.lang.String |
getBorderBottom()
See the border-bottom property definition in CSS2.
|
java.lang.String |
getBorderBottomColor()
See the border-bottom-color property definition in CSS2.
|
java.lang.String |
getBorderBottomStyle()
See the border-bottom-style property definition in CSS2.
|
java.lang.String |
getBorderBottomWidth()
See the border-bottom-width property definition in CSS2.
|
java.lang.String |
getBorderCollapse()
See the border-collapse property definition in CSS2.
|
java.lang.String |
getBorderColor()
See the border-color property definition in CSS2.
|
java.lang.String |
getBorderLeft()
See the border-left property definition in CSS2.
|
java.lang.String |
getBorderLeftColor()
See the border-left-color property definition in CSS2.
|
java.lang.String |
getBorderLeftStyle()
See the border-left-style property definition in CSS2.
|
java.lang.String |
getBorderLeftWidth()
See the border-left-width property definition in CSS2.
|
java.lang.String |
getBorderRight()
See the border-right property definition in CSS2.
|
java.lang.String |
getBorderRightColor()
See the border-right-color property definition in CSS2.
|
java.lang.String |
getBorderRightStyle()
See the border-right-style property definition in CSS2.
|
java.lang.String |
getBorderRightWidth()
See the border-right-width property definition in CSS2.
|
java.lang.String |
getBorderSpacing()
See the border-spacing property definition in CSS2.
|
java.lang.String |
getBorderStyle()
See the border-style property definition in CSS2.
|
java.lang.String |
getBorderTop()
See the border-top property definition in CSS2.
|
java.lang.String |
getBorderTopColor()
See the border-top-color property definition in CSS2.
|
java.lang.String |
getBorderTopStyle()
See the border-top-style property definition in CSS2.
|
java.lang.String |
getBorderTopWidth()
See the border-top-width property definition in CSS2.
|
java.lang.String |
getBorderWidth()
See the border-width property definition in CSS2.
|
java.lang.String |
getBottom()
See the bottom property definition in CSS2.
|
java.lang.String |
getCaptionSide()
See the caption-side property definition in CSS2.
|
java.lang.String |
getClear()
See the clear property definition in CSS2.
|
java.lang.String |
getClip()
See the clip property definition in CSS2.
|
java.lang.String |
getColor()
See the color property definition in CSS2.
|
java.lang.String |
getContent()
See the content property definition in CSS2.
|
java.lang.String |
getCounterIncrement()
See the counter-increment property definition in CSS2.
|
java.lang.String |
getCounterReset()
See the counter-reset property definition in CSS2.
|
java.lang.String |
getCssFloat()
See the float property definition in CSS2.
|
java.lang.String |
getCue()
See the cue property definition in CSS2.
|
java.lang.String |
getCueAfter()
See the cue-after property definition in CSS2.
|
java.lang.String |
getCueBefore()
See the cue-before property definition in CSS2.
|
java.lang.String |
getCursor()
See the cursor property definition in CSS2.
|
java.lang.String |
getDirection()
See the direction property definition in CSS2.
|
java.lang.String |
getDisplay()
See the display property definition in CSS2.
|
java.lang.String |
getElevation()
See the elevation property definition in CSS2.
|
java.lang.String |
getEmptyCells()
See the empty-cells property definition in CSS2.
|
java.lang.String |
getFont()
See the font property definition in CSS2.
|
java.lang.String |
getFontFamily()
See the font-family property definition in CSS2.
|
java.lang.String |
getFontSize()
See the font-size property definition in CSS2.
|
java.lang.String |
getFontSizeAdjust()
See the font-size-adjust property definition in CSS2.
|
java.lang.String |
getFontStretch()
See the font-stretch property definition in CSS2.
|
java.lang.String |
getFontStyle()
See the font-style property definition in CSS2.
|
java.lang.String |
getFontVariant()
See the font-variant property definition in CSS2.
|
java.lang.String |
getFontWeight()
See the font-weight property definition in CSS2.
|
java.lang.String |
getHeight()
See the height property definition in CSS2.
|
java.lang.String |
getLeft()
See the left property definition in CSS2.
|
java.lang.String |
getLetterSpacing()
See the letter-spacing property definition in CSS2.
|
java.lang.String |
getLineHeight()
See the line-height property definition in CSS2.
|
java.lang.String |
getListStyle()
See the list-style property definition in CSS2.
|
java.lang.String |
getListStyleImage()
See the list-style-image property definition in CSS2.
|
java.lang.String |
getListStylePosition()
See the list-style-position property definition in CSS2.
|
java.lang.String |
getListStyleType()
See the list-style-type property definition in CSS2.
|
java.lang.String |
getMargin()
See the margin property definition in CSS2.
|
java.lang.String |
getMarginBottom()
See the margin-bottom property definition in CSS2.
|
java.lang.String |
getMarginLeft()
See the margin-left property definition in CSS2.
|
java.lang.String |
getMarginRight()
See the margin-right property definition in CSS2.
|
java.lang.String |
getMarginTop()
See the margin-top property definition in CSS2.
|
java.lang.String |
getMarkerOffset()
See the marker-offset property definition in CSS2.
|
java.lang.String |
getMarks()
See the marks property definition in CSS2.
|
java.lang.String |
getMaxHeight()
See the max-height property definition in CSS2.
|
java.lang.String |
getMaxWidth()
See the max-width property definition in CSS2.
|
java.lang.String |
getMinHeight()
See the min-height property definition in CSS2.
|
java.lang.String |
getMinWidth()
See the min-width property definition in CSS2.
|
java.lang.String |
getOrphans()
See the orphans property definition in CSS2.
|
java.lang.String |
getOutline()
See the outline property definition in CSS2.
|
java.lang.String |
getOutlineColor()
See the outline-color property definition in CSS2.
|
java.lang.String |
getOutlineStyle()
See the outline-style property definition in CSS2.
|
java.lang.String |
getOutlineWidth()
See the outline-width property definition in CSS2.
|
java.lang.String |
getOverflow()
See the overflow property definition in CSS2.
|
java.lang.String |
getPadding()
See the padding property definition in CSS2.
|
java.lang.String |
getPaddingBottom()
See the padding-bottom property definition in CSS2.
|
java.lang.String |
getPaddingLeft()
See the padding-left property definition in CSS2.
|
java.lang.String |
getPaddingRight()
See the padding-right property definition in CSS2.
|
java.lang.String |
getPaddingTop()
See the padding-top property definition in CSS2.
|
java.lang.String |
getPage()
See the page property definition in CSS2.
|
java.lang.String |
getPageBreakAfter()
See the page-break-after property definition in CSS2.
|
java.lang.String |
getPageBreakBefore()
See the page-break-before property definition in CSS2.
|
java.lang.String |
getPageBreakInside()
See the page-break-inside property definition in CSS2.
|
java.lang.String |
getPause()
See the pause property definition in CSS2.
|
java.lang.String |
getPauseAfter()
See the pause-after property definition in CSS2.
|
java.lang.String |
getPauseBefore()
See the pause-before property definition in CSS2.
|
java.lang.String |
getPitch()
See the pitch property definition in CSS2.
|
java.lang.String |
getPitchRange()
See the pitch-range property definition in CSS2.
|
java.lang.String |
getPlayDuring()
See the play-during property definition in CSS2.
|
java.lang.String |
getPosition()
See the position property definition in CSS2.
|
java.lang.String |
getQuotes()
See the quotes property definition in CSS2.
|
java.lang.String |
getRichness()
See the richness property definition in CSS2.
|
java.lang.String |
getRight()
See the right property definition in CSS2.
|
java.lang.String |
getSize()
See the size property definition in CSS2.
|
java.lang.String |
getSpeak()
See the speak property definition in CSS2.
|
java.lang.String |
getSpeakHeader()
See the speak-header property definition in CSS2.
|
java.lang.String |
getSpeakNumeral()
See the speak-numeral property definition in CSS2.
|
java.lang.String |
getSpeakPunctuation()
See the speak-punctuation property definition in CSS2.
|
java.lang.String |
getSpeechRate()
See the speech-rate property definition in CSS2.
|
java.lang.String |
getStress()
See the stress property definition in CSS2.
|
java.lang.String |
getTableLayout()
See the table-layout property definition in CSS2.
|
java.lang.String |
getTextAlign()
See the text-align property definition in CSS2.
|
java.lang.String |
getTextDecoration()
See the text-decoration property definition in CSS2.
|
java.lang.String |
getTextIndent()
See the text-indent property definition in CSS2.
|
java.lang.String |
getTextShadow()
See the text-shadow property definition in CSS2.
|
java.lang.String |
getTextTransform()
See the text-transform property definition in CSS2.
|
java.lang.String |
getTop()
See the top property definition in CSS2.
|
java.lang.String |
getUnicodeBidi()
See the unicode-bidi property definition in CSS2.
|
java.lang.String |
getVerticalAlign()
See the vertical-align property definition in CSS2.
|
java.lang.String |
getVisibility()
See the visibility property definition in CSS2.
|
java.lang.String |
getVoiceFamily()
See the voice-family property definition in CSS2.
|
java.lang.String |
getVolume()
See the volume property definition in CSS2.
|
java.lang.String |
getWhiteSpace()
See the white-space property definition in CSS2.
|
java.lang.String |
getWidows()
See the widows property definition in CSS2.
|
java.lang.String |
getWidth()
See the width property definition in CSS2.
|
java.lang.String |
getWordSpacing()
See the word-spacing property definition in CSS2.
|
java.lang.String |
getZIndex()
See the z-index property definition in CSS2.
|
void |
setAzimuth(java.lang.String azimuth) |
void |
setBackground(java.lang.String background) |
void |
setBackgroundAttachment(java.lang.String backgroundAttachment) |
void |
setBackgroundColor(java.lang.String backgroundColor) |
void |
setBackgroundImage(java.lang.String backgroundImage) |
void |
setBackgroundPosition(java.lang.String backgroundPosition) |
void |
setBackgroundRepeat(java.lang.String backgroundRepeat) |
void |
setBorder(java.lang.String border) |
void |
setBorderBottom(java.lang.String borderBottom) |
void |
setBorderBottomColor(java.lang.String borderBottomColor) |
void |
setBorderBottomStyle(java.lang.String borderBottomStyle) |
void |
setBorderBottomWidth(java.lang.String borderBottomWidth) |
void |
setBorderCollapse(java.lang.String borderCollapse) |
void |
setBorderColor(java.lang.String borderColor) |
void |
setBorderLeft(java.lang.String borderLeft) |
void |
setBorderLeftColor(java.lang.String borderLeftColor) |
void |
setBorderLeftStyle(java.lang.String borderLeftStyle) |
void |
setBorderLeftWidth(java.lang.String borderLeftWidth) |
void |
setBorderRight(java.lang.String borderRight) |
void |
setBorderRightColor(java.lang.String borderRightColor) |
void |
setBorderRightStyle(java.lang.String borderRightStyle) |
void |
setBorderRightWidth(java.lang.String borderRightWidth) |
void |
setBorderSpacing(java.lang.String borderSpacing) |
void |
setBorderStyle(java.lang.String borderStyle) |
void |
setBorderTop(java.lang.String borderTop) |
void |
setBorderTopColor(java.lang.String borderTopColor) |
void |
setBorderTopStyle(java.lang.String borderTopStyle) |
void |
setBorderTopWidth(java.lang.String borderTopWidth) |
void |
setBorderWidth(java.lang.String borderWidth) |
void |
setBottom(java.lang.String bottom) |
void |
setCaptionSide(java.lang.String captionSide) |
void |
setClear(java.lang.String clear) |
void |
setClip(java.lang.String clip) |
void |
setColor(java.lang.String color) |
void |
setContent(java.lang.String content) |
void |
setCounterIncrement(java.lang.String counterIncrement) |
void |
setCounterReset(java.lang.String counterReset) |
void |
setCssFloat(java.lang.String cssFloat) |
void |
setCue(java.lang.String cue) |
void |
setCueAfter(java.lang.String cueAfter) |
void |
setCueBefore(java.lang.String cueBefore) |
void |
setCursor(java.lang.String cursor) |
void |
setDirection(java.lang.String direction) |
void |
setDisplay(java.lang.String display) |
void |
setElevation(java.lang.String elevation) |
void |
setEmptyCells(java.lang.String emptyCells) |
void |
setFont(java.lang.String font) |
void |
setFontFamily(java.lang.String fontFamily) |
void |
setFontSize(java.lang.String fontSize) |
void |
setFontSizeAdjust(java.lang.String fontSizeAdjust) |
void |
setFontStretch(java.lang.String fontStretch) |
void |
setFontStyle(java.lang.String fontStyle) |
void |
setFontVariant(java.lang.String fontVariant) |
void |
setFontWeight(java.lang.String fontWeight) |
void |
setHeight(java.lang.String height) |
void |
setLeft(java.lang.String left) |
void |
setLetterSpacing(java.lang.String letterSpacing) |
void |
setLineHeight(java.lang.String lineHeight) |
void |
setListStyle(java.lang.String listStyle) |
void |
setListStyleImage(java.lang.String listStyleImage) |
void |
setListStylePosition(java.lang.String listStylePosition) |
void |
setListStyleType(java.lang.String listStyleType) |
void |
setMargin(java.lang.String margin) |
void |
setMarginBottom(java.lang.String marginBottom) |
void |
setMarginLeft(java.lang.String marginLeft) |
void |
setMarginRight(java.lang.String marginRight) |
void |
setMarginTop(java.lang.String marginTop) |
void |
setMarkerOffset(java.lang.String markerOffset) |
void |
setMarks(java.lang.String marks) |
void |
setMaxHeight(java.lang.String maxHeight) |
void |
setMaxWidth(java.lang.String maxWidth) |
void |
setMinHeight(java.lang.String minHeight) |
void |
setMinWidth(java.lang.String minWidth) |
void |
setOrphans(java.lang.String orphans) |
void |
setOutline(java.lang.String outline) |
void |
setOutlineColor(java.lang.String outlineColor) |
void |
setOutlineStyle(java.lang.String outlineStyle) |
void |
setOutlineWidth(java.lang.String outlineWidth) |
void |
setOverflow(java.lang.String overflow) |
void |
setPadding(java.lang.String padding) |
void |
setPaddingBottom(java.lang.String paddingBottom) |
void |
setPaddingLeft(java.lang.String paddingLeft) |
void |
setPaddingRight(java.lang.String paddingRight) |
void |
setPaddingTop(java.lang.String paddingTop) |
void |
setPage(java.lang.String page) |
void |
setPageBreakAfter(java.lang.String pageBreakAfter) |
void |
setPageBreakBefore(java.lang.String pageBreakBefore) |
void |
setPageBreakInside(java.lang.String pageBreakInside) |
void |
setPause(java.lang.String pause) |
void |
setPauseAfter(java.lang.String pauseAfter) |
void |
setPauseBefore(java.lang.String pauseBefore) |
void |
setPitch(java.lang.String pitch) |
void |
setPitchRange(java.lang.String pitchRange) |
void |
setPlayDuring(java.lang.String playDuring) |
void |
setPosition(java.lang.String position) |
void |
setQuotes(java.lang.String quotes) |
void |
setRichness(java.lang.String richness) |
void |
setRight(java.lang.String right) |
void |
setSize(java.lang.String size) |
void |
setSpeak(java.lang.String speak) |
void |
setSpeakHeader(java.lang.String speakHeader) |
void |
setSpeakNumeral(java.lang.String speakNumeral) |
void |
setSpeakPunctuation(java.lang.String speakPunctuation) |
void |
setSpeechRate(java.lang.String speechRate) |
void |
setStress(java.lang.String stress) |
void |
setTableLayout(java.lang.String tableLayout) |
void |
setTextAlign(java.lang.String textAlign) |
void |
setTextDecoration(java.lang.String textDecoration) |
void |
setTextIndent(java.lang.String textIndent) |
void |
setTextShadow(java.lang.String textShadow) |
void |
setTextTransform(java.lang.String textTransform) |
void |
setTop(java.lang.String top) |
void |
setUnicodeBidi(java.lang.String unicodeBidi) |
void |
setVerticalAlign(java.lang.String verticalAlign) |
void |
setVisibility(java.lang.String visibility) |
void |
setVoiceFamily(java.lang.String voiceFamily) |
void |
setVolume(java.lang.String volume) |
void |
setWhiteSpace(java.lang.String whiteSpace) |
void |
setWidows(java.lang.String widows) |
void |
setWidth(java.lang.String width) |
void |
setWordSpacing(java.lang.String wordSpacing) |
void |
setZIndex(java.lang.String zIndex) |
java.lang.String getAzimuth()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setAzimuth(java.lang.String azimuth) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getBackground()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setBackground(java.lang.String background) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getBackgroundAttachment()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setBackgroundAttachment(java.lang.String backgroundAttachment) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getBackgroundColor()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setBackgroundColor(java.lang.String backgroundColor) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getBackgroundImage()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setBackgroundImage(java.lang.String backgroundImage) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getBackgroundPosition()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setBackgroundPosition(java.lang.String backgroundPosition) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getBackgroundRepeat()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setBackgroundRepeat(java.lang.String backgroundRepeat) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getBorder()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setBorder(java.lang.String border) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getBorderCollapse()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setBorderCollapse(java.lang.String borderCollapse) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getBorderColor()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setBorderColor(java.lang.String borderColor) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getBorderSpacing()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setBorderSpacing(java.lang.String borderSpacing) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getBorderStyle()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setBorderStyle(java.lang.String borderStyle) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getBorderTop()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setBorderTop(java.lang.String borderTop) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getBorderRight()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setBorderRight(java.lang.String borderRight) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getBorderBottom()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setBorderBottom(java.lang.String borderBottom) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getBorderLeft()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setBorderLeft(java.lang.String borderLeft) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getBorderTopColor()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setBorderTopColor(java.lang.String borderTopColor) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getBorderRightColor()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setBorderRightColor(java.lang.String borderRightColor) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getBorderBottomColor()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setBorderBottomColor(java.lang.String borderBottomColor) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getBorderLeftColor()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setBorderLeftColor(java.lang.String borderLeftColor) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getBorderTopStyle()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setBorderTopStyle(java.lang.String borderTopStyle) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getBorderRightStyle()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setBorderRightStyle(java.lang.String borderRightStyle) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getBorderBottomStyle()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setBorderBottomStyle(java.lang.String borderBottomStyle) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getBorderLeftStyle()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setBorderLeftStyle(java.lang.String borderLeftStyle) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getBorderTopWidth()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setBorderTopWidth(java.lang.String borderTopWidth) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getBorderRightWidth()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setBorderRightWidth(java.lang.String borderRightWidth) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getBorderBottomWidth()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setBorderBottomWidth(java.lang.String borderBottomWidth) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getBorderLeftWidth()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setBorderLeftWidth(java.lang.String borderLeftWidth) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getBorderWidth()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setBorderWidth(java.lang.String borderWidth) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getBottom()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setBottom(java.lang.String bottom) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getCaptionSide()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setCaptionSide(java.lang.String captionSide) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getClear()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setClear(java.lang.String clear) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getClip()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setClip(java.lang.String clip) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getColor()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setColor(java.lang.String color) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getContent()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setContent(java.lang.String content) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getCounterIncrement()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setCounterIncrement(java.lang.String counterIncrement) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getCounterReset()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setCounterReset(java.lang.String counterReset) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getCue()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setCue(java.lang.String cue) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getCueAfter()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setCueAfter(java.lang.String cueAfter) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getCueBefore()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setCueBefore(java.lang.String cueBefore) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getCursor()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setCursor(java.lang.String cursor) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getDirection()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setDirection(java.lang.String direction) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getDisplay()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setDisplay(java.lang.String display) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getElevation()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setElevation(java.lang.String elevation) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getEmptyCells()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setEmptyCells(java.lang.String emptyCells) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getCssFloat()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setCssFloat(java.lang.String cssFloat) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getFont()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setFont(java.lang.String font) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getFontFamily()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setFontFamily(java.lang.String fontFamily) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getFontSize()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setFontSize(java.lang.String fontSize) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getFontSizeAdjust()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setFontSizeAdjust(java.lang.String fontSizeAdjust) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getFontStretch()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setFontStretch(java.lang.String fontStretch) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getFontStyle()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setFontStyle(java.lang.String fontStyle) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getFontVariant()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setFontVariant(java.lang.String fontVariant) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getFontWeight()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setFontWeight(java.lang.String fontWeight) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getHeight()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setHeight(java.lang.String height) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getLeft()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setLeft(java.lang.String left) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getLetterSpacing()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setLetterSpacing(java.lang.String letterSpacing) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getLineHeight()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setLineHeight(java.lang.String lineHeight) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getListStyle()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setListStyle(java.lang.String listStyle) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getListStyleImage()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setListStyleImage(java.lang.String listStyleImage) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getListStylePosition()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setListStylePosition(java.lang.String listStylePosition) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getListStyleType()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setListStyleType(java.lang.String listStyleType) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getMargin()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setMargin(java.lang.String margin) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getMarginTop()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setMarginTop(java.lang.String marginTop) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getMarginRight()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setMarginRight(java.lang.String marginRight) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getMarginBottom()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setMarginBottom(java.lang.String marginBottom) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getMarginLeft()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setMarginLeft(java.lang.String marginLeft) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getMarkerOffset()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setMarkerOffset(java.lang.String markerOffset) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getMarks()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setMarks(java.lang.String marks) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getMaxHeight()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setMaxHeight(java.lang.String maxHeight) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getMaxWidth()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setMaxWidth(java.lang.String maxWidth) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getMinHeight()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setMinHeight(java.lang.String minHeight) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getMinWidth()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setMinWidth(java.lang.String minWidth) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getOrphans()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setOrphans(java.lang.String orphans) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getOutline()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setOutline(java.lang.String outline) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getOutlineColor()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setOutlineColor(java.lang.String outlineColor) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getOutlineStyle()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setOutlineStyle(java.lang.String outlineStyle) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getOutlineWidth()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setOutlineWidth(java.lang.String outlineWidth) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getOverflow()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setOverflow(java.lang.String overflow) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getPadding()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setPadding(java.lang.String padding) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getPaddingTop()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setPaddingTop(java.lang.String paddingTop) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getPaddingRight()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setPaddingRight(java.lang.String paddingRight) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getPaddingBottom()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setPaddingBottom(java.lang.String paddingBottom) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getPaddingLeft()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setPaddingLeft(java.lang.String paddingLeft) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getPage()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setPage(java.lang.String page) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getPageBreakAfter()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setPageBreakAfter(java.lang.String pageBreakAfter) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getPageBreakBefore()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setPageBreakBefore(java.lang.String pageBreakBefore) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getPageBreakInside()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setPageBreakInside(java.lang.String pageBreakInside) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getPause()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setPause(java.lang.String pause) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getPauseAfter()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setPauseAfter(java.lang.String pauseAfter) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getPauseBefore()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setPauseBefore(java.lang.String pauseBefore) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getPitch()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setPitch(java.lang.String pitch) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getPitchRange()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setPitchRange(java.lang.String pitchRange) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getPlayDuring()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setPlayDuring(java.lang.String playDuring) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getPosition()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setPosition(java.lang.String position) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getQuotes()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setQuotes(java.lang.String quotes) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getRichness()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setRichness(java.lang.String richness) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getRight()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setRight(java.lang.String right) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getSize()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setSize(java.lang.String size) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getSpeak()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setSpeak(java.lang.String speak) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getSpeakHeader()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setSpeakHeader(java.lang.String speakHeader) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getSpeakNumeral()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setSpeakNumeral(java.lang.String speakNumeral) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getSpeakPunctuation()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setSpeakPunctuation(java.lang.String speakPunctuation) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getSpeechRate()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setSpeechRate(java.lang.String speechRate) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getStress()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setStress(java.lang.String stress) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getTableLayout()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setTableLayout(java.lang.String tableLayout) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getTextAlign()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setTextAlign(java.lang.String textAlign) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getTextDecoration()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setTextDecoration(java.lang.String textDecoration) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getTextIndent()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setTextIndent(java.lang.String textIndent) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getTextShadow()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setTextShadow(java.lang.String textShadow) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getTextTransform()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setTextTransform(java.lang.String textTransform) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getTop()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setTop(java.lang.String top) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getUnicodeBidi()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setUnicodeBidi(java.lang.String unicodeBidi) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getVerticalAlign()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setVerticalAlign(java.lang.String verticalAlign) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getVisibility()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setVisibility(java.lang.String visibility) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getVoiceFamily()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setVoiceFamily(java.lang.String voiceFamily) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getVolume()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setVolume(java.lang.String volume) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getWhiteSpace()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setWhiteSpace(java.lang.String whiteSpace) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getWidows()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setWidows(java.lang.String widows) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getWidth()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setWidth(java.lang.String width) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getWordSpacing()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setWordSpacing(java.lang.String wordSpacing) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException
java.lang.String getZIndex()
org.w3c.dom.DOMException
- SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
void setZIndex(java.lang.String zIndex) throws org.w3c.dom.DOMException
org.w3c.dom.DOMException