}
public void startFontFace() throws CSSException {
// Create the font face rule and add it to the rule list
CSSFontFaceRuleImpl ffr = new CSSFontFaceRuleImpl(
CSSOMParser.this.getParentStyleSheet(),
this.getParentRule());
this.addLocator(ffr);
if (!this._nodeStack.empty()) {
((CSSRuleListImpl)this._nodeStack.peek()).add(ffr);
}
// Create the style declaration
CSSStyleDeclarationImpl decl = new CSSStyleDeclarationImpl(ffr);
ffr.setStyle(decl);
this._nodeStack.push(ffr);
this._nodeStack.push(decl);
}