DOM::CSSStyleSheet Class Reference
The CSSStyleSheet
interface is a concrete interface used to represent a CSS style sheet i.e.
More...
#include <css_stylesheet.h>
Inheritance diagram for DOM::CSSStyleSheet:

Public Member Functions | |
CSSStyleSheet (const CSSStyleSheet &other) | |
CSSStyleSheet (const StyleSheet &other) | |
CSSStyleSheet (CSSStyleSheetImpl *impl) | |
CSSStyleSheet & | operator= (const CSSStyleSheet &other) |
CSSStyleSheet & | operator= (const StyleSheet &other) |
CSSRule | ownerRule () const |
If this style sheet comes from an rule, the ownerRule attribute will contain the CSSImportRule . | |
CSSRuleList | cssRules () const |
The list of all CSS rules contained within the style sheet. | |
unsigned long | insertRule (const DOM::DOMString &rule, unsigned long index) |
Used to insert a new rule into the style sheet. | |
void | deleteRule (unsigned long index) |
Used to delete a rule from the style sheet. |
Detailed Description
The CSSStyleSheet
interface is a concrete interface used to represent a CSS style sheet i.e.
a style sheet whose content type is "text/css".
Definition at line 207 of file css_stylesheet.h.
Member Function Documentation
|
If this style sheet comes from an
In that case, the Definition at line 173 of file css_stylesheet.cpp. |
|
The list of all CSS rules contained within the style sheet. This includes both rule sets and at-rules . Definition at line 179 of file css_stylesheet.cpp. |
|
Used to insert a new rule into the style sheet. The new rule now becomes part of the cascade.
NO_MODIFICATION_ALLOWED_ERR: Raised if this style sheet is readonly.
Definition at line 185 of file css_stylesheet.cpp. |
|
Used to delete a rule from the style sheet.
Definition at line 197 of file css_stylesheet.cpp. |
The documentation for this class was generated from the following files: