mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 09:57:35 +00:00
LibWeb: Implement Element.getAttributeNode
This commit is contained in:
parent
469ef22a22
commit
8066a67da2
3 changed files with 12 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
|||
#import <CSS/CSSStyleDeclaration.idl>
|
||||
#import <DOM/Attr.idl>
|
||||
#import <DOM/ChildNode.idl>
|
||||
#import <DOM/DOMTokenList.idl>
|
||||
#import <DOM/InnerHTML.idl>
|
||||
|
@ -38,6 +39,8 @@ interface Element : Node {
|
|||
[SameObject] readonly attribute NamedNodeMap attributes;
|
||||
sequence<DOMString> getAttributeNames();
|
||||
|
||||
Attr? getAttributeNode(DOMString qualifiedName);
|
||||
|
||||
HTMLCollection getElementsByTagName(DOMString tagName);
|
||||
HTMLCollection getElementsByTagNameNS(DOMString? namespace, DOMString localName);
|
||||
HTMLCollection getElementsByClassName(DOMString className);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue