diff options
author | James Graham <james@hoppipolla.co.uk> | 2014-01-02 22:49:03 +0000 |
---|---|---|
committer | James Graham <james@hoppipolla.co.uk> | 2014-01-14 13:10:05 +0000 |
commit | 7aee1cae84704b885988a5985a7604747125ec1e (patch) | |
tree | cf0940ecb5d800e2b95cd1afe7524f1fa93fb811 /src/components/script/dom/bindings/codegen | |
parent | fc76107a92313f6c2dd9c9b9fc6e588093f73c92 (diff) | |
download | servo-7aee1cae84704b885988a5985a7604747125ec1e.tar.gz servo-7aee1cae84704b885988a5985a7604747125ec1e.zip |
Implement innerHTML getter for HTML documents
XML case is not yet implemented.
Diffstat (limited to 'src/components/script/dom/bindings/codegen')
-rw-r--r-- | src/components/script/dom/bindings/codegen/Bindings.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/script/dom/bindings/codegen/Bindings.conf b/src/components/script/dom/bindings/codegen/Bindings.conf index 9db9477850d..12d15d37fe9 100644 --- a/src/components/script/dom/bindings/codegen/Bindings.conf +++ b/src/components/script/dom/bindings/codegen/Bindings.conf @@ -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': { |