Andreas Kling
aa9c478ee9
LibWeb: Don't leak the about-to-be-notified rejected promises list
...
Use GC::HeapVector instead of Vector<GC::Root> to prevent this list from
creating reference cycles and leaking the world.
2025-12-25 20:21:37 +01:00
Gingeh
93e2babc64
LibWeb: Prevent crash when loading module in worker
...
The import map is defined for all global objects, not just the window.
2025-02-28 14:51:20 +01:00
Shannon Booth
ac6fe2e211
LibWeb: Implement multiple import map support
2024-12-10 12:01:45 +00:00
Shannon Booth
05b4676917
LibWeb: Ensure global objects are an event target
...
All global objects current need to be event targets so that they
can have events dispatched to them. This allows for removing of
verify_cast for these global objects.
2024-12-03 00:18:11 +01:00
Shannon Booth
6a668f27c7
LibWeb: Push promise rejection handling onto UniversalGlobalScopeMixin
...
This is needed for shadow realms which don't have a window or worker
global object. Fixes a crash for the attached test.
2024-11-30 11:55:11 +01:00
Shannon Booth
d527c5df5d
LibWeb: Allow using queuing strategies on globals other than Window
...
These interfaces are exposed on *, meaning it should work for workers
and our newly added shadow realm global object by being stored on the
universal global scope mixin.
2024-11-20 18:01:21 -07:00
Timothy Flynn
93712b24bf
Everywhere: Hoist the Libraries folder to the top-level
2024-11-10 12:50:45 +01:00