FileDocCategorySizeDatePackage
CSS2Properties.javaAPI DocJava SE 5 API56346Fri Aug 26 14:58:38 BST 2005org.w3c.dom.css

CSS2Properties

public interface CSS2Properties
The CSS2Properties interface represents a convenience mechanism for retrieving and setting properties within a CSSStyleDeclaration. The attributes of this interface correspond to all the properties specified in CSS2. Getting an attribute of this interface is equivalent to calling the getPropertyValue method of the CSSStyleDeclaration interface. Setting an attribute of this interface is equivalent to calling the setProperty method of the CSSStyleDeclaration interface.

A conformant implementation of the CSS module is not required to implement the CSS2Properties interface. If an implementation does implement this interface, the expectation is that language-specific methods can be used to cast from an instance of the CSSStyleDeclaration interface to the CSS2Properties interface.

If an implementation does implement this interface, it is expected to understand the specific syntax of the shorthand properties, and apply their semantics; when the margin property is set, for example, the marginTop, marginRight, marginBottom and marginLeft properties are actually being set by the underlying implementation.

When dealing with CSS "shorthand" properties, the shorthand properties should be decomposed into their component longhand properties as appropriate, and when querying for their value, the form returned should be the shortest form exactly equivalent to the declarations made in the ruleset. However, if there is no shorthand declaration that could be added to the ruleset without changing in any way the rules already declared in the ruleset (i.e., by adding longhand rules that were previously not declared in the ruleset), then the empty string should be returned for the shorthand property.

For example, querying for the font property should not return "normal normal normal 14pt/normal Arial, sans-serif", when "14pt Arial, sans-serif" suffices. (The normals are initial values, and are implied by use of the longhand property.)

If the values for all the longhand properties that compose a particular string are the initial values, then a string consisting of all the initial values should be returned (e.g. a border-width value of "medium" should be returned as such, not as "").

For some shorthand properties that take missing values from other sides, such as the margin, padding, and border-[width|style|color] properties, the minimum number of sides possible should be used; i.e., "0px 10px" will be returned instead of "0px 10px 0px 10px".

If the value of a shorthand property can not be decomposed into its component longhand properties, as is the case for the font property with a value of "menu", querying for the values of the component longhand properties should return the empty string.

See also the Document Object Model (DOM) Level 2 Style Specification.

since
DOM Level 2

Fields Summary
Constructors Summary
Methods Summary
public java.lang.StringgetAzimuth()
See the azimuth property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetBackground()
See the background property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetBackgroundAttachment()
See the background-attachment property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetBackgroundColor()
See the background-color property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetBackgroundImage()
See the background-image property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetBackgroundPosition()
See the background-position property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetBackgroundRepeat()
See the background-repeat property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetBorder()
See the border property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetBorderBottom()
See the border-bottom property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetBorderBottomColor()
See the border-bottom-color property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetBorderBottomStyle()
See the border-bottom-style property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetBorderBottomWidth()
See the border-bottom-width property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetBorderCollapse()
See the border-collapse property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetBorderColor()
See the border-color property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetBorderLeft()
See the border-left property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetBorderLeftColor()
See the border-left-color property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetBorderLeftStyle()
See the border-left-style property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetBorderLeftWidth()
See the border-left-width property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetBorderRight()
See the border-right property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetBorderRightColor()
See the border-right-color property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetBorderRightStyle()
See the border-right-style property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetBorderRightWidth()
See the border-right-width property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetBorderSpacing()
See the border-spacing property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetBorderStyle()
See the border-style property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetBorderTop()
See the border-top property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetBorderTopColor()
See the border-top-color property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetBorderTopStyle()
See the border-top-style property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetBorderTopWidth()
See the border-top-width property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetBorderWidth()
See the border-width property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetBottom()
See the bottom property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetCaptionSide()
See the caption-side property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetClear()
See the clear property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetClip()
See the clip property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetColor()
See the color property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetContent()
See the content property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetCounterIncrement()
See the counter-increment property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetCounterReset()
See the counter-reset property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetCssFloat()
See the float property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetCue()
See the cue property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetCueAfter()
See the cue-after property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetCueBefore()
See the cue-before property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetCursor()
See the cursor property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetDirection()
See the direction property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetDisplay()
See the display property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetElevation()
See the elevation property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetEmptyCells()
See the empty-cells property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetFont()
See the font property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetFontFamily()
See the font-family property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetFontSize()
See the font-size property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetFontSizeAdjust()
See the font-size-adjust property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetFontStretch()
See the font-stretch property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetFontStyle()
See the font-style property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetFontVariant()
See the font-variant property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetFontWeight()
See the font-weight property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetHeight()
See the height property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetLeft()
See the left property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetLetterSpacing()
See the letter-spacing property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetLineHeight()
See the line-height property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetListStyle()
See the list-style property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetListStyleImage()
See the list-style-image property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetListStylePosition()
See the list-style-position property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetListStyleType()
See the list-style-type property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetMargin()
See the margin property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetMarginBottom()
See the margin-bottom property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetMarginLeft()
See the margin-left property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetMarginRight()
See the margin-right property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetMarginTop()
See the margin-top property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetMarkerOffset()
See the marker-offset property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetMarks()
See the marks property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetMaxHeight()
See the max-height property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetMaxWidth()
See the max-width property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetMinHeight()
See the min-height property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetMinWidth()
See the min-width property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetOrphans()
See the orphans property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetOutline()
See the outline property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetOutlineColor()
See the outline-color property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetOutlineStyle()
See the outline-style property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetOutlineWidth()
See the outline-width property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetOverflow()
See the overflow property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetPadding()
See the padding property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetPaddingBottom()
See the padding-bottom property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetPaddingLeft()
See the padding-left property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetPaddingRight()
See the padding-right property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetPaddingTop()
See the padding-top property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetPage()
See the page property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetPageBreakAfter()
See the page-break-after property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetPageBreakBefore()
See the page-break-before property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetPageBreakInside()
See the page-break-inside property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetPause()
See the pause property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetPauseAfter()
See the pause-after property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetPauseBefore()
See the pause-before property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetPitch()
See the pitch property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetPitchRange()
See the pitch-range property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetPlayDuring()
See the play-during property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetPosition()
See the position property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetQuotes()
See the quotes property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetRichness()
See the richness property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetRight()
See the right property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetSize()
See the size property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetSpeak()
See the speak property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetSpeakHeader()
See the speak-header property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetSpeakNumeral()
See the speak-numeral property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetSpeakPunctuation()
See the speak-punctuation property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetSpeechRate()
See the speech-rate property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetStress()
See the stress property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetTableLayout()
See the table-layout property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetTextAlign()
See the text-align property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetTextDecoration()
See the text-decoration property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetTextIndent()
See the text-indent property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetTextShadow()
See the text-shadow property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetTextTransform()
See the text-transform property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetTop()
See the top property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetUnicodeBidi()
See the unicode-bidi property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetVerticalAlign()
See the vertical-align property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetVisibility()
See the visibility property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetVoiceFamily()
See the voice-family property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetVolume()
See the volume property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetWhiteSpace()
See the white-space property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetWidows()
See the widows property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetWidth()
See the width property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetWordSpacing()
See the word-spacing property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public java.lang.StringgetZIndex()
See the z-index property definition in CSS2.

exception
DOMException SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.

public voidsetAzimuth(java.lang.String azimuth)

public voidsetBackground(java.lang.String background)

public voidsetBackgroundAttachment(java.lang.String backgroundAttachment)

public voidsetBackgroundColor(java.lang.String backgroundColor)

public voidsetBackgroundImage(java.lang.String backgroundImage)

public voidsetBackgroundPosition(java.lang.String backgroundPosition)

public voidsetBackgroundRepeat(java.lang.String backgroundRepeat)

public voidsetBorder(java.lang.String border)

public voidsetBorderBottom(java.lang.String borderBottom)

public voidsetBorderBottomColor(java.lang.String borderBottomColor)

public voidsetBorderBottomStyle(java.lang.String borderBottomStyle)

public voidsetBorderBottomWidth(java.lang.String borderBottomWidth)

public voidsetBorderCollapse(java.lang.String borderCollapse)

public voidsetBorderColor(java.lang.String borderColor)

public voidsetBorderLeft(java.lang.String borderLeft)

public voidsetBorderLeftColor(java.lang.String borderLeftColor)

public voidsetBorderLeftStyle(java.lang.String borderLeftStyle)

public voidsetBorderLeftWidth(java.lang.String borderLeftWidth)

public voidsetBorderRight(java.lang.String borderRight)

public voidsetBorderRightColor(java.lang.String borderRightColor)

public voidsetBorderRightStyle(java.lang.String borderRightStyle)

public voidsetBorderRightWidth(java.lang.String borderRightWidth)

public voidsetBorderSpacing(java.lang.String borderSpacing)

public voidsetBorderStyle(java.lang.String borderStyle)

public voidsetBorderTop(java.lang.String borderTop)

public voidsetBorderTopColor(java.lang.String borderTopColor)

public voidsetBorderTopStyle(java.lang.String borderTopStyle)

public voidsetBorderTopWidth(java.lang.String borderTopWidth)

public voidsetBorderWidth(java.lang.String borderWidth)

public voidsetBottom(java.lang.String bottom)

public voidsetCaptionSide(java.lang.String captionSide)

public voidsetClear(java.lang.String clear)

public voidsetClip(java.lang.String clip)

public voidsetColor(java.lang.String color)

public voidsetContent(java.lang.String content)

public voidsetCounterIncrement(java.lang.String counterIncrement)

public voidsetCounterReset(java.lang.String counterReset)

public voidsetCssFloat(java.lang.String cssFloat)

public voidsetCue(java.lang.String cue)

public voidsetCueAfter(java.lang.String cueAfter)

public voidsetCueBefore(java.lang.String cueBefore)

public voidsetCursor(java.lang.String cursor)

public voidsetDirection(java.lang.String direction)

public voidsetDisplay(java.lang.String display)

public voidsetElevation(java.lang.String elevation)

public voidsetEmptyCells(java.lang.String emptyCells)

public voidsetFont(java.lang.String font)

public voidsetFontFamily(java.lang.String fontFamily)

public voidsetFontSize(java.lang.String fontSize)

public voidsetFontSizeAdjust(java.lang.String fontSizeAdjust)

public voidsetFontStretch(java.lang.String fontStretch)

public voidsetFontStyle(java.lang.String fontStyle)

public voidsetFontVariant(java.lang.String fontVariant)

public voidsetFontWeight(java.lang.String fontWeight)

public voidsetHeight(java.lang.String height)

public voidsetLeft(java.lang.String left)

public voidsetLetterSpacing(java.lang.String letterSpacing)

public voidsetLineHeight(java.lang.String lineHeight)

public voidsetListStyle(java.lang.String listStyle)

public voidsetListStyleImage(java.lang.String listStyleImage)

public voidsetListStylePosition(java.lang.String listStylePosition)

public voidsetListStyleType(java.lang.String listStyleType)

public voidsetMargin(java.lang.String margin)

public voidsetMarginBottom(java.lang.String marginBottom)

public voidsetMarginLeft(java.lang.String marginLeft)

public voidsetMarginRight(java.lang.String marginRight)

public voidsetMarginTop(java.lang.String marginTop)

public voidsetMarkerOffset(java.lang.String markerOffset)

public voidsetMarks(java.lang.String marks)

public voidsetMaxHeight(java.lang.String maxHeight)

public voidsetMaxWidth(java.lang.String maxWidth)

public voidsetMinHeight(java.lang.String minHeight)

public voidsetMinWidth(java.lang.String minWidth)

public voidsetOrphans(java.lang.String orphans)

public voidsetOutline(java.lang.String outline)

public voidsetOutlineColor(java.lang.String outlineColor)

public voidsetOutlineStyle(java.lang.String outlineStyle)

public voidsetOutlineWidth(java.lang.String outlineWidth)

public voidsetOverflow(java.lang.String overflow)

public voidsetPadding(java.lang.String padding)

public voidsetPaddingBottom(java.lang.String paddingBottom)

public voidsetPaddingLeft(java.lang.String paddingLeft)

public voidsetPaddingRight(java.lang.String paddingRight)

public voidsetPaddingTop(java.lang.String paddingTop)

public voidsetPage(java.lang.String page)

public voidsetPageBreakAfter(java.lang.String pageBreakAfter)

public voidsetPageBreakBefore(java.lang.String pageBreakBefore)

public voidsetPageBreakInside(java.lang.String pageBreakInside)

public voidsetPause(java.lang.String pause)

public voidsetPauseAfter(java.lang.String pauseAfter)

public voidsetPauseBefore(java.lang.String pauseBefore)

public voidsetPitch(java.lang.String pitch)

public voidsetPitchRange(java.lang.String pitchRange)

public voidsetPlayDuring(java.lang.String playDuring)

public voidsetPosition(java.lang.String position)

public voidsetQuotes(java.lang.String quotes)

public voidsetRichness(java.lang.String richness)

public voidsetRight(java.lang.String right)

public voidsetSize(java.lang.String size)

public voidsetSpeak(java.lang.String speak)

public voidsetSpeakHeader(java.lang.String speakHeader)

public voidsetSpeakNumeral(java.lang.String speakNumeral)

public voidsetSpeakPunctuation(java.lang.String speakPunctuation)

public voidsetSpeechRate(java.lang.String speechRate)

public voidsetStress(java.lang.String stress)

public voidsetTableLayout(java.lang.String tableLayout)

public voidsetTextAlign(java.lang.String textAlign)

public voidsetTextDecoration(java.lang.String textDecoration)

public voidsetTextIndent(java.lang.String textIndent)

public voidsetTextShadow(java.lang.String textShadow)

public voidsetTextTransform(java.lang.String textTransform)

public voidsetTop(java.lang.String top)

public voidsetUnicodeBidi(java.lang.String unicodeBidi)

public voidsetVerticalAlign(java.lang.String verticalAlign)

public voidsetVisibility(java.lang.String visibility)

public voidsetVoiceFamily(java.lang.String voiceFamily)

public voidsetVolume(java.lang.String volume)

public voidsetWhiteSpace(java.lang.String whiteSpace)

public voidsetWidows(java.lang.String widows)

public voidsetWidth(java.lang.String width)

public voidsetWordSpacing(java.lang.String wordSpacing)

public voidsetZIndex(java.lang.String zIndex)