Home | Trees | Indices | Help |
|
---|
|
object --+ | util.Base --+ | util.Base2 --+ | CSSRule
Abstract base interface for any type of CSS statement. This includes both rule sets and at-rules. An implementation is expected to preserve all rules specified in a CSS style sheet, even if the rule is not recognized by the parser. Unrecognized rules are represented using the CSSUnknownRule interface.
|
|||
|
|||
|
|||
|
|||
|
|||
Inherited from Inherited from Inherited from |
|
|||
Inherited from |
|
|||
COMMENT = -1
|
|||
UNKNOWN_RULE = 0
|
|||
STYLE_RULE = 1 A (readonly) code defining the type of the value as defined above. |
|||
CHARSET_RULE = 2 A (readonly) code defining the type of the value as defined above. |
|||
IMPORT_RULE = 3
|
|||
MEDIA_RULE = 4
|
|||
FONT_FACE_RULE = 5
|
|||
PAGE_RULE = 6
|
|||
NAMESPACE_RULE = 7
|
|||
_typestrings =
|
|||
type = 0 The type of this rule, as defined by a CSSRule type constant. |
|||
Inherited from |
|
|||
cssText (DOM) The parsable textual representation of the rule. |
|||
atkeyword @keyword for @rules |
|||
parentRule READONLY |
|||
parentStyleSheet READONLY |
|||
wellformed READONLY |
|||
typeString Name of this rules type. |
|||
Inherited from Inherited from |
|
|
DOMException on setting
|
|
_typestrings
|
typeThe type of this rule, as defined by a CSSRule type constant. Overwritten in derived classes. The expectation is that binding-specific casting methods can be used to cast down from an instance of the CSSRule interface to the specific derived interface implied by the type. (Casting not for this Python implementation I guess...)
|
|
cssText(DOM) The parsable textual representation of the rule. This reflects the current state of the rule and not its initial value. The initial value is saved, but this may be removed in a future version! MUST BE OVERWRITTEN IN SUBCLASS TO WORK!
|
atkeyword@keyword for @rules
|
parentRuleREADONLY
|
parentStyleSheetREADONLY
|
wellformedREADONLY
|
typeStringName of this rules type.
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Mon Jul 14 22:21:27 2008 | http://epydoc.sourceforge.net |