Example #1
0
    public void endSelector(SelectorList selectors) throws CSSException {

      // Pop both the style declaration and the style rule nodes
      _nodeStack.pop();
      _root = _nodeStack.pop();
    }
Example #2
0
    public void endFontFace() throws CSSException {

      // Pop both the style declaration and the font face rule nodes
      _nodeStack.pop();
      _root = _nodeStack.pop();
    }
Example #3
0
    public void endMedia(SACMediaList media) throws CSSException {

      // Pop the rule list and media rule nodes
      _nodeStack.pop();
      _root = _nodeStack.pop();
    }
Example #4
0
    public void endPage(String name, String pseudo_page) throws CSSException {

      // Pop both the style declaration and the page rule nodes
      _nodeStack.pop();
      _root = _nodeStack.pop();
    }
Example #5
0
    public void endDocument(InputSource source) throws CSSException {

      // Pop the rule list and style sheet nodes
      _nodeStack.pop();
      _root = _nodeStack.pop();
    }