add HTMLElement.innerText

This commit is contained in:
kris-scheibe 2020-02-24 10:27:47 +01:00 committed by Alexey Andreev
parent 0e7c1e5ef9
commit 9daba6e5a6

View File

@ -136,6 +136,12 @@ public interface HTMLElement extends Element, ElementCSSInlineStyle, EventTarget
@JSProperty
void setInnerHTML(String content);
@JSProperty
String getInnerText();
@JSProperty
void setInnerText(String content);
TextRectangle getBoundingClientRect();
@JSProperty