コード例 #1
0
 @Kroll.method
 public AttrProxy setAttributeNodeNS(AttrProxy newAttr) throws DOMException {
   return getProxy(element.setAttributeNodeNS(newAttr.getAttr()));
 }
コード例 #2
0
 @Kroll.method
 public AttrProxy removeAttributeNode(AttrProxy oldAttr) throws DOMException {
   return getProxy(element.removeAttributeNode(oldAttr.getAttr()));
 }