mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-01 03:47:48 +02:00
10 lines
217 B
Plaintext
10 lines
217 B
Plaintext
#import <HTML/HTMLElement.idl>
|
|
|
|
// https://html.spec.whatwg.org/multipage/text-level-semantics.html#htmlspanelement
|
|
[Exposed=Window]
|
|
interface HTMLSpanElement : HTMLElement {
|
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
};
|