|
|
The <code> CSS2Properties </code> interface represents a convenience mechanism for retrieving and setting properties within a <code> CSSStyleDeclaration </code> . The attributes of this interface correspond to all the <a href="http://www.w3.org/TR/REC-CSS2/propidx.html"> properties specified in CSS2 </a> . Getting an attribute of this interface is equivalent to calling the <code> getPropertyValue </code> method of the <code> CSSStyleDeclaration </code> interface. Setting an attribute of this interface is equivalent to calling the <code> setProperty </code> method of the <code> CSSStyleDeclaration </code> interface.
A compliant implementation is not required to implement the <code> CSS2Properties </code> 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 <code> CSSStyleDeclaration </code> interface to the <code> CSS2Properties </code> 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 <code> margin </code> property is set, for example, the <code> marginTop </code> , <code> marginRight </code> , <code> marginBottom </code> and <code> marginLeft </code> 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 <code> font </code> 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 <code> border-width </code> value of "medium" should be returned as such, not as "").
For some shorthand properties that take missing values from other sides, such as the <code> margin </code> , <code> padding </code> , and <code> border-[width|style|color] </code> 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 <code> font </code> property with a value of "menu", querying for the values of the component longhand properties should return the empty string.
| CSS2Properties ()
| CSS2Properties |
| CSS2Properties (const CSS2Properties &other)
| CSS2Properties |
| CSS2Properties (CSS2PropertiesImpl *impl)
| CSS2Properties |
| CSS2Properties & operator = (const CSS2Properties &other)
| operator = |
| ~CSS2Properties ()
| ~CSS2Properties |
| DOM::DOMString azimuth ()
| azimuth |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-azimuth"> azimuth property definition </a> in CSS2.
| void setAzimuth ( const DOM::DOMString & )
| setAzimuth |
see azimuth
| DOM::DOMString background ()
| background |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/colors.html#propdef-background"> background property definition </a> in CSS2.
| void setBackground ( const DOM::DOMString & )
| setBackground |
see background
| DOM::DOMString backgroundAttachment ()
| backgroundAttachment |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/colors.html#propdef-background-attachment"> background-attachment property definition </a> in CSS2.
| void setBackgroundAttachment ( const DOM::DOMString & )
| setBackgroundAttachment |
| DOM::DOMString backgroundColor ()
| backgroundColor |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/colors.html#propdef-background-color"> background-color property definition </a> in CSS2.
| void setBackgroundColor ( const DOM::DOMString & )
| setBackgroundColor |
see backgroundColor
| DOM::DOMString backgroundImage ()
| backgroundImage |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/colors.html#propdef-background-image"> background-image property definition </a> in CSS2.
| void setBackgroundImage ( const DOM::DOMString & )
| setBackgroundImage |
see backgroundImage
| DOM::DOMString backgroundPosition ()
| backgroundPosition |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/colors.html#propdef-background-position"> background-position property definition </a> in CSS2.
| void setBackgroundPosition ( const DOM::DOMString & )
| setBackgroundPosition |
| DOM::DOMString backgroundRepeat ()
| backgroundRepeat |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/colors.html#propdef-background-repeat"> background-repeat property definition </a> in CSS2.
| void setBackgroundRepeat ( const DOM::DOMString & )
| setBackgroundRepeat |
see backgroundRepeat
| DOM::DOMString border ()
| border |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border"> border property definition </a> in CSS2.
| void setBorder ( const DOM::DOMString & )
| setBorder |
see border
| DOM::DOMString borderCollapse ()
| borderCollapse |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/tables.html#propdef-border-collapse"> border-collapse property definition </a> in CSS2.
| void setBorderCollapse ( const DOM::DOMString & )
| setBorderCollapse |
see borderCollapse
| DOM::DOMString borderColor ()
| borderColor |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-color"> border-color property definition </a> in CSS2.
| void setBorderColor ( const DOM::DOMString & )
| setBorderColor |
see borderColor
| DOM::DOMString borderSpacing ()
| borderSpacing |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/tables.html#propdef-border-spacing"> border-spacing property definition </a> in CSS2.
| void setBorderSpacing ( const DOM::DOMString & )
| setBorderSpacing |
see borderSpacing
| DOM::DOMString borderStyle ()
| borderStyle |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-style"> border-style property definition </a> in CSS2.
| void setBorderStyle ( const DOM::DOMString & )
| setBorderStyle |
see borderStyle
| DOM::DOMString borderTop ()
| borderTop |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-top"> border-top property definition </a> in CSS2.
| void setBorderTop ( const DOM::DOMString & )
| setBorderTop |
see borderTop
| DOM::DOMString borderRight ()
| borderRight |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-right"> border-right property definition </a> in CSS2.
| void setBorderRight ( const DOM::DOMString & )
| setBorderRight |
see borderRight
| DOM::DOMString borderBottom ()
| borderBottom |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-bottom"> border-bottom property definition </a> in CSS2.
| void setBorderBottom ( const DOM::DOMString & )
| setBorderBottom |
see borderBottom
| DOM::DOMString borderLeft ()
| borderLeft |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-left"> border-left property definition </a> in CSS2.
| void setBorderLeft ( const DOM::DOMString & )
| setBorderLeft |
see borderLeft
| DOM::DOMString borderTopColor ()
| borderTopColor |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-top-color"> border-top-color property definition </a> in CSS2.
| void setBorderTopColor ( const DOM::DOMString & )
| setBorderTopColor |
see borderTopColor
| DOM::DOMString borderRightColor ()
| borderRightColor |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-right-color"> border-right-color property definition </a> in CSS2.
| void setBorderRightColor ( const DOM::DOMString & )
| setBorderRightColor |
see borderRightColor
| DOM::DOMString borderBottomColor ()
| borderBottomColor |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/#propdef-border-bottom-color"> border-bottom-color property definition </a> in CSS2.
| void setBorderBottomColor ( const DOM::DOMString & )
| setBorderBottomColor |
| DOM::DOMString borderLeftColor ()
| borderLeftColor |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-left-color"> border-left-color property definition </a> in CSS2.
| void setBorderLeftColor ( const DOM::DOMString & )
| setBorderLeftColor |
see borderLeftColor
| DOM::DOMString borderTopStyle ()
| borderTopStyle |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-top-style"> border-top-style property definition </a> in CSS2.
| void setBorderTopStyle ( const DOM::DOMString & )
| setBorderTopStyle |
see borderTopStyle
| DOM::DOMString borderRightStyle ()
| borderRightStyle |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-right-style"> border-right-style property definition </a> in CSS2.
| void setBorderRightStyle ( const DOM::DOMString & )
| setBorderRightStyle |
see borderRightStyle
| DOM::DOMString borderBottomStyle ()
| borderBottomStyle |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-bottom-style"> border-bottom-style property definition </a> in CSS2.
| void setBorderBottomStyle ( const DOM::DOMString & )
| setBorderBottomStyle |
| DOM::DOMString borderLeftStyle ()
| borderLeftStyle |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-left-style"> border-left-style property definition </a> in CSS2.
| void setBorderLeftStyle ( const DOM::DOMString & )
| setBorderLeftStyle |
see borderLeftStyle
| DOM::DOMString borderTopWidth ()
| borderTopWidth |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-top-width"> border-top-width property definition </a> in CSS2.
| void setBorderTopWidth ( const DOM::DOMString & )
| setBorderTopWidth |
see borderTopWidth
| DOM::DOMString borderRightWidth ()
| borderRightWidth |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-right-width"> border-right-width property definition </a> in CSS2.
| void setBorderRightWidth ( const DOM::DOMString & )
| setBorderRightWidth |
see borderRightWidth
| DOM::DOMString borderBottomWidth ()
| borderBottomWidth |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-bottom-width"> border-bottom-width property definition </a> in CSS2.
| void setBorderBottomWidth ( const DOM::DOMString & )
| setBorderBottomWidth |
| DOM::DOMString borderLeftWidth ()
| borderLeftWidth |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-left-width"> border-left-width property definition </a> in CSS2.
| void setBorderLeftWidth ( const DOM::DOMString & )
| setBorderLeftWidth |
see borderLeftWidth
| DOM::DOMString borderWidth ()
| borderWidth |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-width"> border-width property definition </a> in CSS2.
| void setBorderWidth ( const DOM::DOMString & )
| setBorderWidth |
see borderWidth
| DOM::DOMString bottom ()
| bottom |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/visuren.html#propdef-bottom"> bottom property definition </a> in CSS2.
| void setBottom ( const DOM::DOMString & )
| setBottom |
see bottom
| DOM::DOMString captionSide ()
| captionSide |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/tables.html#propdef-caption-side"> caption-side property definition </a> in CSS2.
| void setCaptionSide ( const DOM::DOMString & )
| setCaptionSide |
see captionSide
| DOM::DOMString clear ()
| clear |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/visuren.html#propdef-clear"> clear property definition </a> in CSS2.
| void setClear ( const DOM::DOMString & )
| setClear |
see clear
| DOM::DOMString clip ()
| clip |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/visufx#propdef-clip"> clip property definition </a> in CSS2.
| void setClip ( const DOM::DOMString & )
| setClip |
see clip
| DOM::DOMString color ()
| color |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/colors.html#propdef-color"> color property definition </a> in CSS2.
| void setColor ( const DOM::DOMString & )
| setColor |
see color
| DOM::DOMString content ()
| content |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/generate.html#propdef-content"> content property definition </a> in CSS2.
| void setContent ( const DOM::DOMString & )
| setContent |
see content
| DOM::DOMString counterIncrement ()
| counterIncrement |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/generate.html#propdef-counter-increment"> counter-increment property definition </a> in CSS2.
| void setCounterIncrement ( const DOM::DOMString & )
| setCounterIncrement |
see counterIncrement
| DOM::DOMString counterReset ()
| counterReset |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/generate.html#propdef-counter-reset"> counter-reset property definition </a> in CSS2.
| void setCounterReset ( const DOM::DOMString & )
| setCounterReset |
see counterReset
| DOM::DOMString cue ()
| cue |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-cue"> cue property definition </a> in CSS2.
| void setCue ( const DOM::DOMString & )
| setCue |
see cue
| DOM::DOMString cueAfter ()
| cueAfter |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-cue-fter"> cue-after property definition </a> in CSS2.
| void setCueAfter ( const DOM::DOMString & )
| setCueAfter |
see cueAfter
| DOM::DOMString cueBefore ()
| cueBefore |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-cue-before"> cue-before property definition </a> in CSS2.
| void setCueBefore ( const DOM::DOMString & )
| setCueBefore |
see cueBefore
| DOM::DOMString cursor ()
| cursor |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/ui.html#propdef-cursor"> cursor property definition </a> in CSS2.
| void setCursor ( const DOM::DOMString & )
| setCursor |
see cursor
| DOM::DOMString direction ()
| direction |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/visuren.html#propdef-direction"> direction property definition </a> in CSS2.
| void setDirection ( const DOM::DOMString & )
| setDirection |
see direction
| DOM::DOMString display ()
| display |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/visuren.html#propdef-display"> display property definition </a> in CSS2.
| void setDisplay ( const DOM::DOMString & )
| setDisplay |
see display
| DOM::DOMString elevation ()
| elevation |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-elevation"> elevation property definition </a> in CSS2.
| void setElevation ( const DOM::DOMString & )
| setElevation |
see elevation
| DOM::DOMString emptyCells ()
| emptyCells |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/tables.html#propdef-empty-cells"> empty-cells property definition </a> in CSS2.
| void setEmptyCells ( const DOM::DOMString & )
| setEmptyCells |
see emptyCells
| DOM::DOMString cssFloat ()
| cssFloat |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/visuren.html#propdef-float"> float property definition </a> in CSS2.
| void setCssFloat ( const DOM::DOMString & )
| setCssFloat |
see cssFloat
| DOM::DOMString font ()
| font |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/fonts.html#propdef-font"> font property definition </a> in CSS2.
| void setFont ( const DOM::DOMString & )
| setFont |
see font
| DOM::DOMString fontFamily ()
| fontFamily |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/fonts.html#propdef-font-family"> font-family property definition </a> in CSS2.
| void setFontFamily ( const DOM::DOMString & )
| setFontFamily |
see fontFamily
| DOM::DOMString fontSize ()
| fontSize |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/fonts.html#propdef-font-size"> font-size property definition </a> in CSS2.
| void setFontSize ( const DOM::DOMString & )
| setFontSize |
see fontSize
| DOM::DOMString fontSizeAdjust ()
| fontSizeAdjust |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/fonts.html#propdef-font-size-adjust"> font-size-adjust property definition </a> in CSS2.
| void setFontSizeAdjust ( const DOM::DOMString & )
| setFontSizeAdjust |
see fontSizeAdjust
| DOM::DOMString fontStretch ()
| fontStretch |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/fonts.html#propdef-font-stretch"> font-stretch property definition </a> in CSS2.
| void setFontStretch ( const DOM::DOMString & )
| setFontStretch |
see fontStretch
| DOM::DOMString fontStyle ()
| fontStyle |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/fonts.html#propdef-font-style"> font-style property definition </a> in CSS2.
| void setFontStyle ( const DOM::DOMString & )
| setFontStyle |
see fontStyle
| DOM::DOMString fontVariant ()
| fontVariant |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/fonts.html#propdef-font-variant"> font-variant property definition </a> in CSS2.
| void setFontVariant ( const DOM::DOMString & )
| setFontVariant |
see fontVariant
| DOM::DOMString fontWeight ()
| fontWeight |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/fonts.html#propdef-font-weight"> font-weight property definition </a> in CSS2.
| void setFontWeight ( const DOM::DOMString & )
| setFontWeight |
see fontWeight
| DOM::DOMString height ()
| height |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/visudet.html#propdef-height"> height property definition </a> in CSS2.
| void setHeight ( const DOM::DOMString & )
| setHeight |
see height
| DOM::DOMString left ()
| left |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/visuren.html#propdef-left"> left property definition </a> in CSS2.
| void setLeft ( const DOM::DOMString & )
| setLeft |
see left
| DOM::DOMString letterSpacing ()
| letterSpacing |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/text.html#propdef-letter-spacing"> letter-spacing property definition </a> in CSS2.
| void setLetterSpacing ( const DOM::DOMString & )
| setLetterSpacing |
see letterSpacing
| DOM::DOMString lineHeight ()
| lineHeight |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/visudet.html#propdef-line-height"> line-height property definition </a> in CSS2.
| void setLineHeight ( const DOM::DOMString & )
| setLineHeight |
see lineHeight
| DOM::DOMString listStyle ()
| listStyle |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/generate.html#propdef-list-style"> list-style property definition </a> in CSS2.
| void setListStyle ( const DOM::DOMString & )
| setListStyle |
see listStyle
| DOM::DOMString listStyleImage ()
| listStyleImage |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/generate.html#propdef-list-style-image"> list-style-image property definition </a> in CSS2.
| void setListStyleImage ( const DOM::DOMString & )
| setListStyleImage |
see listStyleImage
| DOM::DOMString listStylePosition ()
| listStylePosition |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/generate.html#propdef-list-style-position"> list-style-position property definition </a> in CSS2.
| void setListStylePosition ( const DOM::DOMString & )
| setListStylePosition |
| DOM::DOMString listStyleType ()
| listStyleType |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/generate.html#propdef-list-style-type"> list-style-type property definition </a> in CSS2.
| void setListStyleType ( const DOM::DOMString & )
| setListStyleType |
see listStyleType
| DOM::DOMString margin ()
| margin |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-margin"> margin property definition </a> in CSS2.
| void setMargin ( const DOM::DOMString & )
| setMargin |
see margin
| DOM::DOMString marginTop ()
| marginTop |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-margin-top"> margin-top property definition </a> in CSS2.
| void setMarginTop ( const DOM::DOMString & )
| setMarginTop |
see marginTop
| DOM::DOMString marginRight ()
| marginRight |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-margin-right"> margin-right property definition </a> in CSS2.
| void setMarginRight ( const DOM::DOMString & )
| setMarginRight |
see marginRight
| DOM::DOMString marginBottom ()
| marginBottom |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-margin-bottom"> margin-bottom property definition </a> in CSS2.
| void setMarginBottom ( const DOM::DOMString & )
| setMarginBottom |
see marginBottom
| DOM::DOMString marginLeft ()
| marginLeft |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-margin-left"> margin-left property definition </a> in CSS2.
| void setMarginLeft ( const DOM::DOMString & )
| setMarginLeft |
see marginLeft
| DOM::DOMString markerOffset ()
| markerOffset |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/generate.html#propdef-marker-offset"> marker-offset property definition </a> in CSS2.
| void setMarkerOffset ( const DOM::DOMString & )
| setMarkerOffset |
see markerOffset
| DOM::DOMString marks ()
| marks |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/page.html#propdef-marks"> marks property definition </a> in CSS2.
| void setMarks ( const DOM::DOMString & )
| setMarks |
see marks
| DOM::DOMString maxHeight ()
| maxHeight |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/visudet.html#propdef-max-height"> max-height property definition </a> in CSS2.
| void setMaxHeight ( const DOM::DOMString & )
| setMaxHeight |
see maxHeight
| DOM::DOMString maxWidth ()
| maxWidth |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/visudet.html#propdef-max-width"> max-width property definition </a> in CSS2.
| void setMaxWidth ( const DOM::DOMString & )
| setMaxWidth |
see maxWidth
| DOM::DOMString minHeight ()
| minHeight |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/visudet.html#propdef-min-height"> min-height property definition </a> in CSS2.
| void setMinHeight ( const DOM::DOMString & )
| setMinHeight |
see minHeight
| DOM::DOMString minWidth ()
| minWidth |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/visudet.html#propdef-min-width"> min-width property definition </a> in CSS2.
| void setMinWidth ( const DOM::DOMString & )
| setMinWidth |
see minWidth
| DOM::DOMString orphans ()
| orphans |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/page.html#propdef-orphans"> orphans property definition </a> in CSS2.
| void setOrphans ( const DOM::DOMString & )
| setOrphans |
see orphans
| DOM::DOMString outline ()
| outline |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/ui.html#propdef-outline"> outline property definition </a> in CSS2.
| void setOutline ( const DOM::DOMString & )
| setOutline |
see outline
| DOM::DOMString outlineColor ()
| outlineColor |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/ui.html#propdef-outline-color"> outline-color property definition </a> in CSS2.
| void setOutlineColor ( const DOM::DOMString & )
| setOutlineColor |
see outlineColor
| DOM::DOMString outlineStyle ()
| outlineStyle |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/ui.html#propdef-outline-style"> outline-style property definition </a> in CSS2.
| void setOutlineStyle ( const DOM::DOMString & )
| setOutlineStyle |
see outlineStyle
| DOM::DOMString outlineWidth ()
| outlineWidth |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/ui.html#propdef-outline-width"> outline-width property definition </a> in CSS2.
| void setOutlineWidth ( const DOM::DOMString & )
| setOutlineWidth |
see outlineWidth
| DOM::DOMString overflow ()
| overflow |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/visufx.html#propdef-overflow"> overflow property definition </a> in CSS2.
| void setOverflow ( const DOM::DOMString & )
| setOverflow |
see overflow
| DOM::DOMString padding ()
| padding |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-padding"> padding property definition </a> in CSS2.
| void setPadding ( const DOM::DOMString & )
| setPadding |
see padding
| DOM::DOMString paddingTop ()
| paddingTop |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-padding-top"> padding-top property definition </a> in CSS2.
| void setPaddingTop ( const DOM::DOMString & )
| setPaddingTop |
see paddingTop
| DOM::DOMString paddingRight ()
| paddingRight |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-padding-right"> padding-right property definition </a> in CSS2.
| void setPaddingRight ( const DOM::DOMString & )
| setPaddingRight |
see paddingRight
| DOM::DOMString paddingBottom ()
| paddingBottom |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-padding-bottom"> padding-bottom property definition </a> in CSS2.
| void setPaddingBottom ( const DOM::DOMString & )
| setPaddingBottom |
see paddingBottom
| DOM::DOMString paddingLeft ()
| paddingLeft |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-padding-left"> padding-left property definition </a> in CSS2.
| void setPaddingLeft ( const DOM::DOMString & )
| setPaddingLeft |
see paddingLeft
| DOM::DOMString page ()
| page |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/page.html#propdef-page"> page property definition </a> in CSS2.
| void setPage ( const DOM::DOMString & )
| setPage |
see page
| DOM::DOMString pageBreakAfter ()
| pageBreakAfter |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/page.html#propdef-page-break-after"> page-break-after property definition </a> in CSS2.
| void setPageBreakAfter ( const DOM::DOMString & )
| setPageBreakAfter |
see pageBreakAfter
| DOM::DOMString pageBreakBefore ()
| pageBreakBefore |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/page.html#propdef-page-break-before"> page-break-before property definition </a> in CSS2.
| void setPageBreakBefore ( const DOM::DOMString & )
| setPageBreakBefore |
see pageBreakBefore
| DOM::DOMString pageBreakInside ()
| pageBreakInside |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/page.html#propdef-page-break-inside"> page-break-inside property definition </a> in CSS2.
| void setPageBreakInside ( const DOM::DOMString & )
| setPageBreakInside |
see pageBreakInside
| DOM::DOMString pause ()
| pause |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-pause"> pause property definition </a> in CSS2.
| void setPause ( const DOM::DOMString & )
| setPause |
see pause
| DOM::DOMString pauseAfter ()
| pauseAfter |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-pause-after"> pause-after property definition </a> in CSS2.
| void setPauseAfter ( const DOM::DOMString & )
| setPauseAfter |
see pauseAfter
| DOM::DOMString pauseBefore ()
| pauseBefore |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-pause-before"> pause-before property definition </a> in CSS2.
| void setPauseBefore ( const DOM::DOMString & )
| setPauseBefore |
see pauseBefore
| DOM::DOMString pitch ()
| pitch |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-pitch"> pitch property definition </a> in CSS2.
| void setPitch ( const DOM::DOMString & )
| setPitch |
see pitch
| DOM::DOMString pitchRange ()
| pitchRange |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-pitch-range"> pitch-range property definition </a> in CSS2.
| void setPitchRange ( const DOM::DOMString & )
| setPitchRange |
see pitchRange
| DOM::DOMString playDuring ()
| playDuring |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-play-during"> play-during property definition </a> in CSS2.
| void setPlayDuring ( const DOM::DOMString & )
| setPlayDuring |
see playDuring
| DOM::DOMString position ()
| position |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/visuren.html#propdef-position"> position property definition </a> in CSS2.
| void setPosition ( const DOM::DOMString & )
| setPosition |
see position
| DOM::DOMString quotes ()
| quotes |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/generate.html#propdef-quotes"> quotes property definition </a> in CSS2.
| void setQuotes ( const DOM::DOMString & )
| setQuotes |
see quotes
| DOM::DOMString richness ()
| richness |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-richness"> richness property definition </a> in CSS2.
| void setRichness ( const DOM::DOMString & )
| setRichness |
see richness
| DOM::DOMString right ()
| right |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/visuren.html#propdef-right"> right property definition </a> in CSS2.
| void setRight ( const DOM::DOMString & )
| setRight |
see right
| DOM::DOMString size ()
| size |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/page.html#propdef-size"> size property definition </a> in CSS2.
| void setSize ( const DOM::DOMString & )
| setSize |
see size
| DOM::DOMString speak ()
| speak |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-speak"> speak property definition </a> in CSS2.
| void setSpeak ( const DOM::DOMString & )
| setSpeak |
see speak
| DOM::DOMString speakHeader ()
| speakHeader |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/tables.html#propdef-speak-header"> speak-header property definition </a> in CSS2.
| void setSpeakHeader ( const DOM::DOMString & )
| setSpeakHeader |
see speakHeader
| DOM::DOMString speakNumeral ()
| speakNumeral |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-speak-numeral"> speak-numeral property definition </a> in CSS2.
| void setSpeakNumeral ( const DOM::DOMString & )
| setSpeakNumeral |
see speakNumeral
| DOM::DOMString speakPunctuation ()
| speakPunctuation |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-speak-punctuation"> speak-punctuation property definition </a> in CSS2.
| void setSpeakPunctuation ( const DOM::DOMString & )
| setSpeakPunctuation |
see speakPunctuation
| DOM::DOMString speechRate ()
| speechRate |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-speech-rate"> speech-rate property definition </a> in CSS2.
| void setSpeechRate ( const DOM::DOMString & )
| setSpeechRate |
see speechRate
| DOM::DOMString stress ()
| stress |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-stress"> stress property definition </a> in CSS2.
| void setStress ( const DOM::DOMString & )
| setStress |
see stress
| DOM::DOMString tableLayout ()
| tableLayout |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/tables.html#propdef-table-layout"> table-layout property definition </a> in CSS2.
| void setTableLayout ( const DOM::DOMString & )
| setTableLayout |
see tableLayout
| DOM::DOMString textAlign ()
| textAlign |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/text.html#propdef-text-align"> text-align property definition </a> in CSS2.
| void setTextAlign ( const DOM::DOMString & )
| setTextAlign |
see textAlign
| DOM::DOMString textDecoration ()
| textDecoration |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/text.html#propdef-text-decoration"> text-decoration property definition </a> in CSS2.
| void setTextDecoration ( const DOM::DOMString & )
| setTextDecoration |
see textDecoration
| DOM::DOMString textIndent ()
| textIndent |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/text.html#propdef-text-indent"> text-indent property definition </a> in CSS2.
| void setTextIndent ( const DOM::DOMString & )
| setTextIndent |
see textIndent
| DOM::DOMString textShadow ()
| textShadow |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/text.html#propdef-text-shadow"> text-shadow property definition </a> in CSS2.
| void setTextShadow ( const DOM::DOMString & )
| setTextShadow |
see textShadow
| DOM::DOMString textTransform ()
| textTransform |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/text.html#propdef-text-transform"> text-transform property definition </a> in CSS2.
| void setTextTransform ( const DOM::DOMString & )
| setTextTransform |
see textTransform
| DOM::DOMString top ()
| top |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/visuren.html#propdef-top"> top property definition </a> in CSS2.
| void setTop ( const DOM::DOMString & )
| setTop |
see top
| DOM::DOMString unicodeBidi ()
| unicodeBidi |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/visuren.html#propdef-unicode-bidi"> unicode-bidi property definition </a> in CSS2.
| void setUnicodeBidi ( const DOM::DOMString & )
| setUnicodeBidi |
see unicodeBidi
| DOM::DOMString verticalAlign ()
| verticalAlign |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/visudet.html#propdef-vertical-align"> vertical-align property definition </a> in CSS2.
| void setVerticalAlign ( const DOM::DOMString & )
| setVerticalAlign |
see verticalAlign
| DOM::DOMString visibility ()
| visibility |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/visufx.html#propdef-visibility"> visibility property definition </a> in CSS2.
| void setVisibility ( const DOM::DOMString & )
| setVisibility |
see visibility
| DOM::DOMString voiceFamily ()
| voiceFamily |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-voice-family"> voice-family property definition </a> in CSS2.
| void setVoiceFamily ( const DOM::DOMString & )
| setVoiceFamily |
see voiceFamily
| DOM::DOMString volume ()
| volume |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-volume"> volume property definition </a> in CSS2.
| void setVolume ( const DOM::DOMString & )
| setVolume |
see volume
| DOM::DOMString whiteSpace ()
| whiteSpace |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/text.html#propdef-white-space"> white-space property definition </a> in CSS2.
| void setWhiteSpace ( const DOM::DOMString & )
| setWhiteSpace |
see whiteSpace
| DOM::DOMString widows ()
| widows |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/page.html#propdef-widows"> widows property definition </a> in CSS2.
| void setWidows ( const DOM::DOMString & )
| setWidows |
see widows
| DOM::DOMString width ()
| width |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/visudet.html#propdef-width"> width property definition </a> in CSS2.
| void setWidth ( const DOM::DOMString & )
| setWidth |
see width
| DOM::DOMString wordSpacing ()
| wordSpacing |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/text.html#propdef-word-spacing"> word-spacing property definition </a> in CSS2.
| void setWordSpacing ( const DOM::DOMString & )
| setWordSpacing |
see wordSpacing
| DOM::DOMString zIndex ()
| zIndex |
[const]
See the <a href="http://www.w3.org/TR/REC-CSS2/visufx.html#propdef-z-index"> z-index property definition </a> in CSS2.
| void setZIndex ( const DOM::DOMString & )
| setZIndex |
see zIndex
| Generated by: root@daffy.perf.redhat.com on Mon Jul 14 13:28:10 2003, using kdoc 2.0a53. |