blob: 2087cb1f6e28d8ae19e3dcd428cc34dec3d8f286 (
plain)
1
2
3
4
5
6
7
8
9
|
#import <HTML/HTMLElement.idl>
// https://html.spec.whatwg.org/multipage/scripting.html#htmlslotelement
[Exposed=Window]
interface HTMLSlotElement : HTMLElement {
[Reflect] attribute DOMString name;
};
|