Implement Element.removeAttribute()/removeAttributeNS().

This commit is contained in:
Tetsuharu OHZEKI 2014-01-03 03:40:05 +09:00
parent 31e2f22d20
commit 7a9ecffaa0
5 changed files with 108 additions and 5 deletions

View file

@ -185,7 +185,7 @@ DOMInterfaces = {
'Element': {
'nativeType': 'AbstractNode',
'pointerType': '',
'needsAbstract': ['getClientRects', 'getBoundingClientRect', 'setAttribute', 'setAttributeNS', 'id', 'attributes']
'needsAbstract': ['getClientRects', 'getBoundingClientRect', 'setAttribute', 'setAttributeNS', 'removeAttribute', 'removeAttributeNS', 'id', 'attributes']
},
'Event': {