diff options
author | Andreas Kling <kling@serenityos.org> | 2021-02-10 08:48:28 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-02-10 09:13:30 +0100 |
commit | 1ad65b173b71271bbe91f154478c77e0ee607242 (patch) | |
tree | 53f34b9dd0ea19cddd4df650adde4234a6d6c9ad /Userland/Services/WebContent/WebContentClient.ipc | |
parent | abf7c02acb4761a833726fed33ad88fc0c8177a3 (diff) | |
download | serenity-1ad65b173b71271bbe91f154478c77e0ee607242.zip |
LibWeb+WebContent: Support window.confirm() in OOPWV
Diffstat (limited to 'Userland/Services/WebContent/WebContentClient.ipc')
-rw-r--r-- | Userland/Services/WebContent/WebContentClient.ipc | 1 |
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) } |