mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-22 16:14:10 -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
|
@JSProperty
|
||||||
int getScrollLeft();
|
int getScrollLeft();
|
||||||
|
|
||||||
|
@JSProperty
|
||||||
|
void setScrollLeft(int scrollLeft);
|
||||||
|
|
||||||
@JSProperty
|
@JSProperty
|
||||||
int getScrollTop();
|
int getScrollTop();
|
||||||
|
|
||||||
|
@JSProperty
|
||||||
|
void setScrollTop(int scrollTop);
|
||||||
|
|
||||||
|
@JSProperty
|
||||||
|
int getScrollWidth();
|
||||||
|
|
||||||
|
@JSProperty
|
||||||
|
int getScrollHeight();
|
||||||
|
|
||||||
@JSProperty
|
@JSProperty
|
||||||
@Override
|
@Override
|
||||||
HTMLDocument getOwnerDocument();
|
HTMLDocument getOwnerDocument();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user