mirror of
https://github.com/konsoletyper/teavm.git
synced 2025-02-17 11:19:48 +08:00
Add scrolling properties to HTMLElement
This commit is contained in:
parent
05213f66e7
commit
0419867497
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user