#455: added Node.textContent property support

This commit is contained in:
Jörg Hohwiller 2020-01-12 22:26:13 +01:00 committed by Alexey Andreev
parent 2f9e7b0cfb
commit c0d42a9d7a

View File

@ -96,7 +96,13 @@ public interface Node extends JSObject {
String getLocalName();
boolean hasAttributes();
@JSProperty
String getTextContent();
@JSProperty
void getTextContent(String textContent);
@JSProperty
Document getOwnerDocument();