mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 17:31:58 -05:00
4fce2cffb2
Implements the cite attribute of `q`, `blockqoute`, `ins` and `del` elements according to spec by returning a valid URL. (cherry picked from commit 74645facae366d62ee4c44bd4a96d02df345a5d4)
11 lines
274 B
Text
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;
|
|
|
|
};
|