All Downloads are FREE. Search and download functionalities are using the official Maven repository.

js.web.dom.HTMLOrSVGElement Maven / Gradle / Ivy

package js.web.dom;

import js.lang.Any;
import org.teavm.jso.JSProperty;

import javax.annotation.Nullable;


public interface HTMLOrSVGElement extends Any {
    @JSProperty
    DOMStringMap getDataset();

    @JSProperty
    @Nullable
    String getNonce();

    @JSProperty
    void setNonce(String nonce);

    @JSProperty
    double getTabIndex();

    @JSProperty
    void setTabIndex(double tabIndex);

    void blur();

    void focus(FocusOptions options);

    void focus();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy