mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-10 03:26:10 +00:00
LibWeb: Implement Element.getAttributeNodeNS
This commit is contained in:
parent
a7316d3641
commit
7a26a889cb
Notes:
sideshowbarker
2024-07-16 18:06:41 +09:00
Author: https://github.com/shannonbooth
Commit: 7a26a889cb
Pull-request: https://github.com/SerenityOS/serenity/pull/22748
Reviewed-by: https://github.com/ADKaster ✅
5 changed files with 37 additions and 1 deletions
|
@ -43,7 +43,8 @@ interface Element : Node {
|
|||
[SameObject] readonly attribute NamedNodeMap attributes;
|
||||
sequence<DOMString> getAttributeNames();
|
||||
|
||||
Attr? getAttributeNode(DOMString qualifiedName);
|
||||
Attr? getAttributeNode([FlyString] DOMString qualifiedName);
|
||||
Attr? getAttributeNodeNS([FlyString] DOMString? namespace, [FlyString] DOMString localName);
|
||||
|
||||
HTMLCollection getElementsByTagName(DOMString tagName);
|
||||
HTMLCollection getElementsByTagNameNS(DOMString? namespace, DOMString localName);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue