LibWeb: Flesh out a chunk of the HTML spec's frame navigation algorithms

This commit is contained in:
Andreas Kling 2022-09-19 17:46:34 +02:00
commit 4ee5dfbe4b
Notes: sideshowbarker 2024-07-17 06:49:58 +09:00
8 changed files with 479 additions and 8 deletions

View file

@ -31,6 +31,8 @@ public:
return m_tasks.take_first();
}
void remove_tasks_matching(Function<bool(HTML::Task const&)>);
private:
HTML::EventLoop& m_event_loop;