JS: rename misspelled property name (#466)

It should be setTextContent not getTextContent
This commit is contained in:
norzak 2020-02-03 11:38:36 +00:00 committed by GitHub
parent 45d36eac83
commit 5397d2ec6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -101,7 +101,7 @@ public interface Node extends JSObject {
String getTextContent();
@JSProperty
void getTextContent(String textContent);
void setTextContent(String textContent);
@JSProperty
Document getOwnerDocument();