mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-14 19:06:55 +02:00
Implements the cite attribute of `q`, `blockqoute`, `ins` and `del` elements according to spec by returning a valid URL. (cherry picked from commit 74645facae366d62ee4c44bd4a96d02df345a5d4)
12 lines
274 B
Plaintext
12 lines
274 B
Plaintext
#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;
|
|
|
|
};
|