1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 22:27:35 +00:00

LibWeb: Implement Element.getAttributeNames

This commit is contained in:
Luke Wilde 2021-12-29 13:02:21 +00:00 committed by Andreas Kling
parent 6b39c6b1bf
commit 4427386d5f
3 changed files with 14 additions and 0 deletions

View file

@ -10,6 +10,7 @@ interface Element : Node {
boolean hasAttribute(DOMString qualifiedName);
boolean hasAttributes();
[SameObject] readonly attribute NamedNodeMap attributes;
sequence<DOMString> getAttributeNames();
HTMLCollection getElementsByTagName(DOMString tagName);
HTMLCollection getElementsByTagNameNS(DOMString? namespace, DOMString localName);