ladybird/Libraries/LibWeb/HTML/HTMLModElement.idl
Glenn Skrzypczak 74645facae LibWeb/HTML: Implement cite attribute according to spec
Implements the cite attribute of `q`, `blockqoute`, `ins` and `del`
elements according to spec by returning a valid URL.
2024-11-26 11:40:42 +00:00

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;
};