CSSStyleSheet

Module:
css
Inherits from:
stylesheets::StyleSheet
Declared In:

Overview

Use the links in the table of contents to the left to access the documentation.



Functions

addRule
deleteRule
insertRule
removeRule

addRule


long addRule(
    in DOMString selector, 
    in DOMString style, 
    in unsigned long index) raises(DOMException); 


deleteRule


void deleteRule(
    in unsigned long index) raises(DOMException); 


insertRule


unsigned long insertRule(
    in DOMString rule, 
    in unsigned long index) raises(DOMException); 


removeRule


void removeRule(
    in unsigned long index) raises(DOMException); 

Member Data

cssRules
ownerRule
rules

cssRules


readonly attribute CSSRuleList cssRules; 


ownerRule


readonly attribute CSSRule ownerRule; 


rules


readonly attribute CSSRuleList rules; 

 

Last Updated: 2009-05-29