LibWeb: Implement JS confirm()

This commit is contained in:
Nick Tiberi 2020-04-16 21:29:26 -04:00 committed by Andreas Kling
commit 1f6578ee0a
Notes: sideshowbarker 2024-07-19 07:32:14 +09:00
4 changed files with 20 additions and 0 deletions

View file

@ -43,6 +43,7 @@ public:
Document& document() { return m_document; }
void alert(const String&);
bool confirm(const String&);
i32 request_animation_frame(JS::Function&);
void cancel_animation_frame(i32);
void set_interval(JS::Function&, i32);