mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 17:25:08 +00:00
13 lines
319 B
Text
13 lines
319 B
Text
interface Element : Node {
|
|
|
|
readonly attribute DOMString tagName;
|
|
|
|
DOMString? getAttribute(DOMString qualifiedName);
|
|
void setAttribute(DOMString qualifiedName, DOMString value);
|
|
|
|
attribute DOMString innerHTML;
|
|
[Reflect] attribute DOMString id;
|
|
[Reflect=class] attribute DOMString className;
|
|
|
|
}
|
|
|