blob: c6dd8618c716637538e55ec31f9e71d342b99c97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#import <HTML/HTMLElement.idl>
interface HTMLEmbedElement : HTMLElement {
[Reflect] attribute DOMString src;
[Reflect] attribute DOMString type;
[Reflect] attribute DOMString width;
[Reflect] attribute DOMString height;
[Reflect] attribute DOMString align;
[Reflect] attribute DOMString name;
};
|