Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-09-07 | LibWeb+WebContent: Add abstraction layer for event loop and timers | Andreas Kling | |
Instead of using Core::EventLoop and Core::Timer directly, LibWeb now goes through a Web::Platform abstraction layer instead. This will allow us to plug in Qt's event loop (and QTimer) over in Ladybird, to avoid having to deal with multiple event loops. | |||
2022-09-06 | LibWeb: Make HTML::Timer GC-allocated | Andreas Kling | |
These are the timers used internally by setTimeout() and setInterval(). | |||
2022-03-08 | LibWeb: Move Timer from DOM directory & namespace to HTML | Linus Groh | |
Timers are part of the HTML spec. :^) https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#timers |