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.
12 lines
325 B
Text
12 lines
325 B
Text
#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;
|
|
|
|
};
|