mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-22 08:14:09 -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