mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-08 02:26:10 +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
Notes:
sideshowbarker
2024-07-18 17:23:33 +09:00
Author: https://github.com/alimpfard
Commit: a2af04837e
Pull-request: https://github.com/SerenityOS/serenity/pull/7395
Reviewed-by: https://github.com/linusg
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