ladybird/Userland/Libraries/LibWeb/HTML/HTMLParamElement.idl
2023-03-23 13:37:40 +01:00

15 lines
385 B
Text

#import <HTML/HTMLElement.idl>
// https://html.spec.whatwg.org/multipage/obsolete.html#htmlparamelement
[Exposed=Window]
interface HTMLParamElement : HTMLElement {
[HTMLConstructor] constructor();
[Reflect] attribute DOMString name;
[Reflect] attribute DOMString value;
[Reflect] attribute DOMString type;
[Reflect=valuetype] attribute DOMString valueType;
};