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

LibWeb: Implement (most of) NamedNodeMap to store attributes

This commit is contained in:
Timothy Flynn 2021-10-16 15:30:21 -04:00 committed by Linus Groh
parent 454d218716
commit 2a3ac02ef1
6 changed files with 284 additions and 0 deletions

View file

@ -73,6 +73,7 @@ set(SOURCES
DOM/EventTarget.cpp
DOM/HTMLCollection.cpp
DOM/LiveNodeList.cpp
DOM/NamedNodeMap.cpp
DOM/Node.cpp
DOM/ParentNode.cpp
DOM/Position.cpp
@ -383,6 +384,7 @@ libweb_js_wrapper(DOM/Element)
libweb_js_wrapper(DOM/Event)
libweb_js_wrapper(DOM/EventTarget)
libweb_js_wrapper(DOM/HTMLCollection)
libweb_js_wrapper(DOM/NamedNodeMap)
libweb_js_wrapper(DOM/Node)
libweb_js_wrapper(DOM/NodeList)
libweb_js_wrapper(DOM/ProcessingInstruction)