mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-28 07:18:51 +00:00
11 lines
247 B
Text
11 lines
247 B
Text
#import <HTML/HTMLElement.idl>
|
|
|
|
// https://html.spec.whatwg.org/multipage/scripting.html#htmlslotelement
|
|
[Exposed=Window]
|
|
interface HTMLSlotElement : HTMLElement {
|
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
[Reflect] attribute DOMString name;
|
|
|
|
};
|