1
Fork 0
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:
Andreas Kling 2020-06-21 12:01:13 +02:00
parent a64033e581
commit a014b2930e
2 changed files with 6 additions and 0 deletions

View file

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