1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:07:35 +00:00

LibWeb: Add HTML::Task::Source::IdleTask

This represents what the spec calls the "idle-task task source".
This commit is contained in:
Andreas Kling 2021-09-16 23:43:08 +02:00
parent 99b526731e
commit 64df30230d

View file

@ -22,6 +22,7 @@ public:
UserInteraction,
Networking,
HistoryTraversal,
IdleTask,
};
static NonnullOwnPtr<Task> create(Source source, DOM::Document* document, Function<void()> steps)