mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 01:07:36 +00:00
LibWeb: Implement a very basic WebAssembly JS API
This impl is *extremely* simple, and is missing a lot of things, it's also not particularly spec-compliant in some places, but it's definitely a start :^)
This commit is contained in:
parent
bdd7741ae1
commit
a2af04837e
5 changed files with 450 additions and 1 deletions
|
@ -221,6 +221,7 @@ set(SOURCES
|
|||
UIEvents/EventNames.cpp
|
||||
UIEvents/MouseEvent.cpp
|
||||
URLEncoder.cpp
|
||||
WebAssembly/WebAssemblyObject.cpp
|
||||
WebContentClient.cpp
|
||||
XHR/EventNames.cpp
|
||||
XHR/XMLHttpRequest.cpp
|
||||
|
@ -466,6 +467,6 @@ add_custom_command(
|
|||
)
|
||||
|
||||
serenity_lib(LibWeb web)
|
||||
target_link_libraries(LibWeb LibCore LibJS LibMarkdown LibGemini LibGUI LibGfx LibTextCodec LibProtocol LibImageDecoderClient)
|
||||
target_link_libraries(LibWeb LibCore LibJS LibMarkdown LibGemini LibGUI LibGfx LibTextCodec LibProtocol LibImageDecoderClient LibWasm)
|
||||
|
||||
add_subdirectory(DumpLayoutTree)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue