Fix type of HTMLElement.getInnerHTML. Fix https://github.com/konsoletyper/teavm/issues/189

This commit is contained in:
Alexey Andreev 2016-05-12 22:26:54 +03:00
parent 02f414b61a
commit 9942f8b048

View File

@ -110,7 +110,7 @@ public interface HTMLElement extends Element, ElementCSSInlineStyle, EventTarget
HTMLDocument getOwnerDocument();
@JSProperty
int getInnerHTML();
String getInnerHTML();
@JSProperty
void setInnerHTML(String content);