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

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

package js.web.dom;

import org.teavm.jso.JSBody;

/**
 * A <picture> HTML element. It doesn't implement specific properties or methods.
 */
public interface HTMLPictureElement extends HTMLElement {
    @JSBody(script = "return HTMLPictureElement.prototype")
    static HTMLPictureElement prototype() {
        throw new UnsupportedOperationException("Available only in JavaScript");
    }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy