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

LibWeb: Implement ModuleMap and expose it on EnvironmentSettingsObject

This patch adds the ModuleMap class used to keep track of the type and
url of a module as well as the fetching state associated. Each
environment settings object now also has a module map.
This commit is contained in:
networkException 2022-10-03 20:58:36 +02:00 committed by Andreas Kling
parent 83554526f0
commit 992311c0ee
5 changed files with 143 additions and 1 deletions

View file

@ -258,6 +258,7 @@ set(SOURCES
HTML/Scripting/ClassicScript.cpp
HTML/Scripting/Environments.cpp
HTML/Scripting/ExceptionReporter.cpp
HTML/Scripting/ModuleMap.cpp
HTML/Scripting/Script.cpp
HTML/Scripting/WindowEnvironmentSettingsObject.cpp
HTML/Storage.cpp