1 12 13 package org.w3c.dom.css; 14 15 import org.w3c.dom.DOMException ; 16 import org.w3c.dom.stylesheets.StyleSheet; 17 18 25 public interface CSSStyleSheet extends StyleSheet { 26 36 public CSSRule getOwnerRule(); 37 38 42 public CSSRuleList getCssRules(); 43 44 68 public int insertRule(String rule, 69 int index) 70 throws DOMException ; 71 72 82 public void deleteRule(int index) 83 throws DOMException ; 84 85 } 86 | Popular Tags |