mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 10:48:41 +00:00
12 lines
247 B
Plaintext
12 lines
247 B
Plaintext
#import <HTML/HTMLElement.idl>
|
|
|
|
// https://html.spec.whatwg.org/multipage/scripting.html#htmlslotelement
|
|
[Exposed=Window]
|
|
interface HTMLSlotElement : HTMLElement {
|
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
[Reflect] attribute DOMString name;
|
|
|
|
};
|