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)
13 lines
325 B
Plaintext
13 lines
325 B
Plaintext
#import <HTML/HTMLElement.idl>
|
|
|
|
// https://html.spec.whatwg.org/multipage/edits.html#htmlmodelement
|
|
[Exposed=Window]
|
|
interface HTMLModElement : HTMLElement {
|
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
[CEReactions, Reflect, URL] attribute USVString cite;
|
|
[CEReactions, Reflect=datetime] attribute DOMString dateTime;
|
|
|
|
};
|