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