elemental2.dom.HTMLScriptElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elemental2-dom Show documentation
Show all versions of elemental2-dom Show documentation
Thin Java abstractions for the native Browser APIs.
package elemental2.dom;
import jsinterop.annotations.JsFunction;
import jsinterop.annotations.JsPackage;
import jsinterop.annotations.JsType;
@JsType(isNative = true, namespace = JsPackage.GLOBAL)
public class HTMLScriptElement extends HTMLElement {
@JsFunction
public interface OnreadystatechangeFn {
Object onInvoke(Event event);
}
public boolean async;
public String charset;
public boolean defer;
public String event;
public String htmlFor;
public HTMLScriptElement.OnreadystatechangeFn onreadystatechange;
public String src;
public String text;
public String type;
}