summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLEmbedElement.idl
blob: 5eb48b3509cd777dd8bb39033ea19b5d9ed1c645 (plain)
1
2
3
4
5
6
7
8
9
10
11
interface HTMLEmbedElement : HTMLElement {

    [Reflect] attribute DOMString src;
    [Reflect] attribute DOMString type;
    [Reflect] attribute DOMString width;
    [Reflect] attribute DOMString height;

    [Reflect] attribute DOMString align;
    [Reflect] attribute DOMString name;

};