mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-19 16:59:47 +00:00
LibWeb: Add NamedNodeMap::setNamedItemNS() method
This patch adds implementation of the missing `setNamedItemNS()` method.
This commit is contained in:
parent
530d5adc62
commit
45525d4f85
Notes:
sideshowbarker
2024-07-17 03:04:06 +09:00
Author: https://github.com/a-narsudinov
Commit: 45525d4f85
Pull-request: https://github.com/SerenityOS/serenity/pull/16549
3 changed files with 8 additions and 1 deletions
|
@ -38,6 +38,7 @@ public:
|
|||
Attr const* get_named_item(StringView qualified_name) const;
|
||||
Attr const* get_named_item_ns(StringView namespace_, StringView local_name) const;
|
||||
WebIDL::ExceptionOr<Attr const*> set_named_item(Attr& attribute);
|
||||
WebIDL::ExceptionOr<Attr const*> set_named_item_ns(Attr& attribute);
|
||||
WebIDL::ExceptionOr<Attr const*> remove_named_item(StringView qualified_name);
|
||||
WebIDL::ExceptionOr<Attr const*> remove_named_item_ns(StringView namespace_, StringView local_name);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue