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

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

package js.web.dom;

import org.teavm.jso.JSBody;

/**
 * A <span> element and derives from the HTMLElement interface, but without implementing any additional properties or methods.
 */
public interface HTMLSpanElement extends HTMLElement {
    @JSBody(script = "return HTMLSpanElement.prototype")
    static HTMLSpanElement prototype() {
        throw new UnsupportedOperationException("Available only in JavaScript");
    }

    @JSBody(script = "return new HTMLSpanElement()")
    static HTMLSpanElement create() {
        throw new UnsupportedOperationException("Available only in JavaScript");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy