summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-09-19 22:09:51 +0200
committerAndreas Kling <kling@serenityos.org>2021-09-19 22:34:44 +0200
commit68d1f5965a7d80d2374d22bbdacaf07345619d04 (patch)
treed6558c167a9d956720ddfbee1aa284df60a2c740 /Userland
parentdd29abe4d654d25028c02d2a37835a2f7e738429 (diff)
downloadserenity-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.h1
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)