LibWeb: Implement Window.prompt()

This commit is contained in:
Linus Groh 2021-02-20 12:05:18 +01:00 committed by Andreas Kling
commit 5e07c27e25
Notes: sideshowbarker 2024-07-18 22:07:15 +09:00
14 changed files with 74 additions and 2 deletions

View file

@ -16,4 +16,5 @@ endpoint WebContentClient = 90
DidRequestLinkContextMenu(Gfx::IntPoint content_position, URL url, String target, unsigned modifiers) =|
DidRequestAlert(String message) => ()
DidRequestConfirm(String message) => (bool result)
DidRequestPrompt(String message, String default_) => (String response)
}