diff options
author | Andreas Kling <kling@serenityos.org> | 2021-09-19 22:09:51 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-09-19 22:34:44 +0200 |
commit | 68d1f5965a7d80d2374d22bbdacaf07345619d04 (patch) | |
tree | d6558c167a9d956720ddfbee1aa284df60a2c740 /Userland | |
parent | dd29abe4d654d25028c02d2a37835a2f7e738429 (diff) | |
download | serenity-68d1f5965a7d80d2374d22bbdacaf07345619d04.zip |
LibWeb: Add HTML::Task::Source::PostedMessage
This is the task source used by MessagePort.postMessage().
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/EventLoop/Task.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/EventLoop/Task.h b/Userland/Libraries/LibWeb/HTML/EventLoop/Task.h index 493564f05d..76f9ac7704 100644 --- a/Userland/Libraries/LibWeb/HTML/EventLoop/Task.h +++ b/Userland/Libraries/LibWeb/HTML/EventLoop/Task.h @@ -23,6 +23,7 @@ public: Networking, HistoryTraversal, IdleTask, + PostedMessage, }; static NonnullOwnPtr<Task> create(Source source, DOM::Document* document, Function<void()> steps) |