Implement Element.innerHTML setter

This commit is contained in:
Chris Paris 2015-02-10 02:27:20 -10:00
parent a521755607
commit 99286e4b4f
9 changed files with 109 additions and 67 deletions

View file

@ -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;
};