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)
18 lines
608 B
Plaintext
18 lines
608 B
Plaintext
#import <HTML/HTMLElement.idl>
|
|
|
|
// https://html.spec.whatwg.org/multipage/embedded-content.html#htmlsourceelement
|
|
[Exposed=Window]
|
|
interface HTMLSourceElement : HTMLElement {
|
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
[CEReactions, Reflect, URL] attribute USVString src;
|
|
[CEReactions, Reflect] attribute DOMString type;
|
|
[CEReactions, Reflect] attribute USVString srcset;
|
|
[CEReactions, Reflect] attribute DOMString sizes;
|
|
[CEReactions, Reflect] attribute DOMString media;
|
|
[CEReactions, Reflect] attribute unsigned long width;
|
|
[CEReactions, Reflect] attribute unsigned long height;
|
|
|
|
};
|