ladybird/Userland/Libraries/LibWeb/HTML/HTMLQuoteElement.idl

12 lines
292 B
Text
Raw Normal View History

#import <HTML/HTMLElement.idl>
// https://html.spec.whatwg.org/multipage/grouping-content.html#htmlquoteelement
[Exposed=Window, UseDeprecatedAKString]
interface HTMLQuoteElement : HTMLElement {
[HTMLConstructor] constructor();
[CEReactions, Reflect] attribute USVString cite;
};