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

LibWeb: Add ProcessingInstruction node

Not particuarly useful right now, but is used in
ensure_pre_insertion_validity.

I'm not totally sure on the constructor arguments.
This commit is contained in:
Luke 2021-04-06 17:06:23 +01:00 committed by Andreas Kling
parent c28a3a385b
commit 9e338a2be2
6 changed files with 101 additions and 0 deletions

View file

@ -54,6 +54,7 @@ set(SOURCES
DOM/Node.cpp
DOM/ParentNode.cpp
DOM/Position.cpp
DOM/ProcessingInstruction.cpp
DOM/ShadowRoot.cpp
DOM/Text.cpp
DOM/Text.idl
@ -305,6 +306,7 @@ libweb_js_wrapper(DOM/DOMImplementation)
libweb_js_wrapper(DOM/Element)
libweb_js_wrapper(DOM/Event)
libweb_js_wrapper(DOM/EventTarget)
libweb_js_wrapper(DOM/ProcessingInstruction)
libweb_js_wrapper(DOM/ShadowRoot)
libweb_js_wrapper(DOM/Node)
libweb_js_wrapper(DOM/Range)