Implement innerHTML getter for HTML documents

XML case is not yet implemented.
This commit is contained in:
James Graham 2014-01-02 22:49:03 +00:00
parent fc76107a92
commit 7aee1cae84
5 changed files with 239 additions and 9 deletions

View file

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