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

LibWeb: Add NamedNodeMap::removeNamedItemNS() method

This patch adds implementation of the missing `removeNamedItemNS()`
method.
This commit is contained in:
Alexander Narsudinov 2022-12-17 17:08:51 +03:00 committed by Andreas Kling
parent 7679d38c5f
commit 530d5adc62
3 changed files with 33 additions and 1 deletions

View file

@ -12,5 +12,5 @@ interface NamedNodeMap {
// [CEReactions] Attr? setNamedItemNS(Attr attr);
[CEReactions] Attr removeNamedItem(DOMString qualifiedName);
// [CEReactions] Attr removeNamedItemNS(DOMString? namespace, DOMString localName);
[CEReactions] Attr removeNamedItemNS(DOMString? namespace, DOMString localName);
};