Add scrolling properties to HTMLElement

This commit is contained in:
Alexey Andreev 2017-12-03 13:01:22 +03:00
parent 05213f66e7
commit 0419867497

View File

@ -99,9 +99,21 @@ public interface HTMLElement extends Element, ElementCSSInlineStyle, EventTarget
@JSProperty
int getScrollLeft();
@JSProperty
void setScrollLeft(int scrollLeft);
@JSProperty
int getScrollTop();
@JSProperty
void setScrollTop(int scrollTop);
@JSProperty
int getScrollWidth();
@JSProperty
int getScrollHeight();
@JSProperty
@Override
HTMLDocument getOwnerDocument();