Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-09-06 | LibWeb: Use cached_web_prototype() as much as possible | Andreas Kling | |
Unlike ensure_web_prototype<T>(), the cached version doesn't require the prototype type to be fully formed, so we can use it without including the FooPrototype.h header. It's also a bit less verbose. :^) | |||
2022-09-06 | LibWeb+LibJS: Make the EventTarget hierarchy (incl. DOM) GC-allocated | Andreas Kling | |
This is a monster patch that turns all EventTargets into GC-allocated PlatformObjects. Their C++ wrapper classes are removed, and the LibJS garbage collector is now responsible for their lifetimes. There's a fair amount of hacks and band-aids in this patch, and we'll have a lot of cleanup to do after this. | |||
2022-09-06 | LibWeb: Make DOM::Event and all its subclasses GC-allocated | Andreas Kling | |