serenity/Userland/Libraries/LibWeb/HTML/HTMLQuoteElement.idl
Glenn Skrzypczak 4fce2cffb2 LibWeb/HTML: Implement cite attribute according to spec
Implements the cite attribute of `q`, `blockqoute`, `ins` and `del`
elements according to spec by returning a valid URL.

(cherry picked from commit 74645facae366d62ee4c44bd4a96d02df345a5d4)
2024-11-26 22:37:15 -05:00

11 lines
274 B
Text

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