mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-05 06:32:26 +02:00
Also mark USVString attributes as containing a URL, where applicable. (cherry picked from commit 1369fc5069598644842defabbfbf3d30d2f3e647)
22 lines
898 B
Plaintext
22 lines
898 B
Plaintext
#import <HTML/HTMLElement.idl>
|
|
|
|
// https://html.spec.whatwg.org/multipage/semantics.html#htmlframeelement
|
|
[Exposed=Window]
|
|
interface HTMLFrameElement : HTMLElement {
|
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
[CEReactions, Reflect] attribute DOMString name;
|
|
[CEReactions, Reflect] attribute DOMString scrolling;
|
|
[CEReactions, Reflect, URL] attribute USVString src;
|
|
[CEReactions, Reflect=frameborder] attribute DOMString frameBorder;
|
|
[CEReactions, Reflect=longdesc, URL] attribute USVString longDesc;
|
|
[CEReactions, Reflect=noresize] attribute boolean noResize;
|
|
[FIXME] readonly attribute Document? contentDocument;
|
|
[FIXME] readonly attribute WindowProxy? contentWindow;
|
|
|
|
[CEReactions, LegacyNullToEmptyString, Reflect=marginheight] attribute DOMString marginHeight;
|
|
[CEReactions, LegacyNullToEmptyString, Reflect=marginwidth] attribute DOMString marginWidth;
|
|
|
|
};
|