summaryrefslogtreecommitdiff
path: root/Userland/Services/WebContent/PageHost.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Services/WebContent/PageHost.cpp')
-rw-r--r--Userland/Services/WebContent/PageHost.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/Userland/Services/WebContent/PageHost.cpp b/Userland/Services/WebContent/PageHost.cpp
index b28f98323a..1818313d29 100644
--- a/Userland/Services/WebContent/PageHost.cpp
+++ b/Userland/Services/WebContent/PageHost.cpp
@@ -113,6 +113,11 @@ void PageHost::page_did_change_selection()
m_client.post_message(Messages::WebContentClient::DidChangeSelection());
}
+void PageHost::page_did_request_cursor_change(Gfx::StandardCursor cursor)
+{
+ m_client.post_message(Messages::WebContentClient::DidRequestCursorChange((u32)cursor));
+}
+
void PageHost::page_did_layout()
{
auto* layout_root = this->layout_root();