1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:57:35 +00:00

LibWeb: Implement JS confirm()

This commit is contained in:
Nick Tiberi 2020-04-16 21:29:26 -04:00 committed by Andreas Kling
parent 0a483cf677
commit 1f6578ee0a
4 changed files with 20 additions and 0 deletions

View file

@ -51,6 +51,7 @@ private:
static void document_setter(JS::Interpreter&, JS::Value);
static JS::Value alert(JS::Interpreter&);
static JS::Value confirm(JS::Interpreter&);
static JS::Value set_interval(JS::Interpreter&);
static JS::Value set_timeout(JS::Interpreter&);
static JS::Value request_animation_frame(JS::Interpreter&);