mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-22 08:14:09 -08:00
JS: added two missing functions to interop interfaces (#645)
This commit is contained in:
parent
87d63168d2
commit
f77cb9d52c
|
@ -64,6 +64,8 @@ public interface HTMLDocument extends Document, EventTarget {
|
|||
@JSProperty
|
||||
HTMLElement getActiveElement();
|
||||
|
||||
HTMLElement elementFromPoint(int x, int y);
|
||||
|
||||
@JSProperty
|
||||
boolean isDesignMode();
|
||||
|
||||
|
|
|
@ -131,6 +131,9 @@ public interface HTMLElement extends Element, ElementCSSInlineStyle, EventTarget
|
|||
@Override
|
||||
HTMLDocument getOwnerDocument();
|
||||
|
||||
@JSProperty
|
||||
HTMLCollection getChildren();
|
||||
|
||||
@JSProperty
|
||||
String getInnerHTML();
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user