mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 09:46:04 -05:00
74645facae
Implements the cite attribute of `q`, `blockqoute`, `ins` and `del` elements according to spec by returning a valid URL.
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;
|
|
|
|
};
|