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

LibWeb: Add NamedNodeMap::setNamedItemNS() method

This patch adds implementation of the missing `setNamedItemNS()` method.
This commit is contained in:
Alexander Narsudinov 2022-12-17 17:32:41 +03:00 committed by Andreas Kling
parent 530d5adc62
commit 45525d4f85
3 changed files with 8 additions and 1 deletions

View file

@ -9,7 +9,7 @@ interface NamedNodeMap {
Attr? getNamedItemNS(DOMString? namespace, DOMString localName);
[CEReactions] Attr? setNamedItem(Attr attr);
// [CEReactions] Attr? setNamedItemNS(Attr attr);
[CEReactions] Attr? setNamedItemNS(Attr attr);
[CEReactions] Attr removeNamedItem(DOMString qualifiedName);
[CEReactions] Attr removeNamedItemNS(DOMString? namespace, DOMString localName);