blob: fd2962857596346c89e940b15eeed08dc851aa97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#import <HTML/HTMLElement.idl>
// https://html.spec.whatwg.org/multipage/semantics.html#htmldataelement
[Exposed=Window]
interface HTMLDataElement : HTMLElement {
[HTMLConstructor] constructor();
[Reflect] attribute DOMString value;
};
|