KHTML
DOM::CSS2Properties Class Reference
TheCSS2Properties
interface represents a convenience mechanism for retrieving and setting properties within a CSSStyleDeclaration
.
More...
#include <css_extensions.h>
Detailed Description
TheCSS2Properties
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 compliant implementation 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.
Definition at line 1048 of file css_extensions.h.
Constructor & Destructor Documentation
CSS2Properties::CSS2Properties | ( | ) |
Definition at line 630 of file css_extensions.cpp.
CSS2Properties::CSS2Properties | ( | const CSS2Properties & | other | ) |
Definition at line 634 of file css_extensions.cpp.
CSS2Properties::CSS2Properties | ( | CSS2PropertiesImpl * | impl | ) |
Definition at line 638 of file css_extensions.cpp.
CSS2Properties::~CSS2Properties | ( | ) |
Definition at line 648 of file css_extensions.cpp.
Member Function Documentation
DOMString CSS2Properties::azimuth | ( | ) | const |
DOMString CSS2Properties::background | ( | ) | const |
DOMString CSS2Properties::backgroundAttachment | ( | ) | const |
See the background-attachment property definition in CSS2.
Definition at line 674 of file css_extensions.cpp.
DOMString CSS2Properties::backgroundColor | ( | ) | const |
See the background-color property definition in CSS2.
Definition at line 685 of file css_extensions.cpp.
DOMString CSS2Properties::backgroundImage | ( | ) | const |
See the background-image property definition in CSS2.
Definition at line 696 of file css_extensions.cpp.
DOMString CSS2Properties::backgroundPosition | ( | ) | const |
See the background-position property definition in CSS2.
Definition at line 707 of file css_extensions.cpp.
DOMString CSS2Properties::backgroundRepeat | ( | ) | const |
See the background-repeat property definition in CSS2.
Definition at line 718 of file css_extensions.cpp.
DOMString CSS2Properties::border | ( | ) | const |
DOMString CSS2Properties::borderBottom | ( | ) | const |
See the border-bottom property definition in CSS2.
Definition at line 806 of file css_extensions.cpp.
DOMString CSS2Properties::borderBottomColor | ( | ) | const |
See the border-bottom-color property definition in CSS2.
Definition at line 850 of file css_extensions.cpp.
DOMString CSS2Properties::borderBottomStyle | ( | ) | const |
See the border-bottom-style property definition in CSS2.
Definition at line 894 of file css_extensions.cpp.
DOMString CSS2Properties::borderBottomWidth | ( | ) | const |
See the border-bottom-width property definition in CSS2.
Definition at line 938 of file css_extensions.cpp.
DOMString CSS2Properties::borderCollapse | ( | ) | const |
See the border-collapse property definition in CSS2.
Definition at line 740 of file css_extensions.cpp.
DOMString CSS2Properties::borderColor | ( | ) | const |
See the border-color property definition in CSS2.
Definition at line 751 of file css_extensions.cpp.
DOMString CSS2Properties::borderLeft | ( | ) | const |
DOMString CSS2Properties::borderLeftColor | ( | ) | const |
See the border-left-color property definition in CSS2.
Definition at line 861 of file css_extensions.cpp.
DOMString CSS2Properties::borderLeftStyle | ( | ) | const |
See the border-left-style property definition in CSS2.
Definition at line 905 of file css_extensions.cpp.
DOMString CSS2Properties::borderLeftWidth | ( | ) | const |
See the border-left-width property definition in CSS2.
Definition at line 949 of file css_extensions.cpp.
DOMString CSS2Properties::borderRight | ( | ) | const |
See the border-right property definition in CSS2.
Definition at line 795 of file css_extensions.cpp.
DOMString CSS2Properties::borderRightColor | ( | ) | const |
See the border-right-color property definition in CSS2.
Definition at line 839 of file css_extensions.cpp.
DOMString CSS2Properties::borderRightStyle | ( | ) | const |
See the border-right-style property definition in CSS2.
Definition at line 883 of file css_extensions.cpp.
DOMString CSS2Properties::borderRightWidth | ( | ) | const |
See the border-right-width property definition in CSS2.
Definition at line 927 of file css_extensions.cpp.
DOMString CSS2Properties::borderSpacing | ( | ) | const |
See the border-spacing property definition in CSS2.
Definition at line 762 of file css_extensions.cpp.
DOMString CSS2Properties::borderStyle | ( | ) | const |
See the border-style property definition in CSS2.
Definition at line 773 of file css_extensions.cpp.
DOMString CSS2Properties::borderTop | ( | ) | const |
DOMString CSS2Properties::borderTopColor | ( | ) | const |
See the border-top-color property definition in CSS2.
Definition at line 828 of file css_extensions.cpp.
DOMString CSS2Properties::borderTopStyle | ( | ) | const |
See the border-top-style property definition in CSS2.
Definition at line 872 of file css_extensions.cpp.
DOMString CSS2Properties::borderTopWidth | ( | ) | const |
See the border-top-width property definition in CSS2.
Definition at line 916 of file css_extensions.cpp.
DOMString CSS2Properties::borderWidth | ( | ) | const |
See the border-width property definition in CSS2.
Definition at line 960 of file css_extensions.cpp.
DOMString CSS2Properties::bottom | ( | ) | const |
DOMString CSS2Properties::captionSide | ( | ) | const |
See the caption-side property definition in CSS2.
Definition at line 982 of file css_extensions.cpp.
DOMString CSS2Properties::clear | ( | ) | const |
DOMString CSS2Properties::clip | ( | ) | const |
DOMString CSS2Properties::color | ( | ) | const |
DOMString CSS2Properties::content | ( | ) | const |
DOMString CSS2Properties::counterIncrement | ( | ) | const |
See the counter-increment property definition in CSS2.
Definition at line 1037 of file css_extensions.cpp.
DOMString CSS2Properties::counterReset | ( | ) | const |
See the counter-reset property definition in CSS2.
Definition at line 1048 of file css_extensions.cpp.
DOMString CSS2Properties::cssFloat | ( | ) | const |
DOMString CSS2Properties::cue | ( | ) | const |
DOMString CSS2Properties::cueAfter | ( | ) | const |
DOMString CSS2Properties::cueBefore | ( | ) | const |
DOMString CSS2Properties::cursor | ( | ) | const |
DOMString CSS2Properties::direction | ( | ) | const |
DOMString CSS2Properties::display | ( | ) | const |
DOMString CSS2Properties::elevation | ( | ) | const |
DOMString CSS2Properties::emptyCells | ( | ) | const |
See the empty-cells property definition in CSS2.
Definition at line 1136 of file css_extensions.cpp.
DOMString CSS2Properties::font | ( | ) | const |
DOMString CSS2Properties::fontFamily | ( | ) | const |
See the font-family property definition in CSS2.
Definition at line 1169 of file css_extensions.cpp.
DOMString CSS2Properties::fontSize | ( | ) | const |
DOMString CSS2Properties::fontSizeAdjust | ( | ) | const |
See the font-size-adjust property definition in CSS2.
Definition at line 1191 of file css_extensions.cpp.
DOMString CSS2Properties::fontStretch | ( | ) | const |
See the font-stretch property definition in CSS2.
Definition at line 1202 of file css_extensions.cpp.
DOMString CSS2Properties::fontStyle | ( | ) | const |
DOMString CSS2Properties::fontVariant | ( | ) | const |
See the font-variant property definition in CSS2.
Definition at line 1224 of file css_extensions.cpp.
DOMString CSS2Properties::fontWeight | ( | ) | const |
See the font-weight property definition in CSS2.
Definition at line 1235 of file css_extensions.cpp.
DOMString CSS2Properties::height | ( | ) | const |
DOMString CSS2Properties::left | ( | ) | const |
DOMString CSS2Properties::letterSpacing | ( | ) | const |
See the letter-spacing property definition in CSS2.
Definition at line 1268 of file css_extensions.cpp.
DOMString CSS2Properties::lineHeight | ( | ) | const |
See the line-height property definition in CSS2.
Definition at line 1279 of file css_extensions.cpp.
DOMString CSS2Properties::listStyle | ( | ) | const |
DOMString CSS2Properties::listStyleImage | ( | ) | const |
See the list-style-image property definition in CSS2.
Definition at line 1301 of file css_extensions.cpp.
DOMString CSS2Properties::listStylePosition | ( | ) | const |
See the list-style-position property definition in CSS2.
Definition at line 1312 of file css_extensions.cpp.
DOMString CSS2Properties::listStyleType | ( | ) | const |
See the list-style-type property definition in CSS2.
Definition at line 1323 of file css_extensions.cpp.
DOMString CSS2Properties::margin | ( | ) | const |
DOMString CSS2Properties::marginBottom | ( | ) | const |
See the margin-bottom property definition in CSS2.
Definition at line 1367 of file css_extensions.cpp.
DOMString CSS2Properties::marginLeft | ( | ) | const |
See the margin-left property definition in CSS2.
Definition at line 1378 of file css_extensions.cpp.
DOMString CSS2Properties::marginRight | ( | ) | const |
See the margin-right property definition in CSS2.
Definition at line 1356 of file css_extensions.cpp.
DOMString CSS2Properties::marginTop | ( | ) | const |
DOMString CSS2Properties::markerOffset | ( | ) | const |
See the marker-offset property definition in CSS2.
Definition at line 1389 of file css_extensions.cpp.
DOMString CSS2Properties::marks | ( | ) | const |
DOMString CSS2Properties::maxHeight | ( | ) | const |
DOMString CSS2Properties::maxWidth | ( | ) | const |
DOMString CSS2Properties::minHeight | ( | ) | const |
DOMString CSS2Properties::minWidth | ( | ) | const |
CSS2Properties & CSS2Properties::operator= | ( | const CSS2Properties & | other | ) |
Definition at line 642 of file css_extensions.cpp.
DOMString CSS2Properties::orphans | ( | ) | const |
DOMString CSS2Properties::outline | ( | ) | const |
DOMString CSS2Properties::outlineColor | ( | ) | const |
See the outline-color property definition in CSS2.
Definition at line 1477 of file css_extensions.cpp.
DOMString CSS2Properties::outlineStyle | ( | ) | const |
See the outline-style property definition in CSS2.
Definition at line 1488 of file css_extensions.cpp.
DOMString CSS2Properties::outlineWidth | ( | ) | const |
See the outline-width property definition in CSS2.
Definition at line 1499 of file css_extensions.cpp.
DOMString CSS2Properties::overflow | ( | ) | const |
DOMString CSS2Properties::padding | ( | ) | const |
DOMString CSS2Properties::paddingBottom | ( | ) | const |
See the padding-bottom property definition in CSS2.
Definition at line 1554 of file css_extensions.cpp.
DOMString CSS2Properties::paddingLeft | ( | ) | const |
See the padding-left property definition in CSS2.
Definition at line 1565 of file css_extensions.cpp.
DOMString CSS2Properties::paddingRight | ( | ) | const |
See the padding-right property definition in CSS2.
Definition at line 1543 of file css_extensions.cpp.
DOMString CSS2Properties::paddingTop | ( | ) | const |
See the padding-top property definition in CSS2.
Definition at line 1532 of file css_extensions.cpp.
DOMString CSS2Properties::page | ( | ) | const |
DOMString CSS2Properties::pageBreakAfter | ( | ) | const |
See the page-break-after property definition in CSS2.
Definition at line 1587 of file css_extensions.cpp.
DOMString CSS2Properties::pageBreakBefore | ( | ) | const |
See the page-break-before property definition in CSS2.
Definition at line 1598 of file css_extensions.cpp.
DOMString CSS2Properties::pageBreakInside | ( | ) | const |
See the page-break-inside property definition in CSS2.
Definition at line 1609 of file css_extensions.cpp.
DOMString CSS2Properties::pause | ( | ) | const |
DOMString CSS2Properties::pauseAfter | ( | ) | const |
See the pause-after property definition in CSS2.
Definition at line 1631 of file css_extensions.cpp.
DOMString CSS2Properties::pauseBefore | ( | ) | const |
See the pause-before property definition in CSS2.
Definition at line 1642 of file css_extensions.cpp.
DOMString CSS2Properties::pitch | ( | ) | const |
DOMString CSS2Properties::pitchRange | ( | ) | const |
See the pitch-range property definition in CSS2.
Definition at line 1664 of file css_extensions.cpp.
DOMString CSS2Properties::playDuring | ( | ) | const |
See the play-during property definition in CSS2.
Definition at line 1675 of file css_extensions.cpp.
DOMString CSS2Properties::position | ( | ) | const |
DOMString CSS2Properties::quotes | ( | ) | const |
DOMString CSS2Properties::richness | ( | ) | const |
DOMString CSS2Properties::right | ( | ) | const |
void CSS2Properties::setAzimuth | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setBackground | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setBackgroundAttachment | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setBackgroundColor | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setBackgroundImage | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setBackgroundPosition | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setBackgroundRepeat | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setBorder | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setBorderBottom | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setBorderBottomColor | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setBorderBottomStyle | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setBorderBottomWidth | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setBorderCollapse | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setBorderColor | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setBorderLeft | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setBorderLeftColor | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setBorderLeftStyle | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setBorderLeftWidth | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setBorderRight | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setBorderRightColor | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setBorderRightStyle | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setBorderRightWidth | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setBorderSpacing | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setBorderStyle | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setBorderTop | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setBorderTopColor | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setBorderTopStyle | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setBorderTopWidth | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setBorderWidth | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setBottom | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setCaptionSide | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setClear | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setClip | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setColor | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setContent | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setCounterIncrement | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setCounterReset | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setCssFloat | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setCue | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setCueAfter | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setCueBefore | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setCursor | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setDirection | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setDisplay | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setElevation | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setEmptyCells | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setFont | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setFontFamily | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setFontSize | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setFontSizeAdjust | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setFontStretch | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setFontStyle | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setFontVariant | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setFontWeight | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setHeight | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setLeft | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setLetterSpacing | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setLineHeight | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setListStyle | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setListStyleImage | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setListStylePosition | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setListStyleType | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setMargin | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setMarginBottom | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setMarginLeft | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setMarginRight | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setMarginTop | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setMarkerOffset | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setMarks | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setMaxHeight | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setMaxWidth | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setMinHeight | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setMinWidth | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setOrphans | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setOutline | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setOutlineColor | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setOutlineStyle | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setOutlineWidth | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setOverflow | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setPadding | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setPaddingBottom | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setPaddingLeft | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setPaddingRight | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setPaddingTop | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setPage | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setPageBreakAfter | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setPageBreakBefore | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setPageBreakInside | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setPause | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setPauseAfter | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setPauseBefore | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setPitch | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setPitchRange | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setPlayDuring | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setPosition | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setQuotes | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setRichness | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setRight | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setSize | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setSpeak | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setSpeakHeader | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setSpeakNumeral | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setSpeakPunctuation | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setSpeechRate | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setStress | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setTableLayout | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setTextAlign | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setTextDecoration | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setTextIndent | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setTextShadow | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setTextTransform | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setTop | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setUnicodeBidi | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setVerticalAlign | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setVisibility | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setVoiceFamily | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setVolume | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setWhiteSpace | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setWidows | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setWidth | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setWordSpacing | ( | const DOM::DOMString & | value | ) |
void CSS2Properties::setZIndex | ( | const DOM::DOMString & | value | ) |
DOMString CSS2Properties::size | ( | ) | const |
DOMString CSS2Properties::speak | ( | ) | const |
DOMString CSS2Properties::speakHeader | ( | ) | const |
See the speak-header property definition in CSS2.
Definition at line 1752 of file css_extensions.cpp.
DOMString CSS2Properties::speakNumeral | ( | ) | const |
See the speak-numeral property definition in CSS2.
Definition at line 1763 of file css_extensions.cpp.
DOMString CSS2Properties::speakPunctuation | ( | ) | const |
See the speak-punctuation property definition in CSS2.
Definition at line 1774 of file css_extensions.cpp.
DOMString CSS2Properties::speechRate | ( | ) | const |
See the speech-rate property definition in CSS2.
Definition at line 1785 of file css_extensions.cpp.
DOMString CSS2Properties::stress | ( | ) | const |
DOMString CSS2Properties::tableLayout | ( | ) | const |
See the table-layout property definition in CSS2.
Definition at line 1807 of file css_extensions.cpp.
DOMString CSS2Properties::textAlign | ( | ) | const |
DOMString CSS2Properties::textDecoration | ( | ) | const |
See the text-decoration property definition in CSS2.
Definition at line 1829 of file css_extensions.cpp.
DOMString CSS2Properties::textIndent | ( | ) | const |
See the text-indent property definition in CSS2.
Definition at line 1840 of file css_extensions.cpp.
DOMString CSS2Properties::textShadow | ( | ) | const |
See the text-shadow property definition in CSS2.
Definition at line 1851 of file css_extensions.cpp.
DOMString CSS2Properties::textTransform | ( | ) | const |
See the text-transform property definition in CSS2.
Definition at line 1862 of file css_extensions.cpp.
DOMString CSS2Properties::top | ( | ) | const |
DOMString CSS2Properties::unicodeBidi | ( | ) | const |
See the unicode-bidi property definition in CSS2.
Definition at line 1884 of file css_extensions.cpp.
DOMString CSS2Properties::verticalAlign | ( | ) | const |
See the vertical-align property definition in CSS2.
Definition at line 1895 of file css_extensions.cpp.
DOMString CSS2Properties::visibility | ( | ) | const |
DOMString CSS2Properties::voiceFamily | ( | ) | const |
See the voice-family property definition in CSS2.
Definition at line 1917 of file css_extensions.cpp.
DOMString CSS2Properties::volume | ( | ) | const |
DOMString CSS2Properties::whiteSpace | ( | ) | const |
See the white-space property definition in CSS2.
Definition at line 1939 of file css_extensions.cpp.
DOMString CSS2Properties::widows | ( | ) | const |
DOMString CSS2Properties::width | ( | ) | const |
DOMString CSS2Properties::wordSpacing | ( | ) | const |
See the word-spacing property definition in CSS2.
Definition at line 1972 of file css_extensions.cpp.
DOMString CSS2Properties::zIndex | ( | ) | const |
The documentation for this class was generated from the following files: