1 12 13 package org.w3c.dom.css; 14 15 import org.w3c.dom.DOMException ; 16 import org.w3c.dom.stylesheets.MediaList; 17 18 25 public interface CSSMediaRule extends CSSRule { 26 29 public MediaList getMedia(); 30 31 34 public CSSRuleList getCssRules(); 35 36 59 public int insertRule(String rule, 60 int index) 61 throws DOMException ; 62 63 73 public void deleteRule(int index) 74 throws DOMException ; 75 76 } 77 | Popular Tags |