mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-06-18 07:43:37 +00:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
10 lines
285 B
Text
10 lines
285 B
Text
// https://html.spec.whatwg.org/multipage/semantics.html#htmldetailselement
|
|
[Exposed=Window]
|
|
interface HTMLDetailsElement : HTMLElement {
|
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
[CEReactions, Reflect] attribute DOMString name;
|
|
[CEReactions, Reflect] attribute boolean open;
|
|
|
|
};
|