diff options
author | Chris Paris <cap@chrisparis.org> | 2015-02-10 02:27:20 -1000 |
---|---|---|
committer | Chris Paris <cap@chrisparis.org> | 2015-03-18 11:20:47 -1000 |
commit | 99286e4b4fe267d123fbdd5484612840300ab30e (patch) | |
tree | 1bd121c8d8f32e13e47fbd5ba5d324c577a07b4d /components/script/dom/webidls | |
parent | a5217556072390131f41a7a4cd07e8eb5a671d06 (diff) | |
download | servo-99286e4b4fe267d123fbdd5484612840300ab30e.tar.gz servo-99286e4b4fe267d123fbdd5484612840300ab30e.zip |
Implement Element.innerHTML setter
Diffstat (limited to 'components/script/dom/webidls')
-rw-r--r-- | components/script/dom/webidls/Element.webidl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/webidls/Element.webidl b/components/script/dom/webidls/Element.webidl index 820d8b5b4f2..245df78e812 100644 --- a/components/script/dom/webidls/Element.webidl +++ b/components/script/dom/webidls/Element.webidl @@ -64,7 +64,7 @@ partial interface Element { // http://domparsing.spec.whatwg.org/#extensions-to-the-element-interface partial interface Element { [Throws,TreatNullAs=EmptyString] - readonly attribute DOMString innerHTML; + attribute DOMString innerHTML; [Throws,TreatNullAs=EmptyString] readonly attribute DOMString outerHTML; }; |