summaryrefslogtreecommitdiff
path: root/Userland/Services/WebContent/WebContentClient.ipc
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-02-10 08:48:28 +0100
committerAndreas Kling <kling@serenityos.org>2021-02-10 09:13:30 +0100
commit1ad65b173b71271bbe91f154478c77e0ee607242 (patch)
tree53f34b9dd0ea19cddd4df650adde4234a6d6c9ad /Userland/Services/WebContent/WebContentClient.ipc
parentabf7c02acb4761a833726fed33ad88fc0c8177a3 (diff)
downloadserenity-1ad65b173b71271bbe91f154478c77e0ee607242.zip
LibWeb+WebContent: Support window.confirm() in OOPWV
Diffstat (limited to 'Userland/Services/WebContent/WebContentClient.ipc')
-rw-r--r--Userland/Services/WebContent/WebContentClient.ipc1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Services/WebContent/WebContentClient.ipc b/Userland/Services/WebContent/WebContentClient.ipc
index 2e2f63d831..0eb5886a9c 100644
--- a/Userland/Services/WebContent/WebContentClient.ipc
+++ b/Userland/Services/WebContent/WebContentClient.ipc
@@ -15,4 +15,5 @@ endpoint WebContentClient = 90
DidRequestContextMenu(Gfx::IntPoint content_position) =|
DidRequestLinkContextMenu(Gfx::IntPoint content_position, URL url, String target, unsigned modifiers) =|
DidRequestAlert(String message) => ()
+ DidRequestConfirm(String message) => (bool result)
}