@Kroll.method
 public AttrProxy setAttributeNodeNS(AttrProxy newAttr) throws DOMException {
   return getProxy(element.setAttributeNodeNS(newAttr.getAttr()));
 }
 @Kroll.method
 public AttrProxy removeAttributeNode(AttrProxy oldAttr) throws DOMException {
   return getProxy(element.removeAttributeNode(oldAttr.getAttr()));
 }