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

LibWeb: Add CharacterData and Text IDL interfaces

This commit is contained in:
Andreas Kling 2020-08-03 20:50:45 +02:00
parent 354f9aafd5
commit 73645e11c4
7 changed files with 36 additions and 6 deletions

View file

@ -25,6 +25,7 @@ set(SOURCES
CSS/StyleValue.cpp
DOM/AttributeNames.cpp
DOM/CharacterData.cpp
DOM/CharacterData.idl
DOM/Comment.cpp
DOM/Document.cpp
DOM/DocumentType.cpp
@ -37,6 +38,7 @@ set(SOURCES
DOM/Position.cpp
DOM/TagNames.cpp
DOM/Text.cpp
DOM/Text.idl
DOM/Timer.cpp
DOM/Window.cpp
DOM/XMLHttpRequest.cpp
@ -162,12 +164,14 @@ function(libweb_js_wrapper class)
add_custom_target(generate_${basename}Wrapper.cpp DEPENDS Bindings/${class}Wrapper.cpp)
endfunction()
libweb_js_wrapper(DOM/CharacterData)
libweb_js_wrapper(DOM/Document)
libweb_js_wrapper(DOM/DocumentType)
libweb_js_wrapper(DOM/Element)
libweb_js_wrapper(DOM/Event)
libweb_js_wrapper(DOM/EventTarget)
libweb_js_wrapper(DOM/Node)
libweb_js_wrapper(DOM/Text)
libweb_js_wrapper(HTML/CanvasRenderingContext2D)
libweb_js_wrapper(HTML/HTMLAnchorElement)
libweb_js_wrapper(HTML/HTMLBodyElement)