summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLQuoteElement.idl
blob: 623f73d3cd6cb9472c7dfa35b18d2359ae3aa4af (plain)
1
2
3
4
5
6
7
8
9
10
11
#import <HTML/HTMLElement.idl>

// https://html.spec.whatwg.org/multipage/grouping-content.html#htmlquoteelement
[Exposed=Window]
interface HTMLQuoteElement : HTMLElement {

    [HTMLConstructor] constructor();

    [CEReactions, Reflect] attribute USVString cite;

};