mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 05:47:34 +00:00
LibWeb: Add Element.tagName and Element.className
This commit is contained in:
parent
a64033e581
commit
a014b2930e
2 changed files with 6 additions and 0 deletions
|
@ -1,10 +1,13 @@
|
|||
interface Element : Node {
|
||||
|
||||
readonly attribute DOMString tagName;
|
||||
|
||||
DOMString? getAttribute(DOMString qualifiedName);
|
||||
void setAttribute(DOMString qualifiedName, DOMString value);
|
||||
|
||||
attribute DOMString innerHTML;
|
||||
attribute DOMString id;
|
||||
attribute DOMString className;
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue