mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-11 09:26:28 +02:00
12 lines
256 B
Plaintext
12 lines
256 B
Plaintext
#import <HTML/HTMLElement.idl>
|
|
|
|
// https://html.spec.whatwg.org/multipage/grouping-content.html#htmlquoteelement
|
|
[Exposed=Window]
|
|
interface HTMLQuoteElement : HTMLElement {
|
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
[Reflect] attribute DOMString cite;
|
|
|
|
};
|